diff --git a/.envdev b/.envdev index 5a797c3..adc3420 100644 --- a/.envdev +++ b/.envdev @@ -28,77 +28,46 @@ PREFIX="!" # Discord Server ID # Replace them with your own on a sandbox server! -SANCTUM_ID="454425466821017611" +SANCTUM_ID="505291035992260635" # Discord setup (Configred based on the server) -ADMIN_ROLE="Overseer" +ADMIN_ROLE="admin" # Role IDs (A = Obsidian, B = Genesis, C = Hand) # Replace them with your own on a sandbox server! -GROUP_A_ROLE="470656524042371072" -GROUP_B_ROLE="470668082441093121" -GROUP_C_ROLE="470656609295794199" +GROUP_A_ROLE="505293503840911360" +GROUP_B_ROLE="505293640948645888" +GROUP_C_ROLE="505293691678752768" GROUP_A_NAME="Obsidian Technologies" GROUP_B_NAME="Genesis Command" GROUP_C_NAME="The Hand" -GROUP_A_CHANNEL_ID="493972208616603658" -GROUP_B_CHANNEL_ID="493972336190685185" -GROUP_C_CHANNEL_ID="493972354137849856" +GROUP_A_CHANNEL_ID="505292122732101633" +GROUP_B_CHANNEL_ID="505292233441017866" +GROUP_C_CHANNEL_ID="505292318006575115" -GROUP_A_LEADER_NAME="Kamala, Obsidian Vice President" -GROUP_B_LEADER_NAME="Captain Montgomery" -GROUP_C_LEADER_NAME="Dairo, High Prophet of The Hand" +GROUP_A_LEADER_NAME="V.P. Kamala" +GROUP_B_LEADER_NAME="Cpt. Montgomery" +GROUP_C_LEADER_NAME="Prophet Dairo" # Channel IDs # Replace them with your own on a sandbox server! -OUTSKIRTS_CHANNEL_ID="462382076927148054" -TAVERN_CHANNEL_ID="462684096024543242" -GATE_CHANNEL_ID="459196623923445779" -STASIS_CHANNEL_ID="468984551113228318" -CRYSTAL_SHORES_CHANNEL_ID="482629581690372099" -SEA_OF_FOG_CHANNEL_ID="464150321699225634" -DEADLANDS_CHANNEL_ID="459196395119837195" -HELLS_GATE_CHANNEL_ID="464238060243124245" -TEST_CHANNEL_ID="464838060262293514" - -# Bot IDs -# Replace them with your own on a sandbox server! -MORI_ID="461294299515191306" -RAVAGER_ID="458036985353732097" -MOSIAH_ID="457713779078332416" -GRAZE_ID="460640089198821377" -SONYA_ID="458078969653100554" -REY_ID="462675530928357376" -ALEXIS_ID="462708244171718656" -MONTGOMERY_GENESIS_ID="482642611023249409" -KAMALA_OBSIDIAN_ID="482644250354384906" -DAIRO_HAND_ID="482644985318211594" -LIBRARIAN_ID="458033243481047082" - -# Bot Names -# Replace them with your own on a sandbox server! -GHOST_NAME="Ghost 5.0.1" +LIBRARY_CHANNEL_ID="505500289089142812" +OUTSKIRTS_CHANNEL_ID="505292883394560000" +TAVERN_CHANNEL_ID="505292836963352576" +GATE_CHANNEL_ID="505291599647866890" +STASIS_CHANNEL_ID="" +CRYSTAL_SHORES_CHANNEL_ID="505292474412171274" +SEA_OF_FOG_CHANNEL_ID="505292540434579466" +DEADLANDS_CHANNEL_ID="505292597045231618" # Bot Tokens ADAM_TOKEN="" -RAVAGER_TOKEN="" -WOLF_TOKEN="" -CROW_TOKEN="" -MOSIAH_TOKEN="" -REY_TOKEN="" -ALEXIS_TOKEN="" -GRAZE_TOKEN="" -MORI_TOKEN="" -LIBRARIAN_TOKEN="" -DRAVEN_MAW_TOKEN="" -SONYA_TOKEN="" -MONTGOMERY_GENESIS_TOKEN="" KAMALA_OBSIDIAN_TOKEN="" +MONTGOMERY_GENESIS_TOKEN="" DAIRO_HAND_TOKEN="" -GHOST_TOKEN="" -DEVELOPER_TOKEN="" +LIBRARIAN_TOKEN="" # Channel access roles (must match roles in your server) # Replace them with your own on a sandbox server! @@ -111,5 +80,5 @@ RANK_2_THRESHOLD=15 RANK_3_THRESHOLD=30 # Server -SERVER_ADDRESS="http://skullboxstudios.com" +SERVER_ADDRESS="http://127.0.0.1" SERVER_PASS_KEY="" diff --git a/ADAM_Ghost/adam-ghost.js b/ADAM_Ghost/adam-ghost.js deleted file mode 100644 index e69de29..0000000 diff --git a/ADAM_Ghost/npcSettings.js b/ADAM_Ghost/npcSettings.js deleted file mode 100644 index 87e60c9..0000000 --- a/ADAM_Ghost/npcSettings.js +++ /dev/null @@ -1,6 +0,0 @@ -require('dotenv').config({path: '../.env'}); - -module.exports = { - token: process.env.GHOST_TOKEN, - botChannel: "" -} diff --git a/ADAM_Ghost/package.json b/ADAM_Ghost/package.json deleted file mode 100644 index 11eb464..0000000 --- a/ADAM_Ghost/package.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "nodejs-elasticbeanstalk", - "version": "1.0.0", - "description": "", - "main": "server.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "node server.js" - }, - "author": "", - "license": "ISC", - "dependencies": { - "discord.js": "^11.4.2", - "dotenv": "^6.0.0", - "node-cron": "^1.2.1" - } -} diff --git a/Alexis/alexis.js b/Alexis/alexis.js deleted file mode 100644 index 3ae1a44..0000000 --- a/Alexis/alexis.js +++ /dev/null @@ -1,717 +0,0 @@ -// .env Variables -require('dotenv').config({path: '../.env'}); - -// Node Modules -const Discord = require('discord.js'); -const client = new Discord.Client(); - -// Bot Modules (stores http requests & random functions respectively) -const dataRequest = require('../modules/dataRequest'); -const calcRandom = require('../modules/calcRandom'); - -// Drinks -const drinks = [ - // https://brookstonbeerbulletin.com/beer-tasting-terms/ - ['🍺', 'Beer', 'The clean, classic Traveler\'s Watch drink.', '2'], - ['πŸ₯›', 'Milk', 'An innocent, creamy drink. It is very nutritious.', '2'], - // http://scotchtasting.info/glossary/ - ['πŸ₯ƒ', 'Whiskey', 'A very dignified, rich drink.', '5'], - // https://en.wikipedia.org/wiki/Wine_tasting_descriptors - ['🍷', 'Wine', 'An aromatic wine, with a round taste.', '10'], - // http://richardgpeterson.com/champagne-glossary/ - ['🍾', 'Champagne', 'A brilliant, crisp drink. You can share your πŸ₯‚ drink with the tavern!', '20'] -] - -const normalActivity = '!buydrink | Bartender, Confidant' - -// The ready event is vital, it means that your bot will only start reacting to information -// from Discord _after_ ready is emitted -client.on('ready', async () => { - // Generates invite link - try { - let link = await client.generateInvite(["ADMINISTRATOR"]); - console.log("Invite Link: " + link); - } catch(e) { - console.log(e.stack); - } - - // You can set status to 'online', 'invisible', 'away', or 'dnd' (do not disturb) - client.user.setStatus('online'); - // Sets your "Playing" - client.user.setActivity(normalActivity); - console.log(`Connected! \ - \nLogged in as: ${client.user.username} - (${client.user.id})`); -}); - -// Create an event listener for messages -client.on('message', async message => { - // Message has to be in Tavern or Test - if (!(message.channel.id === process.env.TAVERN_CHANNEL_ID - || message.channel.id === process.env.TEST_CHANNEL_ID)) return; - - var sentMessageFlag = false; - - // Ignores ALL bot messages with exceptions - if (message.author.bot) { - // If bot is Mori - if (message.author.id === "461294299515191306") { - if (calcRandom.gamble(33)) { - var dialogOptions = [ - 'Aww, do you have to rez \'em all?', - 'I feel like you should skip some of \'em.', - 'We don\'t say it enough, but we all appreciate what you do, honey.', - 'I\'m sure everyone is thankful, they\'re just occupied.', - 'Hey now, yer not gonna\' get no thanks with an attitude like that.', - 'Are ya\' really in this for the glory though?', - 'Thanks, hun.', - 'You are very much appreciated.', - 'I\'m sure it\'s not on purpose.', - 'Travelers got a lot on their minds. But you\'re very needed, Sugar.' - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - - message.channel.startTyping(); - setTimeout(() => { - sendMessage(message.channel.id, "<@" + message.author.id + "> " + dialogOptions[randomNumber]); - message.channel.stopTyping(true); - }, calcRandom.random(2500, 6000)); - sentMessageFlag = true; - } - } - return; - } - - var wholeMessage = message.content.toLowerCase().replace(/[.,\/#!$%\^&\*;:{}=\-_`~()]/g,""); - var words = wholeMessage.split(" "); - console.log("wholeMessage: " + wholeMessage + "\nWords: " + words) - // Hearts message with "alexis" and not "date" - if (words.includes("alexis") && !words.includes("date") && sentMessageFlag === false) { - if (calcRandom.gamble(33)) { - setTimeout(function() { - message.react("❀") - }, calcRandom.random(1500,4000)); - sentMessageFlag = true; - return; - } - } - - // Hey message - if (words.includes("hey") && sentMessageFlag === false) { - sayHey(message.channel, message.author.id); - sentMessageFlag = true; - return; - } - - // Saying Alexis is your friend basically - if (words.includes("alexis") && words.includes("friend") && !words.includes("date") && sentMessageFlag === false) { - if (calcRandom.gamble(45)) { - var dialogOptions = [ - '<@276538857174990858> is my girl.', - '<@462675530928357376>\'s been out a long while, but when she gets back I hope she stops by.', - 'Me \'n <@462675530928357376> are pretty close.', - 'Well I can tell ya\' who\'s not my friend. <@461294299515191306>. No offense hun.', - 'That <@163770616581718017> character is mighty strange. But <@276538857174990858> fancies him so he must be alright.', - 'You don\'t tip enough to call me a friend sweetie.', - 'Listen here. I\'d love to chat but <@276538857174990858> \'n <@462675530928357376> have plans in a bit.', - 'We\'re all friends when we drink together.', - 'Ol\' Jakey never came back. Nice guy. Probably made a nice meal for a Ravager.', - 'There\'s friends, and then there\'s family. Me \'n <@276538857174990858> are like that.' - ]; - typeRandomDialog(dialogOptions, message.channel); - sentMessageFlag = true; - return; - } - } - - // Asking Alexis on a date - if (words.includes("alexis") && words.includes("date") && sentMessageFlag === false) { - if (calcRandom.gamble(33)) { - var dialogOptions = [ - 'Honey yer a darling, but not gonna happen.', - 'Just because yer cute doesn\'t mean you get an auto-yes.', - ':thumbsdown:', - 'Hey now, what makes you think I\'m even available?', - 'Calm yer britches and go ask Rey. She\'s into ones like you.', - 'Nah, but thank you honey. It was sweet of ya\'', - 'Listen here. I\'d love to chat but I\'d be lyin\' if I said I was interested.', - 'Sweetie I try to be nice, but sometimes there\'s no nice way to say ***no***.', - 'Yer gonna have to try harder than that now.', - 'How about I give you a big fat maybe?' - ]; - typeRandomDialog(dialogOptions, message.channel, message.author.id); - sentMessageFlag = true; - return; - } - } - - // Ravager topic - if (words.includes("ravager") || words.includes("ravagers") && sentMessageFlag === false) { - if (calcRandom.gamble(33)) { - var dialogOptions = [ - 'never seen one in person.', - 'Are they really big and scary? Only seen pictures on the \'net.', - 'Fight any big ones lately?', - 'What do you think they are? Like...they\'re angry that\'s for sure, but...like...why?', - 'You ever got bit?', - 'I hear they\'re mean \'n nasty.', - 'Hope I never see one face ta face', - 'You big strong travelers you. Keepin\' me safe an\' all :heart:', - 'I dunno what I\'d do if one broke into the city here.', - 'Just make sure you keep \'em away from ***The Watch*** ya\' hear?' - ]; - typeRandomDialog(dialogOptions, message.channel, message.author.id); - sentMessageFlag = true; - return; - } - } - - // Bar fights - if (words.includes("fight") || words.includes("attack") || words.includes("fighting") || words.includes("barfight") || words.includes("fite") && sentMessageFlag === false) { - if (calcRandom.gamble(33)) { - var dialogOptions = [ - 'Don\'t be startin\' no brawlers in here, ya\' hear?', - 'Don\'t even think about it.', - 'Don\'t make me give _Ghost_ a ping on the com.', - 'In here is drinkin\' time. Out there in the deadlands is fightin\' time. Learn the difference.', - 'You forget the rules or somethin\'?', - 'Honey, just because I\'m sweet doesnt mean I can\'t kick your ass out the door.', - 'You fight in here, you drink somewhere else.', - 'Whatever pissing contest you\'re try\'na win, win it elsewhere.', - 'Don\'t be actin\' all tuff here. Everybody knows what happened with you and that _Ravager_.', - 'The first rule of drink club, no fightin\'.' - ]; - typeRandomDialog(dialogOptions, message.channel, message.author.id); - sentMessageFlag = true; - return; - } - } - - // Good nights - if (words.includes("gn") || words.includes("night") || words.includes("goodnight") || words.includes("sleep") && sentMessageFlag === false) { - if (calcRandom.gamble(33)) { - var dialogOptions = [ - 'Night hun.', - 'Goodnight sweety. You comin\' back tomorrow?', - 'Have yerself a goodnight now ya\' hear?', - 'Sweet dreams.', - 'Nighty night.', - 'Gn. See ya tomorrow?', - 'Yer leavin\' already?', - 'Have yerself a good rest now.', - 'Sleep tight. I\' see ya\' tomorrow.', - 'Don\' let the bed bugs bite. They\'re the size of ravagers here on New Eden.' - ]; - typeRandomDialog(dialogOptions, message.channel, message.author.id); - sentMessageFlag = true; - return; - } - } - - // Has to be (prefix)command - if (message.content.indexOf(process.env.PREFIX) !== 0) return; - - // "This is the best way to define args. Trust me." - // - Some tutorial dude on the internet - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - - switch (command) { - case "ping": - if (message.author.id === '200340393596944384' || message.author.id === '163770616581718017') - message.reply("Pong!"); - break; - case "buydrink": - buyDrink(message, args); - break; - - case "tip": - if (args == "") { - //if (false) { - newMessage = `:x: I appreciate the gesture, but how much did you wanna tip, <@${message.author.id}>?`; - sendMessage(message.channel.id, newMessage); - } else { - var crystalCost = Math.floor(parseFloat(args)); - if (crystalCost > 0) { - //if (crystalCost > -1) { - // Valid number - var attacker = String(dataRequest.loadServerData("userStats", message.author.id)); - var attackerWallet = parseFloat(attacker.split(",")[6]); - if (attackerWallet > crystalCost) { - var upgradeResponse = dataRequest.sendServerData("buyDrink", crystalCost, message.author.id); - var dialogOptions = [ - 'Well ain\'t you sweet. Much appreciated.', - 'Awww that\'s mighty nice of ya\' :heart:', - 'Thank you sweet heart. Very generous of ya\'', - 'I appreciate that very much! And look forward to seein\' yer face more often. :wink:', - 'Well now, you are just too kind.', - 'You\' a sweet heart aren\'t ya. Thank you.', - 'Sweety I just can\'t take how kind you are. :heart: Thank you very much.', - 'For me? Aww, ya\' shouldn\'t have.', - 'That is very much appreciated and you are welcome back to ***The Watch*** anytime.', - 'Well darn, that\'s nice of ya. Thank you sweety.' - ]; - - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - newMessage = dialogOptions[randomNumber] + "\n<@" + message.author.id + "> <:crystals:460974340247257089> **-" + crystalCost + "**"; - sendMessage(message.channel.id, newMessage); - - //Send PM (defunct) - //if (crystalCost >= 0) { - /* - if (crystalCost >= 50) { - var dialogOptions2 = [ - 'Hey so...not 100% on this but heard it through the grape vine. ', - 'Ya\' know, the walls have ears around my place and occasionally I hear stuff. ', - 'I ain\'t supposed to be tellin\' ya this, and I ain\'t sure how true it it...but...', - 'So I probably shouldn\' get involved but I overheard some people talkin\'. Don\'t know if they spoke the truth, but...', - 'Yer a generous tipper. So am I. Not solid on the info, but I got a tip for ya\'. ', - 'So I hear things, and for generous people like yourself I might repeat \'em. Don\'t mean they\'re true. But...', - 'I heard somethin\' I probably shouldn\'t repeat. Obviously can\'t confirm this. ', - 'Things pass through my ears and I can\'t help but pass \'em on. ', - 'Hey there. A fello traveler told me something ya\' should hear. Don\'t know the accuracy, just know what I heard. ', - 'Ok so, don\'t know if this is up to date info, but I got somethin\' for ya. ' - ]; - - var dialogOptions3 = [ - 'Looks like The Order might actually be ahead in crystals this week.', - 'I think The Anarchy is winning this week. Although can\'t say by how much.', - 'Pretty sure The Religion has the most crystals in their bank right about now.', - 'I heard that The Order is behind on crystals in the bank.', - 'Someone mentioned that The Anarchy was a bit behind on crystals this week.', - 'Been hearin\' that the Religion is last place in crystals this week, but they always have tricks up their sleeves.' - ]; - - var randomNumber2 = Math.floor(Math.random() * dialogOptions2.length); - var randomNumber3 = Math.floor(Math.random() * dialogOptions3.length); - newMessage = dialogOptions2[randomNumber2] + dialogOptions3[randomNumber3]; - //sendDM(message.author.id, newMessage); - message.author.send(newMessage); - } - */ - } else { - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Looks like ya\' ain\'t got the <:crystals:460974340247257089>. Don\'t make a girl a promise that ya\' can\'t keep."); - } - } else { - //Not a number - sendMessage(message.channel.id, `:x: Doesn't seem like a tip I could use, but I appreciate the thought, <@${message.author.id}>!`); - } - } - break; - } -}); - -client.on('error', console.error); - -// https://stackoverflow.com/questions/3733227/javascript-seconds-to-minutes-and-seconds -function fmtMSS(s){ // accepts seconds as Number or String. Returns m:ss - return( s - // take value s and subtract (will try to convert String to Number) - ( s %= 60 ) // the new value of s, now holding the remainder of s divided by 60 - // (will also try to convert String to Number) - ) / 60 + ( // and divide the resulting Number by 60 - // (can never result in a fractional value = no need for rounding) - // to which we concatenate a String (converts the Number to String) - // who's reference is chosen by the conditional operator: - 9 < s // if seconds is larger than 9 - ? ':' // then we don't need to prepend a zero - : ':0' // else we do need to prepend a zero - ) + s ; // and we add Number s to the string (converting it to String as well) -} - -function sayHey(channel, userID) { - var dialogOptions = [ - 'Howdy', - 'Hey back', - 'Hey yourself', - 'Hi', - 'Hey it\'s you', - 'Hi there', - 'Hay is for horses silly', - 'Well hello', - 'Hey hey hey', - 'Hey stranger' - ]; - var dialogOptions2 = [ - 'How ya\' been?', - 'Whatcha\' up to?', - 'What\'s the weather like out there?', - 'Find any decent sized Ravagers?', - 'Welcome back.', - 'Glad you\'re back. Could use some company.', - 'What are ya\' havin\'?', - 'Whatcha\' drinkin\'?', - 'Retiring for the night? Already?', - 'Welcome to _The Watch!_' - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - var randomNumber2 = Math.floor(Math.random() * dialogOptions2.length); - var newMessage = dialogOptions[randomNumber] + " <@" + userID + ">!\n" + dialogOptions2[randomNumber] + "\n"; - - channel.startTyping(); - setTimeout(function() { - sendMessage(channel.id, newMessage); - channel.stopTyping(true); - }, calcRandom.random(2500,6000)); -} - -function typeRandomDialog(dialogOptions, channel, playerID) { - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - - channel.startTyping(); - setTimeout(function() { - if (playerID === undefined) - sendMessage(channel.id, dialogOptions[randomNumber]); - else - sendMessage(channel.id, "<@" + playerID + "> " + dialogOptions[randomNumber]); - - channel.stopTyping(true); - }, calcRandom.random(2500, 6000)); -} - -// Send message handler -function sendMessage(userID, channelID, message) { - // Handle optional first argument (so much for default arugments in node) - if (message === undefined) { - message = channelID; - channelID = userID; - userID = null; - } - - // Utility trick (@userID with an optional argument) - if (userID != null) { - message = "<@" + userID + "> " + message; - } - - // Sends message (needs client var, therefore I think external script won't work) - client.channels.get(channelID).send(message); -} - -// Async Waiting -function sleep(time) { - return new Promise((resolve, reject) => { - setTimeout(resolve, time); - }); -} - -// Buy drink -async function buyDrink(message, args) { - var randomGreet = [ - `Hey ${message.author}, wanna drink? Here's what I've got!`, - `Welcome to the tavern, ${message.author}! Care for a drink?`, - `People have been asking me on dates, ${message.author}. Must've be the alcohol.`, - `How's the Ravager hunting going, ${message.author}?` - ]; - - var randomNumber = Math.floor(Math.random() * randomGreet.length); - - message.channel.startTyping(); - await sleep(1500); - message.channel.stopTyping(true); - - const takingTooLongMessage = ":x: Sorry, hun. But the others need me and yer taking too long. Call me back once you've made yer mind up, alright " + message.author + "?"; - var footerName = message.member.displayName; - var courtesy = ""; - var tmp = ""; - - // Generates drink text. - for (let index = 0; index < drinks.length; index++) { - const element = drinks[index]; - tmp += `${element[0]} **${element[1]} <:crystals:460974340247257089> ${element[3]}** - ${element[2]}\n` - } - - // If there is a mention - if (message.mentions.members.size > 0) { - footerName = message.mentions.members.first().displayName; - courtesy = `(Given to ${message.mentions.members.first().displayName}, Courtesy of ${message.member.displayName})`; - } - - const embed = new Discord.RichEmbed() - .setAuthor("Alexis", client.user.avatarURL) - .setColor("#ffcc4d") - .setTitle("Traveler's Watch Drinks " + courtesy) - .setDescription(tmp) - .setFooter("We hope you enjoy your stay, " + footerName + "!") - - var newMessage = await message.channel.send(randomGreet[randomNumber], {embed}); - var emoteReaction; - - // Collects emotes and reacts upon the reaction (15 seconds) - const collector = newMessage.createReactionCollector( - (reaction, user) => (drinks.some(drinkElement => drinkElement[0] === reaction.emoji.name) || reaction.emoji.name === "❌") - && user.id !== client.user.id && user.id === message.author.id, { time: 15 * 1000 }); - var endedOnReact = false; - - // Reacts - for (let i = 0; i < drinks.length; i++) { - const element = drinks[i][0]; - console.log("[Reaction Options] Emote: " + element); - await newMessage.react(element); - } - await newMessage.react("❌"); - - // Collect - collector.once("collect", async reaction => { - emoteReaction = reaction.emoji.name; - endedOnReact = true; - collector.stop(); - }); - - // Chose an emote - collector.once("end", async collector => { - newMessage.clearReactions(); - - // If no choose - if (!endedOnReact) { - newMessage.edit(newMessage.content); - return newMessage.channel.send(takingTooLongMessage); - } - - // If cancelled - if (emoteReaction === "❌") { - newMessage.edit(newMessage.content); - return; - } - - // Gets confirmation by emote - var index = drinks.findIndex(drink => drink[0] === emoteReaction); - //console.log(index + "\n" + drinks[index]); - - var confirmationMessage = await message.channel.send(`${message.author} You sure you want to buy the ${drinks[index][0]} **${drinks[index][1]}** for <:crystals:460974340247257089> **${drinks[index][3]}**?`); - await confirmationMessage.react('βœ…'); - await confirmationMessage.react('❌'); - - // Collects emotes and reacts upon the reaction (15 seconds) - const newCollector = confirmationMessage.createReactionCollector( - (reaction, user) => (reaction.emoji.name === 'βœ…' || reaction.emoji.name === '❌') - && user.id !== client.user.id && user.id === message.author.id, { time: 15 * 1000 }); - var confirmReact = false; - - // Collect - newCollector.once("collect", async reaction => { - emoteReaction = reaction.emoji.name; - console.log("confirm: " + emoteReaction); - confirmReact = true; - newCollector.stop(); - }); - - newCollector.once("end", async collector => { - confirmationMessage.delete(); - - // If no choose - if (!confirmReact) { - return message.channel.send(takingTooLongMessage); - } - - if (emoteReaction === "βœ…") { - payDrinks(message, drinks[index]); - } else { - confirmationMessage.clearReactions(); - } - }); - }); -} - -// Buying drink -function payDrinks(message, drink) { - //var crystalCost = 0; - - // A ton of variables - var crystalCost = parseFloat(drink[3]); - var emote = drink[0]; - var givenIsAlexis = false; - var success = false; - var attacker = String(dataRequest.loadServerData("userStats", message.author.id)); - var attackerWallet = parseFloat(attacker.split(",")[6]); - - console.log("[Pay Drinks] Wallet: " + attackerWallet + " | Crystal Cost: " + crystalCost); - if (attackerWallet >= crystalCost) { - dataRequest.sendServerData("buyDrink", crystalCost, message.author.id); - - dialogOptions = [ - 'Here\'s a cold one,', - 'Here\'s your drink', - 'Here you go,', - 'Here ya are. Enjoy,', - 'Sliding it your way,', - 'Don\'t go alone, take this,', - 'Drink up,', - 'Don\'t chug it all down now,', - 'Headed in your direction,', - 'Comin\' up,' - ]; - - // Alexis options - if (message.mentions.members.first() !== undefined) { - if (message.mentions.members.first().id === client.user.id) { - var dialogOptions = [ - `Aww, thanks! :heart:`, - `Thanks for the drink! Cheers!`, - `Are you trying to make me drunk? Don't even TRY asking me out on a date,` - ]; - givenIsAlexis = true; - } - } - - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - var newMessage = ""; - - // Single or multiple user messages - if (message.mentions.members.size < 1) { - success = true; - newMessage = `${emote} ` + dialogOptions[randomNumber] + " <@" + message.author.id + ">! <:crystals:460974340247257089> **-" + crystalCost + "**"; - } else { - // Huge scope creep, but have a list of players able to be given beer instead of just one later on - // For now, just taking the first player - let member = message.mentions.members.first(); - if (member) { - // Displays ping if not Alexis - var givePingUser = ` ${member.user}!`; - if (givenIsAlexis) givePingUser = ""; - - success = true; - newMessage = `${emote} ` + dialogOptions[randomNumber] + givePingUser + "\n\n" + "***Courtesy of *** <@" + message.author.id + ">. <:crystals:460974340247257089> **-" + crystalCost + "**"; - } else { - newMessage = ":x: <@" + message.author.id + "> You wanna buy ***WHO*** a ***WHAT*** now?"; - } - } - sendMessage(message.channel.id, newMessage); - - // Does champagne sharing - if (success && drink[1] === "Champagne") { - shareDrinks(message, drink); - } - - } else { - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Looks like ya\' ain\'t got the <:crystals:460974340247257089><:crystals:460974340247257089><:crystals:460974340247257089>. I ain\'t runnin\' a charity here."); - } -} - -// Mass buying of a drink -async function shareDrinks(message, drink) { - const drinkMessage = `${message.author} has bought some ${drink[0]} **${drink[1]}**! React to get your **free drink!** πŸ₯‚`; - var timer = 30; // Seconds - var decrementTime = 10; - var footerText = `⏰ ${timer} seconds left to get your free drink!`; - client.user.setActivity(`${footerText}`); - - // Embed - const embed = new Discord.RichEmbed() - .setAuthor("Alexis", client.user.avatarURL) - .setColor("#ffcc4d") - .setTitle("Free Drinks!") - .setDescription(drinkMessage) - .setFooter(footerText) - - var embedMessage = await message.channel.send(embed); - - // Message - message.channel.startTyping(); - await sleep(1500); - message.channel.send("Hmm... I might just take some too, if y'all don't mind. :heart:"); - message.channel.stopTyping(true); - await sleep(1500); - - // Collects emotes and reacts upon the reaction (30 seconds) - var users = ""; - var numberOfReacts = 0; - const newCollector = embedMessage.createReactionCollector( - (reaction, user) => reaction.emoji.name === drink[0] - , { time: timer * 1000 }); - - // Alexis grabbing some - await embedMessage.react(drink[0]); - - // Collect - newCollector.on("collect", async reaction => { - var user = reaction.users.last(); - dialogOptions = [ - `${user} has taken a drink!`, - `${user} eagerly grabs the ${drink[1]}!`, - `${user} enjoys the beverage!`, - `${user} gets a free drink!`, - `${user} chugs down the ${drink[1]}!`, - `${user} races to get down the drink the fastest!` - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - users += dialogOptions[randomNumber] + "\n"; - - // Embed - const embed = new Discord.RichEmbed() - .setAuthor("Alexis", client.user.avatarURL) - .setColor("#ffcc4d") - .setTitle("Free Drinks!") - .setDescription(`${drinkMessage}\n\n` + users) - .setFooter(footerText) - - embedMessage.edit(embed); - - // Counts up if not Alexis - if (reaction.users.last().id !== client.user.id) numberOfReacts++; - }); - - // Ends collection - newCollector.once("end", async collector => { - var number = "" - if (numberOfReacts === 1) { - number = numberOfReacts + " traveler"; - } else { - number = numberOfReacts + " travelers"; - } - - // Embed - embedMessage.clearReactions(); - const embed = new Discord.RichEmbed() - .setAuthor("Alexis", client.user.avatarURL) - .setColor("#ffcc4d") - .setTitle("Free Drinks!") - .setDescription(`${message.author}'s ${drink[0]} **${drink[1]}** has been finished. There were a total of ${number} that got the free drink! πŸ₯‚\n\n` + users) - .setFooter("⏰ The drink has been finished!") - - embedMessage.edit(embed); - message.channel.send(`Everyone, thank ${message.author} for the drink! It was great.`); - }); - - - function timerFunction() { - setTimeout(async () => { - console.log("timer: " + timer + " => " + (timer - decrementTime)) - timer -= decrementTime; - - footerText = `⏰ ${timer} seconds left to get your free drink!`; - - if (timer > 0) { - client.user.setActivity(`${footerText}`); - - // Embed - const embed = new Discord.RichEmbed() - .setAuthor("Alexis", client.user.avatarURL) - .setColor("#ffcc4d") - .setTitle("Free Drinks!") - .setDescription(`${drinkMessage}\n\n` + users) - .setFooter(footerText) - - embedMessage.edit(embed); - } else { - client.user.setActivity(normalActivity) - } - - if (timer > 0) timerFunction(); - }, decrementTime * 1000); - } - - timerFunction(); -} - -/* -async function sendDM(userID, dialogOption, dialogOption2, dialogOption3) { - // Wait for 20 - 40 seconds - //await(sleep(calcRandom.random(120, 240) * 60 * 1000)); - var author = client.users.get(userID); - - client.send(author, dialogOption); - client.send(author, dialogOption2); - client.send(author, dialogOption3); -} -*/ - -// Log our bot in -client.login(process.env.ALEXIS_TOKEN); \ No newline at end of file diff --git a/Alexis/package.json b/Alexis/package.json deleted file mode 100644 index 69163ab..0000000 --- a/Alexis/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "sanctum-deploypackage", - "version": "1.0.1", - "description": "Universal package for all SANCTUM bots, using pm2.", - "main": "", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "echo \"Error: you need to use the bot name as a command.\" && exit 1", - "alexis": "pm2 start alexis.js -i max --watch", - "graze": "pm2 start graze.js -i max --watch", - "librarian": "pm2 start librarian.js -i max --watch", - "mainframe": "pm2 start mainframe.js -i max --watch", - "mori": "pm2 start mori.js -i max --watch", - "mosiah": "pm2 start mosiah.js -i max --watch", - "ravager": "pm2 start ravager.js -i max --watch", - "rey": "pm2 start rey.js -i max --watch", - "troll": "pm2 start troll.js -i max --watch" - }, - "author": "", - "license": "ISC", - "dependencies": { - "discord.js": "^11.4.2", - "dotenv": "^6.0.0", - "express": "^4.16.3", - "node-cron": "^1.2.1", - "socket.io": "^2.1.1", - "socket.io-request": "^0.8.0" - } -} diff --git a/DeveloperDiscord/developerdiscord.js b/DeveloperDiscord/developerdiscord.js deleted file mode 100644 index d65bb9d..0000000 --- a/DeveloperDiscord/developerdiscord.js +++ /dev/null @@ -1,252 +0,0 @@ -// .env Variables -require('dotenv').config({path: '../.env'}); - -// Node Modules -const Discord = require('discord.js'); -const client = new Discord.Client(); -//const cron = require('node-cron'); - -// Bot Modules -//const dataRequest = require('../modules/dataRequest'); -//const calcRandom = require('../modules/calcRandom'); - -const playingMessage = '!join | Bot Things.'; - -const roles = { - "roles": [ - "artists", - "developers", - "designers", - "testers", - "writers" - ], - - "artists": { - "name": "Artists" - }, - "developers": { - "name": "Developers" - }, - "designers": { - "name": "Designers" - }, - "testers": { - "name": "Testers" - }, - "writers": { - "name": "Writers" - } -} - -// The ready event is vital, it means that your bot will only start reacting to information -// from Discord _after_ ready is emitted -client.on('ready', async () => { - // Generates invite link - try { - let link = await client.generateInvite(["ADMINISTRATOR"]); - console.log("Invite Link: " + link); - } catch(e) { - console.log(e.stack); - } - - // You can set status to 'online', 'invisible', 'away', or 'dnd' (do not disturb) - client.user.setStatus('online'); - // Sets your "Playing" - client.user.setActivity(playingMessage); - console.log(`Connected! \ - \nLogged in as: ${client.user.username} - (${client.user.id})`); -}); - -// Create an event listener for messages -client.on('message', async message => { - // Ignores ALL bot messages - if (message.author.bot) return; - /* - // Message has to be in Outskirts (should be edited later) - if (!(message.channel.id === process.env.TAVERN_CHANNEL_ID - || message.channel.id === process.env.TEST_CHANNEL_ID)) return; - // Has to be (prefix)command - if (message.content.indexOf(process.env.PREFIX) !== 0) return; - */ - // "This is the best way to define args. Trust me." - // - Some tutorial dude on the internet - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - - switch (command) { - case "ping": - if (isAdmin(message.author.id)) - message.reply("What is your command, glorious master!"); - break; - case "test": - // For testing embeds - - break; - case "join": - // If chose a parameter - if (args[0]) { - var moddedArgs = args[0].toLowerCase(); - if (roles.roles.includes(moddedArgs)) { - console.log("[JOIN] Found it! " + moddedArgs + "\nAdding role to " + message.author.username); - - // Gets specified role - var roleName = roles[moddedArgs].name; - var newRole = message.guild.roles.find(role => role.name === roleName); - - // Checks if user already has roles - if (!message.member.roles.has(newRole.id)) { - // Adds Team Role - var addTeam = false; - var teamRole = message.guild.roles.find(role => role.name === "Team"); - if (!message.member.roles.has(teamRole.id)) addTeam = true; - - if (!addTeam) await message.member.addRole(newRole).catch(console.error); - else await message.member.addRoles([newRole, teamRole]).catch(console.error); - - const embed = new Discord.RichEmbed() - .setAuthor(client.user.username, client.user.avatarURL) - .setTitle("Successful") - .setDescription(`${message.author}, you have been given the ${newRole} role!`) - .setColor(message.guild.members.get(client.user.id).displayColor) - .setFooter("Check out the general category and your role specific channel!", message.author.avatarURL) - await message.channel.send(embed); - } else { - const embed = new Discord.RichEmbed() - .setAuthor(client.user.username, client.user.avatarURL) - .setTitle("Failed") - .setDescription(`${message.author}, you already have the ${newRole} role!`) - .setColor(message.guild.members.get(client.user.id).displayColor) - .setFooter("To leave a role, use !leave [ROLE NAME].", message.author.avatarURL) - await message.channel.send(embed); - } - } else { - showErrorMessage(args, command, message); - } - } else { - displayJoinMessage(message); - } - break; - case "leave": - // If chose a parameter - if (args[0]) { - var moddedArgs = args[0].toLowerCase(); - if (roles.roles.includes(moddedArgs)) { - console.log("[LEAVE] Found it! " + moddedArgs + "\nRemoving role to " + message.author.username); - const joinRoleMessage = "To join a role, use !join [ROLE NAME]."; - var playerRoles = message.member.roles.filter(role => role.name === roles[moddedArgs].name); - - // Gets specified role - var roleName = roles[moddedArgs].name; - var newRole = message.guild.roles.find(role => role.name === roleName); - - // Checks if user already has roles - if (message.member.roles.has(newRole.id)) { - // Removes Team Role (if it's the last "team" type role) - var removeTeam = false; - var teamRole = message.guild.roles.find(role => role.name === "Team"); - var playerRoles = message.member.roles.filter(role => roles.roles.includes(role.name.toLowerCase())); - var debugString = "All the roles a user has:\n"; - - // Grabs - message.member.roles.forEach(element => { - debugString += `> ${element.name}\n` - }); - console.log(debugString + "removeTeam = " + removeTeam); - debugString = "All the team-defined roles a user has:\n"; - playerRoles.forEach(element => { - debugString += `> ${element.name}\n` - }); - console.log(debugString); - - if (playerRoles.size <= 1) { - if (message.member.roles.has(teamRole.id)) removeTeam = true; - } - - // Removes specified role - var roleName = roles[moddedArgs].name; - var newRole = message.guild.roles.find(role => role.name === roleName); - - if (!removeTeam) { - console.log("Removed only one role: removeTeam = " + removeTeam) - await message.member.removeRole(newRole).catch(console.error); - } else { - console.log("Removing team role: removeTeam = " + removeTeam) - await message.member.removeRoles([newRole, teamRole]).catch(console.error) - } - - const embed = new Discord.RichEmbed() - .setAuthor(client.user.username, client.user.avatarURL) - .setTitle("Successful") - .setDescription(`${message.author}, you have removed the ${newRole} role!`) - .setColor(message.guild.members.get(client.user.id).displayColor) - .setFooter(joinRoleMessage, message.author.avatarURL) - await message.channel.send(embed); - } else { - const embed = new Discord.RichEmbed() - .setAuthor(client.user.username, client.user.avatarURL) - .setTitle("Failed") - .setDescription(`${message.author}, you already don't have the ${newRole} role!`) - .setColor(message.guild.members.get(client.user.id).displayColor) - .setFooter(joinRoleMessage, message.author.avatarURL) - await message.channel.send(embed); - } - } else { - showErrorMessage(args, command, message); - } - } else { - displayJoinMessage(message); - } - break; - } -}); - -client.on('error', console.error); - -// Async Waiting -function sleep(time) { - return new Promise((resolve, reject) => { - setTimeout(resolve, time); - }); -} - -// Gets if user has an Overseers rank -function isAdmin(userID) { - // Developer's Discord - var guild = client.guilds.get("500140223871582228"); - return guild.members.get(userID).roles.find(role => role.name === "Team Leads"); -} - -// Show !join message listing commands -function displayJoinMessage(message) { - var newDialog = ""; - roles.roles.forEach(element => { - var roleName = roles[element].name; - var newRole = message.guild.roles.find(role => role.name === roleName); - var memberLength = newRole.members.size; - newDialog += `__${element}__ \`${memberLength} Members\`\n`; - }); - - const embed = new Discord.RichEmbed() - .setAuthor(client.user.username, client.user.avatarURL) - .setTitle("Roles") - .setDescription(newDialog) - .setColor(message.guild.members.get(client.user.id).displayColor) - .setFooter("To join or leave a role, use !join [ROLE NAME] or !leave [ROLE NAME].") - - message.channel.send(embed); -} - -// Shows error messages for !join and !leave for unknown roles -function showErrorMessage(args, command, message) { - const embed = new Discord.RichEmbed() - .setAuthor(client.user.username, client.user.avatarURL) - .setTitle("Failed") - .setDescription(`Sorry, I couldn't find the "${args[0]}" role.`) - .setFooter(`Use !${command} to get a list of roles to ${command}.`) - .setColor(message.guild.members.get(client.user.id).displayColor) - - message.channel.send(embed); -} - -// Log our bot in (change the token by looking into the .env file) -client.login(process.env.DEVELOPER_TOKEN); \ No newline at end of file diff --git a/DeveloperDiscord/package.json b/DeveloperDiscord/package.json deleted file mode 100644 index 3d0c6de..0000000 --- a/DeveloperDiscord/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "developerdiscord", - "version": "1.0.0", - "description": "Developer Discord Bot", - "main": "developerdiscord.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/TimRuswick/SANCTUM.git" - }, - "author": "TheSomeoneXD", - "license": "MIT", - "bugs": { - "url": "https://github.com/TimRuswick/SANCTUM/issues" - }, - "homepage": "https://github.com/TimRuswick/SANCTUM#readme", - "dependencies": { - "discord.js": "^11.4.2" - } -} diff --git a/Enemy/enemy.js b/Enemy/enemy.js deleted file mode 100644 index bf3ee8e..0000000 --- a/Enemy/enemy.js +++ /dev/null @@ -1,571 +0,0 @@ -// .env Variables -require('dotenv').config({path: '../.env'}); - -// Node Modules -const Discord = require('discord.js'); -const client = new Discord.Client(); -const cron = require('node-cron'); -const io = require('socket.io-client'); - -// Make connection -var socket = io.connect('http://localhost:80'); - -// Bot Modules -const npcSettings = require('./npcSettings') -const dataRequest = require('../modules/dataRequest'); -const calcRandom = require('../modules/calcRandom'); - -// State Machine -var EnemyState = { - INACTIVE: 0, - PROWLING: 1, - ACTIVE: 2, - UNCONSCIOUS: 3 -} - -// Enemy lists -class EnemyBatchInstance { - constructor(channel) { - this.state = EnemyState.INACTIVE; - this.enemies = []; // Array of `new Enemy()`s - this.channel = channel; // Channel of spawning - this.spawnPrecentage = 100; - this.hostileLevel = 1; - this.fastSummon = false; // Show prowling - } -} - -// Enemy instance -class Enemy { - constructor(type) { - this.state = EnemyState.INACTIVE; - this.type = type; - this.level = 1; - this.health = 420; - this.speed = 21; - this.strength = 33; - this.stash = 0; - this.fleeTime = undefined; - this.guid = undefined; - this.deletePrevMessage = false; - } - - // Creates flee time by randomization - get randomFleeTime() { - var randomFleeTime; - randomFleeTime = calcRandom.random(3 * 60 * 1000, 6 * 60 * 1000); - randomFleeTime -= (randomFleeTime % 1000); - return randomFleeTime; - } -} - -var enemyBatchCollection = []; - -// Spawning patterns -var spawnPatterns = { - "types": ['default', 'randomBatch2'], - "default": { - "ravager": { - "amount": 1 - }, - "type": "incrememt" - }, - "randomBatch2": { - "amount": 2, - "type": "incrememt" - } -} - -var socketReady = false; -socket.on('spawn', (data) => { - if (!socketReady) return; - - console.log(JSON.stringify(data, null, 4)); - console.log(`Summoning enemies...`); - - // Spawns - summonEnemy(data); - -}); - -// The ready event is vital, it means that your bot will only start reacting to information -// from Discord _after_ ready is emitted -client.on('ready', async () => { - socketReady = true; - - // Generates invite link - try { - let link = await client.generateInvite(["ADMINISTRATOR"]); - console.log("Invite Link: " + link); - } catch(e) { - console.log(e.stack); - } - - // You can set status to 'online', 'invisible', 'away', or 'dnd' (do not disturb) - client.user.setStatus('invisible'); - // Sets your "Playing" - if (npcSettings.activity) { - client.user.setActivity(npcSettings.activity, { type: npcSettings.type }) - .then(presence => console.log(`Activity set to ${presence.game ? presence.game.name : 'none'}`)) - .catch(console.error); - } - - console.log(`Connected! \ - \nLogged in as: ${client.user.username} - (${client.user.id})`); - - // Corrects Ravager username - if (client.user.username == "Raveger") { - const newName = "Ravager"; - console.log("Username is Raveger! Typos are NOT(?) cannon, so better change stuff.\nAttempting rename to " + newName + "..."); - - // Set username - client.user.setUsername(newName) - .then(user => console.log(`Success! New username is now ${user.username}.`)) - .catch(console.error); - - // Changes nickname - client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id).setNickname(""); - } -}); - -// Create an event listener for messages -client.on('message', async message => { - // Ignores ALL bot messages - if (message.author.bot) return; - // Message has to be in Outskirts (should be edited later) - if (!(message.channel.id === process.env.DEADLANDS_CHANNEL_ID - || message.channel.id === process.env.TEST_CHANNEL_ID)) return; - // Has to be (prefix)command - if (message.content.indexOf(process.env.PREFIX) !== 0) return; - - // "This is the best way to define args. Trust me." - // - Some tutorial dude on the internet - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - - switch (command) { - case "ping": - if (isAdmin(message.author.id)) - message.reply("***...MRGRGRGR!***"); - break; - case npcSettings.id: - if (args[0].toLowerCase() === "summon" && isAdmin(message.author.id)) { - generateEnemy(process.env.DEADLANDS_CHANNEL_ID); - } - break; - } -}); - -client.on('error', console.error); - -cron.schedule('*/10 * * * *', function() { - -}); - -async function generateEnemy(channelID) { - console.log("Generating enemy...") - - // Gets an enemy batch instance, or creates if non-existant - var index = enemyBatchCollection.findIndex(data => data.channel === channelID); - var enemyBatch; - console.log(index <= -1) - if (index <= -1) { - enemyBatch = new EnemyBatchInstance(channelID); - } else { - enemyBatch = enemyBatchCollection[index]; - } - - // Generate a spawn pattern - var randomSpawnPattern = spawnPatterns.types[calcRandom.randomExc(0, spawnPatterns.types.length)]; - var newSpawnPattern = spawnPatterns[randomSpawnPattern]; - newSpawnPattern = spawnPatterns["default"]; // Overruled! - - // Creates a bunch of new enemies - var amount = newSpawnPattern[npcSettings.id].amount; - var newEnemies = []; - for (let i = 0; i < amount; i++) { - var enemy = new Enemy(npcSettings.id); - var elevel = enemyBatch.hostileLevel; - - // Replication of newHostile in sendData.php - const healthBase = 50; const strengthBase = 3; const speedBase = 3; const stashBase = 3; - - const healthMin = (healthBase * elevel) / 2; - const healthMax = healthBase * elevel; - - const strengthMin = (strengthBase * elevel) / 2; - const strengthMax = strengthBase * elevel; - - const speedMin = (speedBase * elevel) / 2; - const speedMax = speedBase * elevel; - - const stashMin = (stashBase * elevel) / 2; - const stashMax = stashBase * elevel; - - const health = Math.floor(calcRandom.randomExc(healthMin, healthMax)); - const strength = Math.floor(calcRandom.randomExc(strengthMin, strengthMax)); - const speed = Math.floor(calcRandom.randomExc(speedMin, speedMax)); - const stash = Math.floor(calcRandom.randomExc(stashMin, stashMax)); - - enemy.level = elevel; - enemy.health = health; - enemy.strength = strength; - enemy.speed = speed; - enemy.stash = stash; - enemy.state = EnemyState.PROWLING; - enemy.fleeTime = enemy.randomFleeTime; - enemy.guid = guidGenerator(); - - // Logs stats - console.log(`\n[===== | Enemy Stats | =====]`); - console.log(`HEALTH: ${health} > ${healthMin} - ${healthMax}`); - console.log(`STRENGTH: ${strength} > ${strengthMin} - ${strengthMax}`); - console.log(`SPEED: ${speed} > ${speedMin} - ${speedMax}`); - console.log(`STASH: ${stash} > ${stashMin} - ${stashMax}`); - console.log(`[===========================]\n`); - newEnemies.push(enemy); - } - enemyBatch.enemies = newEnemies; - enemyBatch.hostileLevel++; - - console.log(JSON.stringify(newEnemies, null, 2)); - - if (calcRandom.gamble(enemyBatch.spawnPrecentage)) { - enemyBatch.spawnPrecentage = 50; - - // Creation of Ravager timer - var creationTime = calcRandom.random(35000, 540000); - creationTime = 3 * 1000; // shortcuts - - console.log(`[Enemy Spawn] ${amount} "${npcSettings.id}" will be created in ${fmtMSS(creationTime / 1000)} min.`); - await sleep(creationTime); - console.log(`[Enemy Spawn] ${amount} "${npcSettings.id}" has spawned!`); - summonEnemy(enemyBatch); - - enemyBatch.hostileLevel++; - } else { - console.log("[Enemy Spawn] Fail to spawn. Adding 10% more to chances."); - enemyBatch.spawnPrecentage += 10; - } -} - -// Turn online and turn offline -async function summonEnemy(data) { - // If timer exists, do outpost - const summonTime = 4; // 4 is debug, normal is 35 - if (!data.fastSummon) { - console.log(`Summoning Ravager... waiting for ${summonTime} seconds.`); - client.user.setStatus('online'); - client.user.setActivity(`Prowling...`); - - // Sets prowling states on the Ravagers - for (let i = 0; i < data.enemies.length; i++) { - const element = data.enemies[i]; - element.state = EnemyState.PROWLING; - } - - // Notification code - // TODO - - await sleep(summonTime * 1000); - } - console.log("Enemy has spawned!"); - - // Goes thru all enemies in array - for (let i = 0; i < data.enemies.length; i++) { - const element = data.enemies[i]; - const hostileStats = `LVL: ${element.level} | HP: ${element.health} | STR: ${element.strength} | SPD: ${element.speed}`; - - const ravagerMember = client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id); - const appearanceEmbed = new Discord.RichEmbed() - .setAuthor(ravagerMember.displayName, client.user.avatarURL) - .setColor(ravagerMember.displayColor) - .setDescription(`${healthbar(element.health, element.health)}\n` + "```" + hostileStats + "```") - - var newMessage = await client.channels.get(data.channel).send(getDialog("onTheProwl"), {embed: appearanceEmbed}); - await client.user.setStatus('online'); - await client.user.setActivity(hostileStats); - - for (let i = 0; i < data.enemies.length; i++) { - const element = data.enemies[i]; - element.state = EnemyState.ACTIVE; - } - enemyTimer(element, data, data.channel, element.fleeTime, newMessage); - } -} - -// Counts down -async function enemyTimer(newEnemy, data, channel, fleeTime, newMessage) { - function addUserToArray(userID) { - attackingUsers.push(userID); - } - - async function sendReactions(options) { - // Sends reactions - for (let i = 0; i < options.length; i++) { - const element = options[i]; - //console.log("[Reaction Options] Emote: " + element + " | newMessage: " + newMessage); - await newMessage.react(element); - } - } - - console.log(`Waiting for the next ${fmtMSS(fleeTime / 1000)} min. to check if Ravager has been killed. ${fleeTime}`); - - const ravagerMember = client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id); - const interactionEmbed = new Discord.RichEmbed() - .setColor(ravagerMember.displayColor) - .setTitle("Status") - .setDescription("...") - - const sendMessageMinimum = true; - var isReadyToFlee = false; - var attackingUsers = []; - var tempAttackUsers = ""; - var newChannel = client.channels.get(channel); - var interactionMessage = await newChannel.send({embed: interactionEmbed}); - - // Possible reaction attacks can go here - var options = ['πŸ’₯', 'πŸ‡¦', 'πŸ‡§', 'πŸ‡¨'] - - // System for no message sending except the minimum - if (sendMessageMinimum) { - // Collects emotes and reacts upon the reaction - const collector = newMessage.createReactionCollector( - (reaction, user) => options.includes(reaction.emoji.name) && user.id !== client.user.id); - - sendReactions(options); - - // Collect - collector.on("collect", async reaction => { - var user = reaction.users.last(); - - // Just in case, I managed to bug out Ravager to display its own name. - if (user.id === client.user.id) { - console.log("Well then. It bypassed the collector filter, we're stopping the Ravager from attacking itself. Would be interesting though!"); - return; - } - - // Send damage to server - // TODO - - tempAttackUsers += `${user} :crossed_swords: 11 DAM | <:hitback:460969716580745236> MISS (150/150)\n`; - addUserToArray(user.id); - console.log("Collecting a user! " + user.username) - }); - - // Ends - collector.once("end", async collector => { - console.log("Ended collector.") - flee(newEnemy, data, client.channels.get(channel)); - }); - - // Goes every 4 seconds - var emoteRefresh = setInterval(async () => { - await newMessage.clearReactions(); - - if (isReadyToFlee && newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log("Has fled!"); - //interactionEmbed.setDescription("πŸ‘£ The Ravager has fled...") - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - clearInterval(emoteRefresh); - collector.stop(); - } else { - console.log("Sending refreshed embed... |" + tempAttackUsers + "|") - if (tempAttackUsers === "") tempAttackUsers = "..."; - interactionEmbed.setDescription(tempAttackUsers); - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - sendReactions(options); - } - - tempAttackUsers = ""; - }, 5 * 1000); - - - // Waits to see if killed, and if not send a fleeing message - await sleep(fleeTime); - if (newEnemy.state === EnemyState.ACTIVE) { - newChannel.send("**YOU ARE WEAK. THERE IS NO CHALLENGE FOR ME HERE.**\n:bangbang:***ATTEMPTING TO FLEE...***"); - await sleep(20 * 1000); - - // If still there despawn - if (newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log('Hostile is now able to flee, now awaiting for collector to finish.'); - isReadyToFlee = true; - } - } - } else { - // Collects emotes and reacts upon the reaction - var collector = newMessage.createReactionCollector( - (reaction, user) => options.includes(reaction.emoji.name) && user.id !== client.user.id); - - sendReactions(options); - - // Collect - collector.on("collect", async reaction => { - var user = reaction.users.last(); - - // Just in case, I managed to bug out Ravager to display its own name. - if (user.id === client.user.id) { - console.log("Well then. It bypassed the collector filter, we're stopping the Ravager from attacking itself. Would be interesting though!"); - return; - } - - // Send damage to server - // TODO - - tempAttackUsers += `${user} :crossed_swords: 11 DAM | <:hitback:460969716580745236> MISS (150/150)\n`; - addUserToArray(user.id); - console.log("Collecting a user! " + user.username) - }); - - // Ends - collector.once("end", async collector => { - console.log("Ended collector.") - flee(newEnemy, data, client.channels.get(channel)); - }); - - // Goes every 4 seconds - var emoteRefresh = setInterval(async () => { - await newMessage.clearReactions(); - - if (isReadyToFlee && newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log("Has fled!"); - //interactionEmbed.setDescription("πŸ‘£ The Ravager has fled...") - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - clearInterval(emoteRefresh); - collector.stop(); - } else { - console.log("Sending refreshed embed... |" + tempAttackUsers + "|") - if (tempAttackUsers === "") tempAttackUsers = "..."; - interactionEmbed.setDescription(tempAttackUsers); - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - sendReactions(options); - } - - tempAttackUsers = ""; - }, 5 * 1000); - - - // Waits to see if killed, and if not send a fleeing message - await sleep(fleeTime); - if (newEnemy.state === EnemyState.ACTIVE) { - newChannel.send("**YOU ARE WEAK. THERE IS NO CHALLENGE FOR ME HERE.**\n:bangbang:***ATTEMPTING TO FLEE...***"); - await sleep(20 * 1000); - - // If still there despawn - if (newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log('Hostile is now able to flee, now awaiting for collector to finish.'); - isReadyToFlee = true; - } - } - } -} - -// Does flee sequence -async function flee(newEnemy, data, newChannel) { - newChannel.send("**THE POOR, ILL-EQUIPPED TRAVELERS PUT UP NO FIGHT...**\n:footprints:***RETURNS TO THE WILD. ***"); - socket.emit('fled', { - data: data, - ravager: newEnemy - }); - - if (data.length < 1) { - await client.user.setPresence('invisible'); - client.user.setActivity('Prowling...'); - } - - console.log(data); -} - -// Health bar -function healthbar(health, maxHealth) { - var heartHealthAmount = 30; - var printString = ""; - var amountMultiple = 0; - var timesToLoop = Math.floor(maxHealth / heartHealthAmount); - for (var i = 0; i < timesToLoop; i++) { - amountMultiple = i * heartHealthAmount; - if (amountMultiple < health) { - printString += ":heart: "; - } else { - printString += ":black_heart:"; - } - } - printString += " (" + health + "/" + maxHealth + ")"; - return printString; -} - -// Async Waiting -function sleep(time) { - return new Promise((resolve, reject) => { - setTimeout(resolve, time); - }); -} - -// Gets if user has an Overseers rank -function isAdmin(userID) { - var guild = client.guilds.get(process.env.SANCTUM_ID); - return guild.members.get(userID).roles.find(role => role.name === "Overseers"); -} - -// https://stackoverflow.com/questions/3733227/javascript-seconds-to-minutes-and-seconds -function fmtMSS(s){ // accepts seconds as Number or String. Returns m:ss - return( s - // take value s and subtract (will try to convert String to Number) - ( s %= 60 ) // the new value of s, now holding the remainder of s divided by 60 - // (will also try to convert String to Number) - ) / 60 + ( // and divide the resulting Number by 60 - // (can never result in a fractional value = no need for rounding) - // to which we concatenate a String (converts the Number to String) - // who's reference is chosen by the conditional operator: - 9 < s // if seconds is larger than 9 - ? ':' // then we don't need to prepend a zero - : ':0' // else we do need to prepend a zero - ) + s ; // and we add Number s to the string (converting it to String as well) -} - -// https://stackoverflow.com/questions/6860853/generate-random-string-for-div-id/6860916#6860916 -function guidGenerator() { - var S4 = function() { - return (((1+Math.random())*0x10000)|0).toString(16).substring(1); - }; - return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4()); -} - -function getDialog(dialogTag, data = "", data2 = "") { - switch(dialogTag) { - case "onTheProwl": - var dialogOptions = [ - 'THE AIR SMELLS OF BLOOD.', - 'LOOKS LIKE MEAT\'S BACK ON THE MENU BOYS.', - 'FRESH MEAAAATTTT.', - 'TONIGHT WE DINE ON TRAVELER FLESSHHHH.', - 'SKULL CRUSHING IS MY FAVORITE SPORT.', - 'HUNGRY...', - 'TRAVELERS MAKE GOOD MEEEAAAAT!', - 'PUNY TRAVELER THINKS THEY CAN FIGHT?!', - 'HUNT THEM ALL DOWN.', - 'I HUNGER FOR THE TASTE OF FLESH.' - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - return "***" + dialogOptions[randomNumber] + "***"; - - case "ravagerHit": - var dialogOptions = [ - 'STAGGERS BACK', - 'FALLS BACKWARDS', - 'CHARGES FORWARD CONFUSED', - 'LOOKS FOR THE SOURCE OF THE HIT', - 'FALLS FORWARDS', - 'BLOCKS ITS FACE', - 'STUMBLES BACKWARDS IN CONFUSION', - 'LUNGES FORWARD DISTRACTED', - 'BITES AT IT\'S ATTACKER', - 'CHECKS IT\'S WOUND' - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - return `***${dialogOptions[randomNumber]}***`; - } -} - -// Log our bot in (change the token by looking into the .env file) -client.login(process.env.RAVAGER_TOKEN); \ No newline at end of file diff --git a/Enemy/npcSettings.js b/Enemy/npcSettings.js deleted file mode 100644 index 92cb18a..0000000 --- a/Enemy/npcSettings.js +++ /dev/null @@ -1,9 +0,0 @@ -require('dotenv').config({path: '../.env'}); - -module.exports = { - id: "ravager", - activity: "Prowling...", - type: "PLAYING", - token: process.env.RAVAGER_TOKEN, - botChannel: process.env.DEADLANDS_CHANNEL_ID -} diff --git a/Enemy/package.json b/Enemy/package.json deleted file mode 100644 index 5114af3..0000000 --- a/Enemy/package.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "name": "sanctum-deploypackage", - "version": "1.0.1", - "description": "Universal package for all SANCTUM bots, using pm2.", - "main": "", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "echo \"Error: you need to use the bot name as a command.\" && exit 1", - "alexis": "pm2 start alexis.js -i max --watch", - "graze": "pm2 start graze.js -i max --watch", - "librarian": "pm2 start librarian.js -i max --watch", - "mainframe": "pm2 start mainframe.js -i max --watch", - "mori": "pm2 start mori.js -i max --watch", - "mosiah": "pm2 start mosiah.js -i max --watch", - "ravager": "pm2 start enemy-ravager.js -i max --watch", - "wolf": "pm2 start enemy-wolf.js -i max --watch", - "crow": "pm2 start enemy-crow.js -i max --watch", - "rey": "pm2 start rey.js -i max --watch", - "troll": "pm2 start troll.js -i max --watch" - }, - "author": "", - "license": "ISC", - "dependencies": { - "discord.js": "^11.4.2", - "dotenv": "^6.0.0", - "express": "^4.16.3", - "node-cron": "^1.2.1", - "socket.io": "^2.1.1", - "socket.io-request": "^0.8.0" - } -} diff --git a/Enemy_Crow/enemy-crow.js b/Enemy_Crow/enemy-crow.js deleted file mode 100644 index bf3ee8e..0000000 --- a/Enemy_Crow/enemy-crow.js +++ /dev/null @@ -1,571 +0,0 @@ -// .env Variables -require('dotenv').config({path: '../.env'}); - -// Node Modules -const Discord = require('discord.js'); -const client = new Discord.Client(); -const cron = require('node-cron'); -const io = require('socket.io-client'); - -// Make connection -var socket = io.connect('http://localhost:80'); - -// Bot Modules -const npcSettings = require('./npcSettings') -const dataRequest = require('../modules/dataRequest'); -const calcRandom = require('../modules/calcRandom'); - -// State Machine -var EnemyState = { - INACTIVE: 0, - PROWLING: 1, - ACTIVE: 2, - UNCONSCIOUS: 3 -} - -// Enemy lists -class EnemyBatchInstance { - constructor(channel) { - this.state = EnemyState.INACTIVE; - this.enemies = []; // Array of `new Enemy()`s - this.channel = channel; // Channel of spawning - this.spawnPrecentage = 100; - this.hostileLevel = 1; - this.fastSummon = false; // Show prowling - } -} - -// Enemy instance -class Enemy { - constructor(type) { - this.state = EnemyState.INACTIVE; - this.type = type; - this.level = 1; - this.health = 420; - this.speed = 21; - this.strength = 33; - this.stash = 0; - this.fleeTime = undefined; - this.guid = undefined; - this.deletePrevMessage = false; - } - - // Creates flee time by randomization - get randomFleeTime() { - var randomFleeTime; - randomFleeTime = calcRandom.random(3 * 60 * 1000, 6 * 60 * 1000); - randomFleeTime -= (randomFleeTime % 1000); - return randomFleeTime; - } -} - -var enemyBatchCollection = []; - -// Spawning patterns -var spawnPatterns = { - "types": ['default', 'randomBatch2'], - "default": { - "ravager": { - "amount": 1 - }, - "type": "incrememt" - }, - "randomBatch2": { - "amount": 2, - "type": "incrememt" - } -} - -var socketReady = false; -socket.on('spawn', (data) => { - if (!socketReady) return; - - console.log(JSON.stringify(data, null, 4)); - console.log(`Summoning enemies...`); - - // Spawns - summonEnemy(data); - -}); - -// The ready event is vital, it means that your bot will only start reacting to information -// from Discord _after_ ready is emitted -client.on('ready', async () => { - socketReady = true; - - // Generates invite link - try { - let link = await client.generateInvite(["ADMINISTRATOR"]); - console.log("Invite Link: " + link); - } catch(e) { - console.log(e.stack); - } - - // You can set status to 'online', 'invisible', 'away', or 'dnd' (do not disturb) - client.user.setStatus('invisible'); - // Sets your "Playing" - if (npcSettings.activity) { - client.user.setActivity(npcSettings.activity, { type: npcSettings.type }) - .then(presence => console.log(`Activity set to ${presence.game ? presence.game.name : 'none'}`)) - .catch(console.error); - } - - console.log(`Connected! \ - \nLogged in as: ${client.user.username} - (${client.user.id})`); - - // Corrects Ravager username - if (client.user.username == "Raveger") { - const newName = "Ravager"; - console.log("Username is Raveger! Typos are NOT(?) cannon, so better change stuff.\nAttempting rename to " + newName + "..."); - - // Set username - client.user.setUsername(newName) - .then(user => console.log(`Success! New username is now ${user.username}.`)) - .catch(console.error); - - // Changes nickname - client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id).setNickname(""); - } -}); - -// Create an event listener for messages -client.on('message', async message => { - // Ignores ALL bot messages - if (message.author.bot) return; - // Message has to be in Outskirts (should be edited later) - if (!(message.channel.id === process.env.DEADLANDS_CHANNEL_ID - || message.channel.id === process.env.TEST_CHANNEL_ID)) return; - // Has to be (prefix)command - if (message.content.indexOf(process.env.PREFIX) !== 0) return; - - // "This is the best way to define args. Trust me." - // - Some tutorial dude on the internet - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - - switch (command) { - case "ping": - if (isAdmin(message.author.id)) - message.reply("***...MRGRGRGR!***"); - break; - case npcSettings.id: - if (args[0].toLowerCase() === "summon" && isAdmin(message.author.id)) { - generateEnemy(process.env.DEADLANDS_CHANNEL_ID); - } - break; - } -}); - -client.on('error', console.error); - -cron.schedule('*/10 * * * *', function() { - -}); - -async function generateEnemy(channelID) { - console.log("Generating enemy...") - - // Gets an enemy batch instance, or creates if non-existant - var index = enemyBatchCollection.findIndex(data => data.channel === channelID); - var enemyBatch; - console.log(index <= -1) - if (index <= -1) { - enemyBatch = new EnemyBatchInstance(channelID); - } else { - enemyBatch = enemyBatchCollection[index]; - } - - // Generate a spawn pattern - var randomSpawnPattern = spawnPatterns.types[calcRandom.randomExc(0, spawnPatterns.types.length)]; - var newSpawnPattern = spawnPatterns[randomSpawnPattern]; - newSpawnPattern = spawnPatterns["default"]; // Overruled! - - // Creates a bunch of new enemies - var amount = newSpawnPattern[npcSettings.id].amount; - var newEnemies = []; - for (let i = 0; i < amount; i++) { - var enemy = new Enemy(npcSettings.id); - var elevel = enemyBatch.hostileLevel; - - // Replication of newHostile in sendData.php - const healthBase = 50; const strengthBase = 3; const speedBase = 3; const stashBase = 3; - - const healthMin = (healthBase * elevel) / 2; - const healthMax = healthBase * elevel; - - const strengthMin = (strengthBase * elevel) / 2; - const strengthMax = strengthBase * elevel; - - const speedMin = (speedBase * elevel) / 2; - const speedMax = speedBase * elevel; - - const stashMin = (stashBase * elevel) / 2; - const stashMax = stashBase * elevel; - - const health = Math.floor(calcRandom.randomExc(healthMin, healthMax)); - const strength = Math.floor(calcRandom.randomExc(strengthMin, strengthMax)); - const speed = Math.floor(calcRandom.randomExc(speedMin, speedMax)); - const stash = Math.floor(calcRandom.randomExc(stashMin, stashMax)); - - enemy.level = elevel; - enemy.health = health; - enemy.strength = strength; - enemy.speed = speed; - enemy.stash = stash; - enemy.state = EnemyState.PROWLING; - enemy.fleeTime = enemy.randomFleeTime; - enemy.guid = guidGenerator(); - - // Logs stats - console.log(`\n[===== | Enemy Stats | =====]`); - console.log(`HEALTH: ${health} > ${healthMin} - ${healthMax}`); - console.log(`STRENGTH: ${strength} > ${strengthMin} - ${strengthMax}`); - console.log(`SPEED: ${speed} > ${speedMin} - ${speedMax}`); - console.log(`STASH: ${stash} > ${stashMin} - ${stashMax}`); - console.log(`[===========================]\n`); - newEnemies.push(enemy); - } - enemyBatch.enemies = newEnemies; - enemyBatch.hostileLevel++; - - console.log(JSON.stringify(newEnemies, null, 2)); - - if (calcRandom.gamble(enemyBatch.spawnPrecentage)) { - enemyBatch.spawnPrecentage = 50; - - // Creation of Ravager timer - var creationTime = calcRandom.random(35000, 540000); - creationTime = 3 * 1000; // shortcuts - - console.log(`[Enemy Spawn] ${amount} "${npcSettings.id}" will be created in ${fmtMSS(creationTime / 1000)} min.`); - await sleep(creationTime); - console.log(`[Enemy Spawn] ${amount} "${npcSettings.id}" has spawned!`); - summonEnemy(enemyBatch); - - enemyBatch.hostileLevel++; - } else { - console.log("[Enemy Spawn] Fail to spawn. Adding 10% more to chances."); - enemyBatch.spawnPrecentage += 10; - } -} - -// Turn online and turn offline -async function summonEnemy(data) { - // If timer exists, do outpost - const summonTime = 4; // 4 is debug, normal is 35 - if (!data.fastSummon) { - console.log(`Summoning Ravager... waiting for ${summonTime} seconds.`); - client.user.setStatus('online'); - client.user.setActivity(`Prowling...`); - - // Sets prowling states on the Ravagers - for (let i = 0; i < data.enemies.length; i++) { - const element = data.enemies[i]; - element.state = EnemyState.PROWLING; - } - - // Notification code - // TODO - - await sleep(summonTime * 1000); - } - console.log("Enemy has spawned!"); - - // Goes thru all enemies in array - for (let i = 0; i < data.enemies.length; i++) { - const element = data.enemies[i]; - const hostileStats = `LVL: ${element.level} | HP: ${element.health} | STR: ${element.strength} | SPD: ${element.speed}`; - - const ravagerMember = client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id); - const appearanceEmbed = new Discord.RichEmbed() - .setAuthor(ravagerMember.displayName, client.user.avatarURL) - .setColor(ravagerMember.displayColor) - .setDescription(`${healthbar(element.health, element.health)}\n` + "```" + hostileStats + "```") - - var newMessage = await client.channels.get(data.channel).send(getDialog("onTheProwl"), {embed: appearanceEmbed}); - await client.user.setStatus('online'); - await client.user.setActivity(hostileStats); - - for (let i = 0; i < data.enemies.length; i++) { - const element = data.enemies[i]; - element.state = EnemyState.ACTIVE; - } - enemyTimer(element, data, data.channel, element.fleeTime, newMessage); - } -} - -// Counts down -async function enemyTimer(newEnemy, data, channel, fleeTime, newMessage) { - function addUserToArray(userID) { - attackingUsers.push(userID); - } - - async function sendReactions(options) { - // Sends reactions - for (let i = 0; i < options.length; i++) { - const element = options[i]; - //console.log("[Reaction Options] Emote: " + element + " | newMessage: " + newMessage); - await newMessage.react(element); - } - } - - console.log(`Waiting for the next ${fmtMSS(fleeTime / 1000)} min. to check if Ravager has been killed. ${fleeTime}`); - - const ravagerMember = client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id); - const interactionEmbed = new Discord.RichEmbed() - .setColor(ravagerMember.displayColor) - .setTitle("Status") - .setDescription("...") - - const sendMessageMinimum = true; - var isReadyToFlee = false; - var attackingUsers = []; - var tempAttackUsers = ""; - var newChannel = client.channels.get(channel); - var interactionMessage = await newChannel.send({embed: interactionEmbed}); - - // Possible reaction attacks can go here - var options = ['πŸ’₯', 'πŸ‡¦', 'πŸ‡§', 'πŸ‡¨'] - - // System for no message sending except the minimum - if (sendMessageMinimum) { - // Collects emotes and reacts upon the reaction - const collector = newMessage.createReactionCollector( - (reaction, user) => options.includes(reaction.emoji.name) && user.id !== client.user.id); - - sendReactions(options); - - // Collect - collector.on("collect", async reaction => { - var user = reaction.users.last(); - - // Just in case, I managed to bug out Ravager to display its own name. - if (user.id === client.user.id) { - console.log("Well then. It bypassed the collector filter, we're stopping the Ravager from attacking itself. Would be interesting though!"); - return; - } - - // Send damage to server - // TODO - - tempAttackUsers += `${user} :crossed_swords: 11 DAM | <:hitback:460969716580745236> MISS (150/150)\n`; - addUserToArray(user.id); - console.log("Collecting a user! " + user.username) - }); - - // Ends - collector.once("end", async collector => { - console.log("Ended collector.") - flee(newEnemy, data, client.channels.get(channel)); - }); - - // Goes every 4 seconds - var emoteRefresh = setInterval(async () => { - await newMessage.clearReactions(); - - if (isReadyToFlee && newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log("Has fled!"); - //interactionEmbed.setDescription("πŸ‘£ The Ravager has fled...") - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - clearInterval(emoteRefresh); - collector.stop(); - } else { - console.log("Sending refreshed embed... |" + tempAttackUsers + "|") - if (tempAttackUsers === "") tempAttackUsers = "..."; - interactionEmbed.setDescription(tempAttackUsers); - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - sendReactions(options); - } - - tempAttackUsers = ""; - }, 5 * 1000); - - - // Waits to see if killed, and if not send a fleeing message - await sleep(fleeTime); - if (newEnemy.state === EnemyState.ACTIVE) { - newChannel.send("**YOU ARE WEAK. THERE IS NO CHALLENGE FOR ME HERE.**\n:bangbang:***ATTEMPTING TO FLEE...***"); - await sleep(20 * 1000); - - // If still there despawn - if (newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log('Hostile is now able to flee, now awaiting for collector to finish.'); - isReadyToFlee = true; - } - } - } else { - // Collects emotes and reacts upon the reaction - var collector = newMessage.createReactionCollector( - (reaction, user) => options.includes(reaction.emoji.name) && user.id !== client.user.id); - - sendReactions(options); - - // Collect - collector.on("collect", async reaction => { - var user = reaction.users.last(); - - // Just in case, I managed to bug out Ravager to display its own name. - if (user.id === client.user.id) { - console.log("Well then. It bypassed the collector filter, we're stopping the Ravager from attacking itself. Would be interesting though!"); - return; - } - - // Send damage to server - // TODO - - tempAttackUsers += `${user} :crossed_swords: 11 DAM | <:hitback:460969716580745236> MISS (150/150)\n`; - addUserToArray(user.id); - console.log("Collecting a user! " + user.username) - }); - - // Ends - collector.once("end", async collector => { - console.log("Ended collector.") - flee(newEnemy, data, client.channels.get(channel)); - }); - - // Goes every 4 seconds - var emoteRefresh = setInterval(async () => { - await newMessage.clearReactions(); - - if (isReadyToFlee && newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log("Has fled!"); - //interactionEmbed.setDescription("πŸ‘£ The Ravager has fled...") - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - clearInterval(emoteRefresh); - collector.stop(); - } else { - console.log("Sending refreshed embed... |" + tempAttackUsers + "|") - if (tempAttackUsers === "") tempAttackUsers = "..."; - interactionEmbed.setDescription(tempAttackUsers); - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - sendReactions(options); - } - - tempAttackUsers = ""; - }, 5 * 1000); - - - // Waits to see if killed, and if not send a fleeing message - await sleep(fleeTime); - if (newEnemy.state === EnemyState.ACTIVE) { - newChannel.send("**YOU ARE WEAK. THERE IS NO CHALLENGE FOR ME HERE.**\n:bangbang:***ATTEMPTING TO FLEE...***"); - await sleep(20 * 1000); - - // If still there despawn - if (newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log('Hostile is now able to flee, now awaiting for collector to finish.'); - isReadyToFlee = true; - } - } - } -} - -// Does flee sequence -async function flee(newEnemy, data, newChannel) { - newChannel.send("**THE POOR, ILL-EQUIPPED TRAVELERS PUT UP NO FIGHT...**\n:footprints:***RETURNS TO THE WILD. ***"); - socket.emit('fled', { - data: data, - ravager: newEnemy - }); - - if (data.length < 1) { - await client.user.setPresence('invisible'); - client.user.setActivity('Prowling...'); - } - - console.log(data); -} - -// Health bar -function healthbar(health, maxHealth) { - var heartHealthAmount = 30; - var printString = ""; - var amountMultiple = 0; - var timesToLoop = Math.floor(maxHealth / heartHealthAmount); - for (var i = 0; i < timesToLoop; i++) { - amountMultiple = i * heartHealthAmount; - if (amountMultiple < health) { - printString += ":heart: "; - } else { - printString += ":black_heart:"; - } - } - printString += " (" + health + "/" + maxHealth + ")"; - return printString; -} - -// Async Waiting -function sleep(time) { - return new Promise((resolve, reject) => { - setTimeout(resolve, time); - }); -} - -// Gets if user has an Overseers rank -function isAdmin(userID) { - var guild = client.guilds.get(process.env.SANCTUM_ID); - return guild.members.get(userID).roles.find(role => role.name === "Overseers"); -} - -// https://stackoverflow.com/questions/3733227/javascript-seconds-to-minutes-and-seconds -function fmtMSS(s){ // accepts seconds as Number or String. Returns m:ss - return( s - // take value s and subtract (will try to convert String to Number) - ( s %= 60 ) // the new value of s, now holding the remainder of s divided by 60 - // (will also try to convert String to Number) - ) / 60 + ( // and divide the resulting Number by 60 - // (can never result in a fractional value = no need for rounding) - // to which we concatenate a String (converts the Number to String) - // who's reference is chosen by the conditional operator: - 9 < s // if seconds is larger than 9 - ? ':' // then we don't need to prepend a zero - : ':0' // else we do need to prepend a zero - ) + s ; // and we add Number s to the string (converting it to String as well) -} - -// https://stackoverflow.com/questions/6860853/generate-random-string-for-div-id/6860916#6860916 -function guidGenerator() { - var S4 = function() { - return (((1+Math.random())*0x10000)|0).toString(16).substring(1); - }; - return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4()); -} - -function getDialog(dialogTag, data = "", data2 = "") { - switch(dialogTag) { - case "onTheProwl": - var dialogOptions = [ - 'THE AIR SMELLS OF BLOOD.', - 'LOOKS LIKE MEAT\'S BACK ON THE MENU BOYS.', - 'FRESH MEAAAATTTT.', - 'TONIGHT WE DINE ON TRAVELER FLESSHHHH.', - 'SKULL CRUSHING IS MY FAVORITE SPORT.', - 'HUNGRY...', - 'TRAVELERS MAKE GOOD MEEEAAAAT!', - 'PUNY TRAVELER THINKS THEY CAN FIGHT?!', - 'HUNT THEM ALL DOWN.', - 'I HUNGER FOR THE TASTE OF FLESH.' - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - return "***" + dialogOptions[randomNumber] + "***"; - - case "ravagerHit": - var dialogOptions = [ - 'STAGGERS BACK', - 'FALLS BACKWARDS', - 'CHARGES FORWARD CONFUSED', - 'LOOKS FOR THE SOURCE OF THE HIT', - 'FALLS FORWARDS', - 'BLOCKS ITS FACE', - 'STUMBLES BACKWARDS IN CONFUSION', - 'LUNGES FORWARD DISTRACTED', - 'BITES AT IT\'S ATTACKER', - 'CHECKS IT\'S WOUND' - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - return `***${dialogOptions[randomNumber]}***`; - } -} - -// Log our bot in (change the token by looking into the .env file) -client.login(process.env.RAVAGER_TOKEN); \ No newline at end of file diff --git a/Enemy_Crow/npcSettings.js b/Enemy_Crow/npcSettings.js deleted file mode 100644 index 17ec69b..0000000 --- a/Enemy_Crow/npcSettings.js +++ /dev/null @@ -1,9 +0,0 @@ -require('dotenv').config({path: '../.env'}); - -module.exports = { - id: "crow", - activity: "Cawing in the distance...", - type: "PLAYING", - token: process.env.CROW_TOKEN, - botChannel: process.env.CRYSTAL_SHORES -} diff --git a/Enemy_Crow/package.json b/Enemy_Crow/package.json deleted file mode 100644 index 69163ab..0000000 --- a/Enemy_Crow/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "sanctum-deploypackage", - "version": "1.0.1", - "description": "Universal package for all SANCTUM bots, using pm2.", - "main": "", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "echo \"Error: you need to use the bot name as a command.\" && exit 1", - "alexis": "pm2 start alexis.js -i max --watch", - "graze": "pm2 start graze.js -i max --watch", - "librarian": "pm2 start librarian.js -i max --watch", - "mainframe": "pm2 start mainframe.js -i max --watch", - "mori": "pm2 start mori.js -i max --watch", - "mosiah": "pm2 start mosiah.js -i max --watch", - "ravager": "pm2 start ravager.js -i max --watch", - "rey": "pm2 start rey.js -i max --watch", - "troll": "pm2 start troll.js -i max --watch" - }, - "author": "", - "license": "ISC", - "dependencies": { - "discord.js": "^11.4.2", - "dotenv": "^6.0.0", - "express": "^4.16.3", - "node-cron": "^1.2.1", - "socket.io": "^2.1.1", - "socket.io-request": "^0.8.0" - } -} diff --git a/Enemy_Ravager/enemy-ravager.js b/Enemy_Ravager/enemy-ravager.js deleted file mode 100644 index bf3ee8e..0000000 --- a/Enemy_Ravager/enemy-ravager.js +++ /dev/null @@ -1,571 +0,0 @@ -// .env Variables -require('dotenv').config({path: '../.env'}); - -// Node Modules -const Discord = require('discord.js'); -const client = new Discord.Client(); -const cron = require('node-cron'); -const io = require('socket.io-client'); - -// Make connection -var socket = io.connect('http://localhost:80'); - -// Bot Modules -const npcSettings = require('./npcSettings') -const dataRequest = require('../modules/dataRequest'); -const calcRandom = require('../modules/calcRandom'); - -// State Machine -var EnemyState = { - INACTIVE: 0, - PROWLING: 1, - ACTIVE: 2, - UNCONSCIOUS: 3 -} - -// Enemy lists -class EnemyBatchInstance { - constructor(channel) { - this.state = EnemyState.INACTIVE; - this.enemies = []; // Array of `new Enemy()`s - this.channel = channel; // Channel of spawning - this.spawnPrecentage = 100; - this.hostileLevel = 1; - this.fastSummon = false; // Show prowling - } -} - -// Enemy instance -class Enemy { - constructor(type) { - this.state = EnemyState.INACTIVE; - this.type = type; - this.level = 1; - this.health = 420; - this.speed = 21; - this.strength = 33; - this.stash = 0; - this.fleeTime = undefined; - this.guid = undefined; - this.deletePrevMessage = false; - } - - // Creates flee time by randomization - get randomFleeTime() { - var randomFleeTime; - randomFleeTime = calcRandom.random(3 * 60 * 1000, 6 * 60 * 1000); - randomFleeTime -= (randomFleeTime % 1000); - return randomFleeTime; - } -} - -var enemyBatchCollection = []; - -// Spawning patterns -var spawnPatterns = { - "types": ['default', 'randomBatch2'], - "default": { - "ravager": { - "amount": 1 - }, - "type": "incrememt" - }, - "randomBatch2": { - "amount": 2, - "type": "incrememt" - } -} - -var socketReady = false; -socket.on('spawn', (data) => { - if (!socketReady) return; - - console.log(JSON.stringify(data, null, 4)); - console.log(`Summoning enemies...`); - - // Spawns - summonEnemy(data); - -}); - -// The ready event is vital, it means that your bot will only start reacting to information -// from Discord _after_ ready is emitted -client.on('ready', async () => { - socketReady = true; - - // Generates invite link - try { - let link = await client.generateInvite(["ADMINISTRATOR"]); - console.log("Invite Link: " + link); - } catch(e) { - console.log(e.stack); - } - - // You can set status to 'online', 'invisible', 'away', or 'dnd' (do not disturb) - client.user.setStatus('invisible'); - // Sets your "Playing" - if (npcSettings.activity) { - client.user.setActivity(npcSettings.activity, { type: npcSettings.type }) - .then(presence => console.log(`Activity set to ${presence.game ? presence.game.name : 'none'}`)) - .catch(console.error); - } - - console.log(`Connected! \ - \nLogged in as: ${client.user.username} - (${client.user.id})`); - - // Corrects Ravager username - if (client.user.username == "Raveger") { - const newName = "Ravager"; - console.log("Username is Raveger! Typos are NOT(?) cannon, so better change stuff.\nAttempting rename to " + newName + "..."); - - // Set username - client.user.setUsername(newName) - .then(user => console.log(`Success! New username is now ${user.username}.`)) - .catch(console.error); - - // Changes nickname - client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id).setNickname(""); - } -}); - -// Create an event listener for messages -client.on('message', async message => { - // Ignores ALL bot messages - if (message.author.bot) return; - // Message has to be in Outskirts (should be edited later) - if (!(message.channel.id === process.env.DEADLANDS_CHANNEL_ID - || message.channel.id === process.env.TEST_CHANNEL_ID)) return; - // Has to be (prefix)command - if (message.content.indexOf(process.env.PREFIX) !== 0) return; - - // "This is the best way to define args. Trust me." - // - Some tutorial dude on the internet - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - - switch (command) { - case "ping": - if (isAdmin(message.author.id)) - message.reply("***...MRGRGRGR!***"); - break; - case npcSettings.id: - if (args[0].toLowerCase() === "summon" && isAdmin(message.author.id)) { - generateEnemy(process.env.DEADLANDS_CHANNEL_ID); - } - break; - } -}); - -client.on('error', console.error); - -cron.schedule('*/10 * * * *', function() { - -}); - -async function generateEnemy(channelID) { - console.log("Generating enemy...") - - // Gets an enemy batch instance, or creates if non-existant - var index = enemyBatchCollection.findIndex(data => data.channel === channelID); - var enemyBatch; - console.log(index <= -1) - if (index <= -1) { - enemyBatch = new EnemyBatchInstance(channelID); - } else { - enemyBatch = enemyBatchCollection[index]; - } - - // Generate a spawn pattern - var randomSpawnPattern = spawnPatterns.types[calcRandom.randomExc(0, spawnPatterns.types.length)]; - var newSpawnPattern = spawnPatterns[randomSpawnPattern]; - newSpawnPattern = spawnPatterns["default"]; // Overruled! - - // Creates a bunch of new enemies - var amount = newSpawnPattern[npcSettings.id].amount; - var newEnemies = []; - for (let i = 0; i < amount; i++) { - var enemy = new Enemy(npcSettings.id); - var elevel = enemyBatch.hostileLevel; - - // Replication of newHostile in sendData.php - const healthBase = 50; const strengthBase = 3; const speedBase = 3; const stashBase = 3; - - const healthMin = (healthBase * elevel) / 2; - const healthMax = healthBase * elevel; - - const strengthMin = (strengthBase * elevel) / 2; - const strengthMax = strengthBase * elevel; - - const speedMin = (speedBase * elevel) / 2; - const speedMax = speedBase * elevel; - - const stashMin = (stashBase * elevel) / 2; - const stashMax = stashBase * elevel; - - const health = Math.floor(calcRandom.randomExc(healthMin, healthMax)); - const strength = Math.floor(calcRandom.randomExc(strengthMin, strengthMax)); - const speed = Math.floor(calcRandom.randomExc(speedMin, speedMax)); - const stash = Math.floor(calcRandom.randomExc(stashMin, stashMax)); - - enemy.level = elevel; - enemy.health = health; - enemy.strength = strength; - enemy.speed = speed; - enemy.stash = stash; - enemy.state = EnemyState.PROWLING; - enemy.fleeTime = enemy.randomFleeTime; - enemy.guid = guidGenerator(); - - // Logs stats - console.log(`\n[===== | Enemy Stats | =====]`); - console.log(`HEALTH: ${health} > ${healthMin} - ${healthMax}`); - console.log(`STRENGTH: ${strength} > ${strengthMin} - ${strengthMax}`); - console.log(`SPEED: ${speed} > ${speedMin} - ${speedMax}`); - console.log(`STASH: ${stash} > ${stashMin} - ${stashMax}`); - console.log(`[===========================]\n`); - newEnemies.push(enemy); - } - enemyBatch.enemies = newEnemies; - enemyBatch.hostileLevel++; - - console.log(JSON.stringify(newEnemies, null, 2)); - - if (calcRandom.gamble(enemyBatch.spawnPrecentage)) { - enemyBatch.spawnPrecentage = 50; - - // Creation of Ravager timer - var creationTime = calcRandom.random(35000, 540000); - creationTime = 3 * 1000; // shortcuts - - console.log(`[Enemy Spawn] ${amount} "${npcSettings.id}" will be created in ${fmtMSS(creationTime / 1000)} min.`); - await sleep(creationTime); - console.log(`[Enemy Spawn] ${amount} "${npcSettings.id}" has spawned!`); - summonEnemy(enemyBatch); - - enemyBatch.hostileLevel++; - } else { - console.log("[Enemy Spawn] Fail to spawn. Adding 10% more to chances."); - enemyBatch.spawnPrecentage += 10; - } -} - -// Turn online and turn offline -async function summonEnemy(data) { - // If timer exists, do outpost - const summonTime = 4; // 4 is debug, normal is 35 - if (!data.fastSummon) { - console.log(`Summoning Ravager... waiting for ${summonTime} seconds.`); - client.user.setStatus('online'); - client.user.setActivity(`Prowling...`); - - // Sets prowling states on the Ravagers - for (let i = 0; i < data.enemies.length; i++) { - const element = data.enemies[i]; - element.state = EnemyState.PROWLING; - } - - // Notification code - // TODO - - await sleep(summonTime * 1000); - } - console.log("Enemy has spawned!"); - - // Goes thru all enemies in array - for (let i = 0; i < data.enemies.length; i++) { - const element = data.enemies[i]; - const hostileStats = `LVL: ${element.level} | HP: ${element.health} | STR: ${element.strength} | SPD: ${element.speed}`; - - const ravagerMember = client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id); - const appearanceEmbed = new Discord.RichEmbed() - .setAuthor(ravagerMember.displayName, client.user.avatarURL) - .setColor(ravagerMember.displayColor) - .setDescription(`${healthbar(element.health, element.health)}\n` + "```" + hostileStats + "```") - - var newMessage = await client.channels.get(data.channel).send(getDialog("onTheProwl"), {embed: appearanceEmbed}); - await client.user.setStatus('online'); - await client.user.setActivity(hostileStats); - - for (let i = 0; i < data.enemies.length; i++) { - const element = data.enemies[i]; - element.state = EnemyState.ACTIVE; - } - enemyTimer(element, data, data.channel, element.fleeTime, newMessage); - } -} - -// Counts down -async function enemyTimer(newEnemy, data, channel, fleeTime, newMessage) { - function addUserToArray(userID) { - attackingUsers.push(userID); - } - - async function sendReactions(options) { - // Sends reactions - for (let i = 0; i < options.length; i++) { - const element = options[i]; - //console.log("[Reaction Options] Emote: " + element + " | newMessage: " + newMessage); - await newMessage.react(element); - } - } - - console.log(`Waiting for the next ${fmtMSS(fleeTime / 1000)} min. to check if Ravager has been killed. ${fleeTime}`); - - const ravagerMember = client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id); - const interactionEmbed = new Discord.RichEmbed() - .setColor(ravagerMember.displayColor) - .setTitle("Status") - .setDescription("...") - - const sendMessageMinimum = true; - var isReadyToFlee = false; - var attackingUsers = []; - var tempAttackUsers = ""; - var newChannel = client.channels.get(channel); - var interactionMessage = await newChannel.send({embed: interactionEmbed}); - - // Possible reaction attacks can go here - var options = ['πŸ’₯', 'πŸ‡¦', 'πŸ‡§', 'πŸ‡¨'] - - // System for no message sending except the minimum - if (sendMessageMinimum) { - // Collects emotes and reacts upon the reaction - const collector = newMessage.createReactionCollector( - (reaction, user) => options.includes(reaction.emoji.name) && user.id !== client.user.id); - - sendReactions(options); - - // Collect - collector.on("collect", async reaction => { - var user = reaction.users.last(); - - // Just in case, I managed to bug out Ravager to display its own name. - if (user.id === client.user.id) { - console.log("Well then. It bypassed the collector filter, we're stopping the Ravager from attacking itself. Would be interesting though!"); - return; - } - - // Send damage to server - // TODO - - tempAttackUsers += `${user} :crossed_swords: 11 DAM | <:hitback:460969716580745236> MISS (150/150)\n`; - addUserToArray(user.id); - console.log("Collecting a user! " + user.username) - }); - - // Ends - collector.once("end", async collector => { - console.log("Ended collector.") - flee(newEnemy, data, client.channels.get(channel)); - }); - - // Goes every 4 seconds - var emoteRefresh = setInterval(async () => { - await newMessage.clearReactions(); - - if (isReadyToFlee && newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log("Has fled!"); - //interactionEmbed.setDescription("πŸ‘£ The Ravager has fled...") - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - clearInterval(emoteRefresh); - collector.stop(); - } else { - console.log("Sending refreshed embed... |" + tempAttackUsers + "|") - if (tempAttackUsers === "") tempAttackUsers = "..."; - interactionEmbed.setDescription(tempAttackUsers); - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - sendReactions(options); - } - - tempAttackUsers = ""; - }, 5 * 1000); - - - // Waits to see if killed, and if not send a fleeing message - await sleep(fleeTime); - if (newEnemy.state === EnemyState.ACTIVE) { - newChannel.send("**YOU ARE WEAK. THERE IS NO CHALLENGE FOR ME HERE.**\n:bangbang:***ATTEMPTING TO FLEE...***"); - await sleep(20 * 1000); - - // If still there despawn - if (newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log('Hostile is now able to flee, now awaiting for collector to finish.'); - isReadyToFlee = true; - } - } - } else { - // Collects emotes and reacts upon the reaction - var collector = newMessage.createReactionCollector( - (reaction, user) => options.includes(reaction.emoji.name) && user.id !== client.user.id); - - sendReactions(options); - - // Collect - collector.on("collect", async reaction => { - var user = reaction.users.last(); - - // Just in case, I managed to bug out Ravager to display its own name. - if (user.id === client.user.id) { - console.log("Well then. It bypassed the collector filter, we're stopping the Ravager from attacking itself. Would be interesting though!"); - return; - } - - // Send damage to server - // TODO - - tempAttackUsers += `${user} :crossed_swords: 11 DAM | <:hitback:460969716580745236> MISS (150/150)\n`; - addUserToArray(user.id); - console.log("Collecting a user! " + user.username) - }); - - // Ends - collector.once("end", async collector => { - console.log("Ended collector.") - flee(newEnemy, data, client.channels.get(channel)); - }); - - // Goes every 4 seconds - var emoteRefresh = setInterval(async () => { - await newMessage.clearReactions(); - - if (isReadyToFlee && newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log("Has fled!"); - //interactionEmbed.setDescription("πŸ‘£ The Ravager has fled...") - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - clearInterval(emoteRefresh); - collector.stop(); - } else { - console.log("Sending refreshed embed... |" + tempAttackUsers + "|") - if (tempAttackUsers === "") tempAttackUsers = "..."; - interactionEmbed.setDescription(tempAttackUsers); - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - sendReactions(options); - } - - tempAttackUsers = ""; - }, 5 * 1000); - - - // Waits to see if killed, and if not send a fleeing message - await sleep(fleeTime); - if (newEnemy.state === EnemyState.ACTIVE) { - newChannel.send("**YOU ARE WEAK. THERE IS NO CHALLENGE FOR ME HERE.**\n:bangbang:***ATTEMPTING TO FLEE...***"); - await sleep(20 * 1000); - - // If still there despawn - if (newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log('Hostile is now able to flee, now awaiting for collector to finish.'); - isReadyToFlee = true; - } - } - } -} - -// Does flee sequence -async function flee(newEnemy, data, newChannel) { - newChannel.send("**THE POOR, ILL-EQUIPPED TRAVELERS PUT UP NO FIGHT...**\n:footprints:***RETURNS TO THE WILD. ***"); - socket.emit('fled', { - data: data, - ravager: newEnemy - }); - - if (data.length < 1) { - await client.user.setPresence('invisible'); - client.user.setActivity('Prowling...'); - } - - console.log(data); -} - -// Health bar -function healthbar(health, maxHealth) { - var heartHealthAmount = 30; - var printString = ""; - var amountMultiple = 0; - var timesToLoop = Math.floor(maxHealth / heartHealthAmount); - for (var i = 0; i < timesToLoop; i++) { - amountMultiple = i * heartHealthAmount; - if (amountMultiple < health) { - printString += ":heart: "; - } else { - printString += ":black_heart:"; - } - } - printString += " (" + health + "/" + maxHealth + ")"; - return printString; -} - -// Async Waiting -function sleep(time) { - return new Promise((resolve, reject) => { - setTimeout(resolve, time); - }); -} - -// Gets if user has an Overseers rank -function isAdmin(userID) { - var guild = client.guilds.get(process.env.SANCTUM_ID); - return guild.members.get(userID).roles.find(role => role.name === "Overseers"); -} - -// https://stackoverflow.com/questions/3733227/javascript-seconds-to-minutes-and-seconds -function fmtMSS(s){ // accepts seconds as Number or String. Returns m:ss - return( s - // take value s and subtract (will try to convert String to Number) - ( s %= 60 ) // the new value of s, now holding the remainder of s divided by 60 - // (will also try to convert String to Number) - ) / 60 + ( // and divide the resulting Number by 60 - // (can never result in a fractional value = no need for rounding) - // to which we concatenate a String (converts the Number to String) - // who's reference is chosen by the conditional operator: - 9 < s // if seconds is larger than 9 - ? ':' // then we don't need to prepend a zero - : ':0' // else we do need to prepend a zero - ) + s ; // and we add Number s to the string (converting it to String as well) -} - -// https://stackoverflow.com/questions/6860853/generate-random-string-for-div-id/6860916#6860916 -function guidGenerator() { - var S4 = function() { - return (((1+Math.random())*0x10000)|0).toString(16).substring(1); - }; - return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4()); -} - -function getDialog(dialogTag, data = "", data2 = "") { - switch(dialogTag) { - case "onTheProwl": - var dialogOptions = [ - 'THE AIR SMELLS OF BLOOD.', - 'LOOKS LIKE MEAT\'S BACK ON THE MENU BOYS.', - 'FRESH MEAAAATTTT.', - 'TONIGHT WE DINE ON TRAVELER FLESSHHHH.', - 'SKULL CRUSHING IS MY FAVORITE SPORT.', - 'HUNGRY...', - 'TRAVELERS MAKE GOOD MEEEAAAAT!', - 'PUNY TRAVELER THINKS THEY CAN FIGHT?!', - 'HUNT THEM ALL DOWN.', - 'I HUNGER FOR THE TASTE OF FLESH.' - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - return "***" + dialogOptions[randomNumber] + "***"; - - case "ravagerHit": - var dialogOptions = [ - 'STAGGERS BACK', - 'FALLS BACKWARDS', - 'CHARGES FORWARD CONFUSED', - 'LOOKS FOR THE SOURCE OF THE HIT', - 'FALLS FORWARDS', - 'BLOCKS ITS FACE', - 'STUMBLES BACKWARDS IN CONFUSION', - 'LUNGES FORWARD DISTRACTED', - 'BITES AT IT\'S ATTACKER', - 'CHECKS IT\'S WOUND' - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - return `***${dialogOptions[randomNumber]}***`; - } -} - -// Log our bot in (change the token by looking into the .env file) -client.login(process.env.RAVAGER_TOKEN); \ No newline at end of file diff --git a/Enemy_Ravager/npcSettings.js b/Enemy_Ravager/npcSettings.js deleted file mode 100644 index b7bf4de..0000000 --- a/Enemy_Ravager/npcSettings.js +++ /dev/null @@ -1,9 +0,0 @@ -require('dotenv').config({path: '../.env'}); - -module.exports = { - name: "ravager", - activity: "Prowling...", - type: "PLAYING", - token: process.env.RAVAGER_TOKEN, - botChannel: process.env.DEADLANDS_CHANNEL_ID -} diff --git a/Enemy_Ravager/package.json b/Enemy_Ravager/package.json deleted file mode 100644 index 69163ab..0000000 --- a/Enemy_Ravager/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "sanctum-deploypackage", - "version": "1.0.1", - "description": "Universal package for all SANCTUM bots, using pm2.", - "main": "", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "echo \"Error: you need to use the bot name as a command.\" && exit 1", - "alexis": "pm2 start alexis.js -i max --watch", - "graze": "pm2 start graze.js -i max --watch", - "librarian": "pm2 start librarian.js -i max --watch", - "mainframe": "pm2 start mainframe.js -i max --watch", - "mori": "pm2 start mori.js -i max --watch", - "mosiah": "pm2 start mosiah.js -i max --watch", - "ravager": "pm2 start ravager.js -i max --watch", - "rey": "pm2 start rey.js -i max --watch", - "troll": "pm2 start troll.js -i max --watch" - }, - "author": "", - "license": "ISC", - "dependencies": { - "discord.js": "^11.4.2", - "dotenv": "^6.0.0", - "express": "^4.16.3", - "node-cron": "^1.2.1", - "socket.io": "^2.1.1", - "socket.io-request": "^0.8.0" - } -} diff --git a/Enemy_Wolf/enemy-wolf.js b/Enemy_Wolf/enemy-wolf.js deleted file mode 100644 index bf3ee8e..0000000 --- a/Enemy_Wolf/enemy-wolf.js +++ /dev/null @@ -1,571 +0,0 @@ -// .env Variables -require('dotenv').config({path: '../.env'}); - -// Node Modules -const Discord = require('discord.js'); -const client = new Discord.Client(); -const cron = require('node-cron'); -const io = require('socket.io-client'); - -// Make connection -var socket = io.connect('http://localhost:80'); - -// Bot Modules -const npcSettings = require('./npcSettings') -const dataRequest = require('../modules/dataRequest'); -const calcRandom = require('../modules/calcRandom'); - -// State Machine -var EnemyState = { - INACTIVE: 0, - PROWLING: 1, - ACTIVE: 2, - UNCONSCIOUS: 3 -} - -// Enemy lists -class EnemyBatchInstance { - constructor(channel) { - this.state = EnemyState.INACTIVE; - this.enemies = []; // Array of `new Enemy()`s - this.channel = channel; // Channel of spawning - this.spawnPrecentage = 100; - this.hostileLevel = 1; - this.fastSummon = false; // Show prowling - } -} - -// Enemy instance -class Enemy { - constructor(type) { - this.state = EnemyState.INACTIVE; - this.type = type; - this.level = 1; - this.health = 420; - this.speed = 21; - this.strength = 33; - this.stash = 0; - this.fleeTime = undefined; - this.guid = undefined; - this.deletePrevMessage = false; - } - - // Creates flee time by randomization - get randomFleeTime() { - var randomFleeTime; - randomFleeTime = calcRandom.random(3 * 60 * 1000, 6 * 60 * 1000); - randomFleeTime -= (randomFleeTime % 1000); - return randomFleeTime; - } -} - -var enemyBatchCollection = []; - -// Spawning patterns -var spawnPatterns = { - "types": ['default', 'randomBatch2'], - "default": { - "ravager": { - "amount": 1 - }, - "type": "incrememt" - }, - "randomBatch2": { - "amount": 2, - "type": "incrememt" - } -} - -var socketReady = false; -socket.on('spawn', (data) => { - if (!socketReady) return; - - console.log(JSON.stringify(data, null, 4)); - console.log(`Summoning enemies...`); - - // Spawns - summonEnemy(data); - -}); - -// The ready event is vital, it means that your bot will only start reacting to information -// from Discord _after_ ready is emitted -client.on('ready', async () => { - socketReady = true; - - // Generates invite link - try { - let link = await client.generateInvite(["ADMINISTRATOR"]); - console.log("Invite Link: " + link); - } catch(e) { - console.log(e.stack); - } - - // You can set status to 'online', 'invisible', 'away', or 'dnd' (do not disturb) - client.user.setStatus('invisible'); - // Sets your "Playing" - if (npcSettings.activity) { - client.user.setActivity(npcSettings.activity, { type: npcSettings.type }) - .then(presence => console.log(`Activity set to ${presence.game ? presence.game.name : 'none'}`)) - .catch(console.error); - } - - console.log(`Connected! \ - \nLogged in as: ${client.user.username} - (${client.user.id})`); - - // Corrects Ravager username - if (client.user.username == "Raveger") { - const newName = "Ravager"; - console.log("Username is Raveger! Typos are NOT(?) cannon, so better change stuff.\nAttempting rename to " + newName + "..."); - - // Set username - client.user.setUsername(newName) - .then(user => console.log(`Success! New username is now ${user.username}.`)) - .catch(console.error); - - // Changes nickname - client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id).setNickname(""); - } -}); - -// Create an event listener for messages -client.on('message', async message => { - // Ignores ALL bot messages - if (message.author.bot) return; - // Message has to be in Outskirts (should be edited later) - if (!(message.channel.id === process.env.DEADLANDS_CHANNEL_ID - || message.channel.id === process.env.TEST_CHANNEL_ID)) return; - // Has to be (prefix)command - if (message.content.indexOf(process.env.PREFIX) !== 0) return; - - // "This is the best way to define args. Trust me." - // - Some tutorial dude on the internet - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - - switch (command) { - case "ping": - if (isAdmin(message.author.id)) - message.reply("***...MRGRGRGR!***"); - break; - case npcSettings.id: - if (args[0].toLowerCase() === "summon" && isAdmin(message.author.id)) { - generateEnemy(process.env.DEADLANDS_CHANNEL_ID); - } - break; - } -}); - -client.on('error', console.error); - -cron.schedule('*/10 * * * *', function() { - -}); - -async function generateEnemy(channelID) { - console.log("Generating enemy...") - - // Gets an enemy batch instance, or creates if non-existant - var index = enemyBatchCollection.findIndex(data => data.channel === channelID); - var enemyBatch; - console.log(index <= -1) - if (index <= -1) { - enemyBatch = new EnemyBatchInstance(channelID); - } else { - enemyBatch = enemyBatchCollection[index]; - } - - // Generate a spawn pattern - var randomSpawnPattern = spawnPatterns.types[calcRandom.randomExc(0, spawnPatterns.types.length)]; - var newSpawnPattern = spawnPatterns[randomSpawnPattern]; - newSpawnPattern = spawnPatterns["default"]; // Overruled! - - // Creates a bunch of new enemies - var amount = newSpawnPattern[npcSettings.id].amount; - var newEnemies = []; - for (let i = 0; i < amount; i++) { - var enemy = new Enemy(npcSettings.id); - var elevel = enemyBatch.hostileLevel; - - // Replication of newHostile in sendData.php - const healthBase = 50; const strengthBase = 3; const speedBase = 3; const stashBase = 3; - - const healthMin = (healthBase * elevel) / 2; - const healthMax = healthBase * elevel; - - const strengthMin = (strengthBase * elevel) / 2; - const strengthMax = strengthBase * elevel; - - const speedMin = (speedBase * elevel) / 2; - const speedMax = speedBase * elevel; - - const stashMin = (stashBase * elevel) / 2; - const stashMax = stashBase * elevel; - - const health = Math.floor(calcRandom.randomExc(healthMin, healthMax)); - const strength = Math.floor(calcRandom.randomExc(strengthMin, strengthMax)); - const speed = Math.floor(calcRandom.randomExc(speedMin, speedMax)); - const stash = Math.floor(calcRandom.randomExc(stashMin, stashMax)); - - enemy.level = elevel; - enemy.health = health; - enemy.strength = strength; - enemy.speed = speed; - enemy.stash = stash; - enemy.state = EnemyState.PROWLING; - enemy.fleeTime = enemy.randomFleeTime; - enemy.guid = guidGenerator(); - - // Logs stats - console.log(`\n[===== | Enemy Stats | =====]`); - console.log(`HEALTH: ${health} > ${healthMin} - ${healthMax}`); - console.log(`STRENGTH: ${strength} > ${strengthMin} - ${strengthMax}`); - console.log(`SPEED: ${speed} > ${speedMin} - ${speedMax}`); - console.log(`STASH: ${stash} > ${stashMin} - ${stashMax}`); - console.log(`[===========================]\n`); - newEnemies.push(enemy); - } - enemyBatch.enemies = newEnemies; - enemyBatch.hostileLevel++; - - console.log(JSON.stringify(newEnemies, null, 2)); - - if (calcRandom.gamble(enemyBatch.spawnPrecentage)) { - enemyBatch.spawnPrecentage = 50; - - // Creation of Ravager timer - var creationTime = calcRandom.random(35000, 540000); - creationTime = 3 * 1000; // shortcuts - - console.log(`[Enemy Spawn] ${amount} "${npcSettings.id}" will be created in ${fmtMSS(creationTime / 1000)} min.`); - await sleep(creationTime); - console.log(`[Enemy Spawn] ${amount} "${npcSettings.id}" has spawned!`); - summonEnemy(enemyBatch); - - enemyBatch.hostileLevel++; - } else { - console.log("[Enemy Spawn] Fail to spawn. Adding 10% more to chances."); - enemyBatch.spawnPrecentage += 10; - } -} - -// Turn online and turn offline -async function summonEnemy(data) { - // If timer exists, do outpost - const summonTime = 4; // 4 is debug, normal is 35 - if (!data.fastSummon) { - console.log(`Summoning Ravager... waiting for ${summonTime} seconds.`); - client.user.setStatus('online'); - client.user.setActivity(`Prowling...`); - - // Sets prowling states on the Ravagers - for (let i = 0; i < data.enemies.length; i++) { - const element = data.enemies[i]; - element.state = EnemyState.PROWLING; - } - - // Notification code - // TODO - - await sleep(summonTime * 1000); - } - console.log("Enemy has spawned!"); - - // Goes thru all enemies in array - for (let i = 0; i < data.enemies.length; i++) { - const element = data.enemies[i]; - const hostileStats = `LVL: ${element.level} | HP: ${element.health} | STR: ${element.strength} | SPD: ${element.speed}`; - - const ravagerMember = client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id); - const appearanceEmbed = new Discord.RichEmbed() - .setAuthor(ravagerMember.displayName, client.user.avatarURL) - .setColor(ravagerMember.displayColor) - .setDescription(`${healthbar(element.health, element.health)}\n` + "```" + hostileStats + "```") - - var newMessage = await client.channels.get(data.channel).send(getDialog("onTheProwl"), {embed: appearanceEmbed}); - await client.user.setStatus('online'); - await client.user.setActivity(hostileStats); - - for (let i = 0; i < data.enemies.length; i++) { - const element = data.enemies[i]; - element.state = EnemyState.ACTIVE; - } - enemyTimer(element, data, data.channel, element.fleeTime, newMessage); - } -} - -// Counts down -async function enemyTimer(newEnemy, data, channel, fleeTime, newMessage) { - function addUserToArray(userID) { - attackingUsers.push(userID); - } - - async function sendReactions(options) { - // Sends reactions - for (let i = 0; i < options.length; i++) { - const element = options[i]; - //console.log("[Reaction Options] Emote: " + element + " | newMessage: " + newMessage); - await newMessage.react(element); - } - } - - console.log(`Waiting for the next ${fmtMSS(fleeTime / 1000)} min. to check if Ravager has been killed. ${fleeTime}`); - - const ravagerMember = client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id); - const interactionEmbed = new Discord.RichEmbed() - .setColor(ravagerMember.displayColor) - .setTitle("Status") - .setDescription("...") - - const sendMessageMinimum = true; - var isReadyToFlee = false; - var attackingUsers = []; - var tempAttackUsers = ""; - var newChannel = client.channels.get(channel); - var interactionMessage = await newChannel.send({embed: interactionEmbed}); - - // Possible reaction attacks can go here - var options = ['πŸ’₯', 'πŸ‡¦', 'πŸ‡§', 'πŸ‡¨'] - - // System for no message sending except the minimum - if (sendMessageMinimum) { - // Collects emotes and reacts upon the reaction - const collector = newMessage.createReactionCollector( - (reaction, user) => options.includes(reaction.emoji.name) && user.id !== client.user.id); - - sendReactions(options); - - // Collect - collector.on("collect", async reaction => { - var user = reaction.users.last(); - - // Just in case, I managed to bug out Ravager to display its own name. - if (user.id === client.user.id) { - console.log("Well then. It bypassed the collector filter, we're stopping the Ravager from attacking itself. Would be interesting though!"); - return; - } - - // Send damage to server - // TODO - - tempAttackUsers += `${user} :crossed_swords: 11 DAM | <:hitback:460969716580745236> MISS (150/150)\n`; - addUserToArray(user.id); - console.log("Collecting a user! " + user.username) - }); - - // Ends - collector.once("end", async collector => { - console.log("Ended collector.") - flee(newEnemy, data, client.channels.get(channel)); - }); - - // Goes every 4 seconds - var emoteRefresh = setInterval(async () => { - await newMessage.clearReactions(); - - if (isReadyToFlee && newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log("Has fled!"); - //interactionEmbed.setDescription("πŸ‘£ The Ravager has fled...") - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - clearInterval(emoteRefresh); - collector.stop(); - } else { - console.log("Sending refreshed embed... |" + tempAttackUsers + "|") - if (tempAttackUsers === "") tempAttackUsers = "..."; - interactionEmbed.setDescription(tempAttackUsers); - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - sendReactions(options); - } - - tempAttackUsers = ""; - }, 5 * 1000); - - - // Waits to see if killed, and if not send a fleeing message - await sleep(fleeTime); - if (newEnemy.state === EnemyState.ACTIVE) { - newChannel.send("**YOU ARE WEAK. THERE IS NO CHALLENGE FOR ME HERE.**\n:bangbang:***ATTEMPTING TO FLEE...***"); - await sleep(20 * 1000); - - // If still there despawn - if (newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log('Hostile is now able to flee, now awaiting for collector to finish.'); - isReadyToFlee = true; - } - } - } else { - // Collects emotes and reacts upon the reaction - var collector = newMessage.createReactionCollector( - (reaction, user) => options.includes(reaction.emoji.name) && user.id !== client.user.id); - - sendReactions(options); - - // Collect - collector.on("collect", async reaction => { - var user = reaction.users.last(); - - // Just in case, I managed to bug out Ravager to display its own name. - if (user.id === client.user.id) { - console.log("Well then. It bypassed the collector filter, we're stopping the Ravager from attacking itself. Would be interesting though!"); - return; - } - - // Send damage to server - // TODO - - tempAttackUsers += `${user} :crossed_swords: 11 DAM | <:hitback:460969716580745236> MISS (150/150)\n`; - addUserToArray(user.id); - console.log("Collecting a user! " + user.username) - }); - - // Ends - collector.once("end", async collector => { - console.log("Ended collector.") - flee(newEnemy, data, client.channels.get(channel)); - }); - - // Goes every 4 seconds - var emoteRefresh = setInterval(async () => { - await newMessage.clearReactions(); - - if (isReadyToFlee && newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log("Has fled!"); - //interactionEmbed.setDescription("πŸ‘£ The Ravager has fled...") - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - clearInterval(emoteRefresh); - collector.stop(); - } else { - console.log("Sending refreshed embed... |" + tempAttackUsers + "|") - if (tempAttackUsers === "") tempAttackUsers = "..."; - interactionEmbed.setDescription(tempAttackUsers); - if (interactionMessage) await interactionMessage.edit({embed: interactionEmbed}); - sendReactions(options); - } - - tempAttackUsers = ""; - }, 5 * 1000); - - - // Waits to see if killed, and if not send a fleeing message - await sleep(fleeTime); - if (newEnemy.state === EnemyState.ACTIVE) { - newChannel.send("**YOU ARE WEAK. THERE IS NO CHALLENGE FOR ME HERE.**\n:bangbang:***ATTEMPTING TO FLEE...***"); - await sleep(20 * 1000); - - // If still there despawn - if (newEnemy.state !== EnemyState.UNCONSCIOUS) { - console.log('Hostile is now able to flee, now awaiting for collector to finish.'); - isReadyToFlee = true; - } - } - } -} - -// Does flee sequence -async function flee(newEnemy, data, newChannel) { - newChannel.send("**THE POOR, ILL-EQUIPPED TRAVELERS PUT UP NO FIGHT...**\n:footprints:***RETURNS TO THE WILD. ***"); - socket.emit('fled', { - data: data, - ravager: newEnemy - }); - - if (data.length < 1) { - await client.user.setPresence('invisible'); - client.user.setActivity('Prowling...'); - } - - console.log(data); -} - -// Health bar -function healthbar(health, maxHealth) { - var heartHealthAmount = 30; - var printString = ""; - var amountMultiple = 0; - var timesToLoop = Math.floor(maxHealth / heartHealthAmount); - for (var i = 0; i < timesToLoop; i++) { - amountMultiple = i * heartHealthAmount; - if (amountMultiple < health) { - printString += ":heart: "; - } else { - printString += ":black_heart:"; - } - } - printString += " (" + health + "/" + maxHealth + ")"; - return printString; -} - -// Async Waiting -function sleep(time) { - return new Promise((resolve, reject) => { - setTimeout(resolve, time); - }); -} - -// Gets if user has an Overseers rank -function isAdmin(userID) { - var guild = client.guilds.get(process.env.SANCTUM_ID); - return guild.members.get(userID).roles.find(role => role.name === "Overseers"); -} - -// https://stackoverflow.com/questions/3733227/javascript-seconds-to-minutes-and-seconds -function fmtMSS(s){ // accepts seconds as Number or String. Returns m:ss - return( s - // take value s and subtract (will try to convert String to Number) - ( s %= 60 ) // the new value of s, now holding the remainder of s divided by 60 - // (will also try to convert String to Number) - ) / 60 + ( // and divide the resulting Number by 60 - // (can never result in a fractional value = no need for rounding) - // to which we concatenate a String (converts the Number to String) - // who's reference is chosen by the conditional operator: - 9 < s // if seconds is larger than 9 - ? ':' // then we don't need to prepend a zero - : ':0' // else we do need to prepend a zero - ) + s ; // and we add Number s to the string (converting it to String as well) -} - -// https://stackoverflow.com/questions/6860853/generate-random-string-for-div-id/6860916#6860916 -function guidGenerator() { - var S4 = function() { - return (((1+Math.random())*0x10000)|0).toString(16).substring(1); - }; - return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4()); -} - -function getDialog(dialogTag, data = "", data2 = "") { - switch(dialogTag) { - case "onTheProwl": - var dialogOptions = [ - 'THE AIR SMELLS OF BLOOD.', - 'LOOKS LIKE MEAT\'S BACK ON THE MENU BOYS.', - 'FRESH MEAAAATTTT.', - 'TONIGHT WE DINE ON TRAVELER FLESSHHHH.', - 'SKULL CRUSHING IS MY FAVORITE SPORT.', - 'HUNGRY...', - 'TRAVELERS MAKE GOOD MEEEAAAAT!', - 'PUNY TRAVELER THINKS THEY CAN FIGHT?!', - 'HUNT THEM ALL DOWN.', - 'I HUNGER FOR THE TASTE OF FLESH.' - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - return "***" + dialogOptions[randomNumber] + "***"; - - case "ravagerHit": - var dialogOptions = [ - 'STAGGERS BACK', - 'FALLS BACKWARDS', - 'CHARGES FORWARD CONFUSED', - 'LOOKS FOR THE SOURCE OF THE HIT', - 'FALLS FORWARDS', - 'BLOCKS ITS FACE', - 'STUMBLES BACKWARDS IN CONFUSION', - 'LUNGES FORWARD DISTRACTED', - 'BITES AT IT\'S ATTACKER', - 'CHECKS IT\'S WOUND' - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - return `***${dialogOptions[randomNumber]}***`; - } -} - -// Log our bot in (change the token by looking into the .env file) -client.login(process.env.RAVAGER_TOKEN); \ No newline at end of file diff --git a/Enemy_Wolf/npcSettings.js b/Enemy_Wolf/npcSettings.js deleted file mode 100644 index 3236a9e..0000000 --- a/Enemy_Wolf/npcSettings.js +++ /dev/null @@ -1,9 +0,0 @@ -require('dotenv').config({path: '../.env'}); - -module.exports = { - id: "wolf", - activity: "OwOing... Totally not placeholder.", - type: "PLAYING", - token: process.env.WOLF_TOKEN, - botChannel: process.env.SEA_OF_FOG_CHANNEL_ID -} diff --git a/Enemy_Wolf/package.json b/Enemy_Wolf/package.json deleted file mode 100644 index 69163ab..0000000 --- a/Enemy_Wolf/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "sanctum-deploypackage", - "version": "1.0.1", - "description": "Universal package for all SANCTUM bots, using pm2.", - "main": "", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "echo \"Error: you need to use the bot name as a command.\" && exit 1", - "alexis": "pm2 start alexis.js -i max --watch", - "graze": "pm2 start graze.js -i max --watch", - "librarian": "pm2 start librarian.js -i max --watch", - "mainframe": "pm2 start mainframe.js -i max --watch", - "mori": "pm2 start mori.js -i max --watch", - "mosiah": "pm2 start mosiah.js -i max --watch", - "ravager": "pm2 start ravager.js -i max --watch", - "rey": "pm2 start rey.js -i max --watch", - "troll": "pm2 start troll.js -i max --watch" - }, - "author": "", - "license": "ISC", - "dependencies": { - "discord.js": "^11.4.2", - "dotenv": "^6.0.0", - "express": "^4.16.3", - "node-cron": "^1.2.1", - "socket.io": "^2.1.1", - "socket.io-request": "^0.8.0" - } -} diff --git a/Graze/graze.js b/Graze/graze.js deleted file mode 100644 index 3bc36b7..0000000 --- a/Graze/graze.js +++ /dev/null @@ -1,185 +0,0 @@ -// .env Variables -require('dotenv').config({path: '../.env'}); - -// Node Modules -const Discord = require('discord.js'); -const client = new Discord.Client(); -const cron = require('node-cron'); - -// Bot Modules (stores http requests & random functions respectively) -const dataRequest = require('../modules/dataRequest'); -const calcRandom = require('../modules/calcRandom'); -const channelProcessor = require('../modules/channelProcessor'); - -// State Machine (Uncomment if needed) -/* -var BotEnumState = { - WAITING: 0, - ACTIVE: 1 -} -var botState = BotEnumState.ACTIVE; -*/ - -// The ready event is vital, it means that your bot will only start reacting to information -// from Discord _after_ ready is emitted -client.on('ready', async () => { - // Generates invite link - try { - let link = await client.generateInvite(["ADMINISTRATOR"]); - console.log("Invite Link: " + link); - } catch(e) { - console.log(e.stack); - } - - // You can set status to 'online', 'invisible', 'away', or 'dnd' (do not disturb) - client.user.setStatus('online'); - // Sets your "Playing" - client.user.setActivity('!upgrade | Nanotech Upgrades.'); - console.log(`Connected! \ - \nLogged in as: ${client.user.username} - (${client.user.id})`); -}); - -// Error handler -client.on('error', console.error); - -// Create an event listener for messages -client.on('message', async message => { - // Ignores ALL bot messages - if (message.author.bot) return; - // Message has to be a bot channel (should be edited later) - if (!channelProcessor.isBotChannel(message.channel.id)) return; - // Has to be (prefix)command - if (message.content.indexOf(process.env.PREFIX) !== 0) return; - - // "This is the best way to define args. Trust me." - // - Some tutorial dude on the internet - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - - //handle the command - switch(command) { - case "upgrade": - if (!args[0]) { - //shows upgrade menu - var intro = `${message.author} Hey buddy! Here's what we can upgrade ASAP!`; - var newMessage = "STR - <:cannister:462046687058198530> **1**\n```Permanently upgrades your Strength by 1, so you can hit them Ravagers harder.```\n" - newMessage += "SPD - <:cannister:462046687058198530> **1**\n```Permanently upgrades your Speed by 1, so you can get hit less in battle.```\n" - newMessage += "STAM - <:cannister:462046687058198530> **1**\n```Permanently upgrades your Max Stamina by 1, so you can hit more Ravagers.```\n" - newMessage += "HP - <:cannister:462046687058198530> **1**\n```Permanently upgrades your Max HP by 10, so you can can take those beatings like a champ.```" - //sendMessage(message.channel.id, newMessage); - - // Grabs all parameters from server - var attacker = String(dataRequest.loadServerData("userStats",message.author.id)); - var attackerStatPoints = parseFloat(attacker.split(",")[10]); // Cannisters - const keepersOfTheCityColor = client.guilds.get(process.env.SANCTUM_ID).roles.find(role => role.name === "Keepers of the City").color; - const embed = new Discord.RichEmbed() - .setAuthor("Graze", client.user.avatarURL) - .setColor(keepersOfTheCityColor) - .setTitle("Nanotech Upgrades") - .setDescription(newMessage) - .setFooter(`${message.member.displayName}, you have ${attackerStatPoints} cannisters! Use !upgrade [OPTION] to upgrade that stat!`) - - message.channel.send(intro, embed); - } else { - console.log(args[0]); - //Upgrades stats - var statToUpgrade = String(args[0]); - var numberOfPointsToUpgrade = 1; - var canUpgrade = 0; - var suffix = "point."; - //var statToUpgrade = String(args.split(" ")[0]); - //var numberOfPointsToUpgrade = parseFloat(args.split(" ")[1]); - switch (statToUpgrade.toUpperCase()) { - case "STRENGTH": - statToUpgrade = "STR"; - break; - case "HEALTH": - statToUpgrade = "HP"; - break; - case "STAMINA": - statToUpgrade = "STAM"; - break; - case "SPEED": - statToUpgrade = "SPD"; - break; - } - - switch (statToUpgrade.toUpperCase()) { - case "STR": - numberOfPointsToUpgrade = 1; - canUpgrade = 1; - suffix = "point."; - break; - case "HP": - numberOfPointsToUpgrade = 10; - canUpgrade = 1; - suffix = "points."; - break; - case "SPD": - numberOfPointsToUpgrade = 1; - canUpgrade = 1; - suffix = "point."; - break; - case "STAM": - numberOfPointsToUpgrade = 1; - canUpgrade = 1; - suffix = "point."; - break; - } - if (canUpgrade == 0) { - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Believe me, I wish I could upgrade things like that."); - return; - } - - var upgradeResponse = dataRequest.sendServerData("upgradeStats", statToUpgrade, message.author.id); - if (String(upgradeResponse) == "notEnoughPoints") { - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Hey now, you don't have that many cannisters."); - return; - } - if (String(upgradeResponse) == "failure") { - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Sorry, no can do right now. Come back later though, ok?"); - return; - } - if (String(upgradeResponse) == "success") { - var skillName = ""; - switch (statToUpgrade.toUpperCase()) { - case "STR": - skillName = "strength"; - break; - case "HP": - skillName = "health"; - break; - case "SPD": - skillName = "speed"; - break; - case "STAM": - skillName = "stamina"; - break; - } - sendMessage(message.channel.id, "<@" + message.author.id + "> Sweet! I used your Nanotech Cannister to upgrade your **" + skillName + "** by " + numberOfPointsToUpgrade + " " + suffix); - } - } - break; - }; -}); - -// Send message handler -function sendMessage(userID, channelID, message) { - // Handle optional first argument (so much for default arugments in node) - if (message === undefined) { - message = channelID; - channelID = userID; - userID = null; - } - - // Utility trick (@userID with an optional argument) - if (userID != null) { - message = "<@" + userID + "> " + message; - } - - // Sends message (needs client var, therefore I think external script won't work) - client.channels.get(channelID).send(message); -} - -// Log our bot in (change the token by looking into the .env file) -client.login(process.env.GRAZE_TOKEN); \ No newline at end of file diff --git a/Graze/package.json b/Graze/package.json deleted file mode 100644 index 69163ab..0000000 --- a/Graze/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "sanctum-deploypackage", - "version": "1.0.1", - "description": "Universal package for all SANCTUM bots, using pm2.", - "main": "", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "echo \"Error: you need to use the bot name as a command.\" && exit 1", - "alexis": "pm2 start alexis.js -i max --watch", - "graze": "pm2 start graze.js -i max --watch", - "librarian": "pm2 start librarian.js -i max --watch", - "mainframe": "pm2 start mainframe.js -i max --watch", - "mori": "pm2 start mori.js -i max --watch", - "mosiah": "pm2 start mosiah.js -i max --watch", - "ravager": "pm2 start ravager.js -i max --watch", - "rey": "pm2 start rey.js -i max --watch", - "troll": "pm2 start troll.js -i max --watch" - }, - "author": "", - "license": "ISC", - "dependencies": { - "discord.js": "^11.4.2", - "dotenv": "^6.0.0", - "express": "^4.16.3", - "node-cron": "^1.2.1", - "socket.io": "^2.1.1", - "socket.io-request": "^0.8.0" - } -} diff --git a/LICENSE b/LICENSE index b49dc80..d67ca07 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 TimRuswick +Copyright (c) 2018 TimRuswick, Kayne Ruse Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Mori/mori.js b/Mori/mori.js deleted file mode 100644 index 94d6d60..0000000 --- a/Mori/mori.js +++ /dev/null @@ -1,272 +0,0 @@ -// .env Variables -require('dotenv').config({path: '../.env'}); - -// Node Modules -const Discord = require('discord.js'); -const client = new Discord.Client(); -const cron = require('node-cron'); - -// Bot Modules (stores http requests & random functions respectively) -const dataRequest = require('../modules/dataRequest'); -const calcRandom = require('../modules/calcRandom'); -const channelProcessor = require('../modules/channelProcessor'); - -var medItems = [0, 1, 2]; -var availableTreatments = []; -var itemCount = 3; -const treatments = [ - // Name | Crystals | HP | Description - /* - ['TREAT','5','15','Heals 15HP immediately. Must have more than 0HP.'], - ['TREATV2','7','%15','Heals to 15% HP immediately. Must have more than 0HP.'], - */ - ['PATCH','10','50','Heals 50HP immediately. Must have more than 0HP.'], - ['PATCHV2','15','%50','Heals to 50% HP immediately. Must have more than 0HP.'], - ['REGEN','20','100','Heals 100HP immediately. Must have more than 0HP.'], - ['REGENV2','25','%100','Heals all HP to maximum immediately. Must have more than 0HP.'], - ['REVIVE','20','25','Brings a traveler back from a KO (0HP) to 25HP immediately.'], - ['REVIVEV2','25','%50','Brings a traveler back from a KO (0HP) to 50% HP immediately.'], - ['REVIVEV3','30','%100','Brings a traveler back from a KO (0HP) to 100% HP immediately.'] -]; - -// The ready event is vital, it means that your bot will only start reacting to information -// from Discord _after_ ready is emitted -client.on('ready', async () => { - // Generates invite link - try { - let link = await client.generateInvite(["ADMINISTRATOR"]); - console.log("Invite Link: " + link); - } catch(e) { - console.log(e.stack); - } - - // You can set status to 'online', 'invisible', 'away', or 'dnd' (do not disturb) - client.user.setStatus('online'); - // Sets your "Playing" - client.user.setActivity('!heal | BioMed Specialist.'); - console.log(`Connected! \ - \nLogged in as: ${client.user.username} - (${client.user.id})`); - - resetInventory(itemCount); -}); - -//Revives everyone every morning at 7am PST (server time dependant). -cron.schedule('0 7 * * *', function() { - console.log('Reviving'); - dataRequest.sendServerData("reviveAll",0); - - var dialogOptions = [ - 'Ahhh. Just finished reviving all of our fellow travelers.', - 'Rezing travelers is hard work. <@462708244171718656> How was your night?', - 'Finished up bringing everybody back from the dead. I swear I\'m a magician sometimes.', - 'Another day. More lives saved. No thanks from anybody. Good times.', - 'Hello everybody. I see you\'re alive and well. Because of me, but no biggie.', - 'Bringing everybody back every day is grueling, thankless work.', - 'I need a vacation. Just brought everybody back and they immediatly go fight ravagers.', - 'Everybody should be up. Please don\'t run straight to the deadlands.', - 'Everybody is alive. Thanks to me. But hey, no need to thank me or anything. I\' just drink in silence.', - 'Good day. All the travelers are back up. Time for some sleep. Goodnight everybody.' - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - - client.channels.get(process.env.TAVERN_CHANNEL_ID).startTyping(); - setTimeout(function() { - sendMessage(process.env.TAVERN_CHANNEL_ID, dialogOptions[randomNumber]); - client.channels.get(process.env.TAVERN_CHANNEL_ID).stopTyping(true); - }, calcRandom.random(2500,6000)); - resetInventory(itemCount); -}); - -// Create an event listener for messages -client.on('message', async message => { - // Ignores ALL bot messages - if (message.author.bot) return; - // Message has to be in Outskirts (should be edited later) - if (!channelProcessor.isBotChannel(message.channel.id)) return; - // Has to be (prefix)command - if (message.content.indexOf (process.env.PREFIX) !== 0) return; - - // "This is the best way to define args. Trust me." - // - Some tutorial dude on the internet - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - - switch (command) { - case "reset": - if (isAdmin(message.author.id)) - resetInventory(3); - break; - case "heal": - if (!args[0]) { - // Grabs all parameters from server - var attacker = String(dataRequest.loadServerData("userStats",message.author.id)); - var attackerWallet = parseFloat(attacker.split(",")[6]); // Crystals - - var intro = `${message.author} Here's what I've got at the moment. My prices are based on availability, ` - + `it's hard to find stuff these days.`; - var newMessage = ""; - for (var i = 0; i < availableTreatments.length; i++) { - //newMessage += availableTreatments[i][0] + " - **" + availableTreatments[i][1] + "**<:crystals:460974340247257089>\n```" + availableTreatments[i][3] + "```\n"; - newMessage += `${availableTreatments[i][0]} - <:crystals:460974340247257089> **${availableTreatments[i][1]}**\n` + "```" + availableTreatments[i][3] + "```\n"; - } - const keepersOfTheCityColor = client.guilds.get(process.env.SANCTUM_ID).roles.find(role => role.name === "Keepers of the City").color; - const embed = new Discord.RichEmbed() - .setAuthor("Mori", client.user.avatarURL) - .setColor(keepersOfTheCityColor) - .setTitle("BioTech Healing") - .setDescription(newMessage) - .setFooter(`${message.member.displayName}, you have ${attackerWallet} crystals. Use !heal [OPTION] to buy.`) - //sendMessage(message.channel.id, newMessage); - message.channel.send(intro, embed); - } else { - //4815 - var purchase = args[0].toUpperCase(); - var treatmentCost = 0; - var treatmentName = ''; - var treatmentAvailable = false; - for (var i = 0, len = availableTreatments.length; i < len; i++) { - if (availableTreatments[i][0] === purchase) { - treatmentAvailable = true; - treatmentName = availableTreatments[i][0]; - //treatmentCost = availableTreatments[i][1]; - break; - } - } - if (treatmentAvailable) { - var healResponse = String(dataRequest.sendServerData("heal", treatmentCost, message.author.id, treatmentName)); - var response = String(healResponse.split(",")[0]); - var health = String(healResponse.split(",")[1]); - switch (response) { - case "success": - sendMessage(message.channel.id, "<@" + message.author.id + "> I\'ve applied a " + purchase + " via nanotech .\n**-" + treatmentCost + "**<:crystals:460974340247257089> | **" + health + "**HP." ); - break; - case "notEnoughCrystals": - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Sorry, looks like you don\'t have the funds for that." ); - break; - case "cantDoThat": - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Sorry, you don\'t meet the requirements for this procedure." ); - break; - case "youreKnockedOut": - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> You\'re currently knoecked out (0HP). You require a revive procdure to heal immediately, or you can wait until 7 AM UTC when I revive everyone." ); - break; - case "lessThanYourHealth": - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Doing that procedure would put you at less than your current HP." ); - break; - case "fullHealth": - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Looks like you\'re already full health. Why would you want to heal?" ); - break; - case "failure": - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Sorry, not sure I understand what procedure you\'d like to purchase." ); - break; - } - } else{ - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> I don\'t have that type of procedure available." ); - } - } - break; - } -}); - -client.on('error', console.error); - -// Gets if user has an Overseers rank -function isAdmin(userID) { - var guild = client.guilds.get(process.env.SANCTUM_ID); - return guild.members.get(userID).roles.find(role => role.name === "Overseers"); -} - -function resetInventory(itemCount) { - console.log("\nResetting inventory..."); - medItems = []; - availableTreatments = []; - var treatmentsClone = arrayClone(treatments); - var tempnum = 0; - var i = 0; - // DEBUG - //itemCount = treatments.length; - - // Chooses random numbers, in order to pick random heal packs - do { - tempnum = Math.floor(Math.random() * treatments.length); - if (!medItems.includes(tempnum)) { - medItems.push(tempnum); - } - i++; - } - while (medItems.length < itemCount); - - medItems.sort(sortNumber); - message = ""; - var list2 = new Array(); - for (var i = 0; i < medItems.length; i++) { - //console.log('MED ITEM: [' + medItems[i] + '] ADDED'); - availableTreatments.push(treatmentsClone[medItems[i]]); - tempnum = parseFloat(availableTreatments[i][1]); - //console.log(">>> Tempnum: " + tempnum + " | availableTreatments: " + availableTreatments[i][1]); - //console.log(">>> MedItems: " + treatments[medItems[i]] + ""); - // Older Calculations - var multiple = parseFloat(Math.floor(tempnum / 6)); - if (calcRandom.gamble(50)) { - availableTreatments[i][1] = tempnum + multiple; - } else { - availableTreatments[i][1] = tempnum - multiple; - } - - // Specifically for Treat - availableTreatments[i][1] += calcRandom.random(-3, 3); - - console.log(availableTreatments[i][0] + " | Base Cost: " + tempnum + " | HP: " + availableTreatments[i][2] + " | Modifier: " + multiple + " | Final: " + availableTreatments[i][1]); - - message = availableTreatments[i][0] + " - **" + availableTreatments[i][1] + "**<:crystals:460974340247257089>\n```" + availableTreatments[i][3] + "```\n"; - //console.log(message); - } -} - -function sortNumber(a,b) { - return a - b; -} - -// Send message handler -function sendMessage(userID, channelID, message) { - // Handle optional first argument (so much for default arugments in node) - if (message === undefined) { - message = channelID; - channelID = userID; - userID = null; - } - - // Utility trick (@userID with an optional argument) - if (userID != null) { - message = "<@" + userID + "> " + message; - } - - // Sends message (needs client var, therefore I think external script won't work) - client.channels.get(channelID).send(message); -} - -/* -This function is for fixing a bug where an array gets edited, and possibly -causing negative numbers due to my calcRandom +2 -2 change. This will not -work with arrays containing objects (eg. JSON data). -*/ -// https://blog.andrewray.me/how-to-clone-a-nested-array-in-javascript/ -function arrayClone(arr) { - var i, copy; - - if( Array.isArray( arr ) ) { - copy = arr.slice( 0 ); - for( i = 0; i < copy.length; i++ ) { - copy[ i ] = arrayClone( copy[ i ] ); - } - return copy; - } else if( typeof arr === 'object' ) { - throw 'Cannot clone array containing an object!'; - } else { - return arr; - } - -} - - -// Log our bot in (change the token by looking into the .env file) -client.login(process.env.MORI_TOKEN); \ No newline at end of file diff --git a/Mori/package.json b/Mori/package.json deleted file mode 100644 index 69163ab..0000000 --- a/Mori/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "sanctum-deploypackage", - "version": "1.0.1", - "description": "Universal package for all SANCTUM bots, using pm2.", - "main": "", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "echo \"Error: you need to use the bot name as a command.\" && exit 1", - "alexis": "pm2 start alexis.js -i max --watch", - "graze": "pm2 start graze.js -i max --watch", - "librarian": "pm2 start librarian.js -i max --watch", - "mainframe": "pm2 start mainframe.js -i max --watch", - "mori": "pm2 start mori.js -i max --watch", - "mosiah": "pm2 start mosiah.js -i max --watch", - "ravager": "pm2 start ravager.js -i max --watch", - "rey": "pm2 start rey.js -i max --watch", - "troll": "pm2 start troll.js -i max --watch" - }, - "author": "", - "license": "ISC", - "dependencies": { - "discord.js": "^11.4.2", - "dotenv": "^6.0.0", - "express": "^4.16.3", - "node-cron": "^1.2.1", - "socket.io": "^2.1.1", - "socket.io-request": "^0.8.0" - } -} diff --git a/Mosiah/mosiah.js b/Mosiah/mosiah.js deleted file mode 100644 index 5c302fe..0000000 --- a/Mosiah/mosiah.js +++ /dev/null @@ -1,144 +0,0 @@ -// .env Variables -require('dotenv').config({path: '../.env'}); - -// Node Modules -const Discord = require('discord.js'); -const client = new Discord.Client(); -const cron = require('node-cron'); - -// Bot Modules -const dataRequest = require('../modules/dataRequest'); -const calcRandom = require('../modules/calcRandom'); - -const normalActivity = '!wager | Games of Fortune'; - -// State Machine -var MosiahEnumState = { - WAITING: 0, - GAMBLING: 1 -} -var mosiahState = MosiahEnumState.WAITING; - -// The ready event is vital, it means that your bot will only start reacting to information -// from Discord _after_ ready is emitted -client.on('ready', async () => { - // Generates invite link - try { - let link = await client.generateInvite(["ADMINISTRATOR"]); - console.log("Invite Link: " + link); - } catch(e) { - console.log(e.stack); - } - - client.user.setStatus('invisible'); - client.user.setActivity(normalActivity); - console.log(`Connected! \ - \nLogged in as: ${client.user.username} - (${client.user.id})`); -}); - -// Create an event listener for messages -client.on('message', async message => { - // Ignores ALL bot messages - if (message.author.bot) return; - // Message has to be in Tavern or Test - if (!(message.channel.id === process.env.TAVERN_CHANNEL_ID - || message.channel.id === process.env.TEST_CHANNEL_ID)) return; - // Has to be (prefix)command - if (message.content.indexOf(process.env.PREFIX) !== 0) return; - - // "This is the best way to define args. Trust me." - // - Some tutorial dude on the internet - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - - switch (command) { - case "wager": - if (mosiahState == MosiahEnumState.GAMBLING) - wagerMessage(message, args); - else - message.reply("I'm out and about right now. Don't wanna get found by the wrong peoples."); - break; - case "msummon": - if (isAdmin(message.author.id)) MosiahTurnOnline(); - break; - case "mvanish": - if (isAdmin(message.author.id)) MosiahTurnOffline(); - break; - case "rigged": - message.channel.send("What are you talkin' about? I may look like it, being an outcaster from the city, but I'd never rip peoples off."); - - // Testing out textadv payment - if (isAdmin(message.author.id)) dataRequest.sendServerData("gambleWon", 50, message.author.id); - break; - } -}); - -client.on('error', console.error); - -// Gets if user has an Overseers rank -function isAdmin(userID) { - var guild = client.guilds.get(process.env.SANCTUM_ID); - return guild.members.get(userID).roles.find(role => role.name === "Overseers"); -} - -function wagerMessage(message, args) { - var amount = Math.floor(args[0]); - var account = dataRequest.loadServerData("account", message.author.id); - if (amount > 0) { - if (amount <= account) { - if (calcRandom.gamble(49)) { - sendMessage(message.channel.id, "<@" + message.author.id + "> Ya got me. Here's your " + amount + " crystals. "); - dataRequest.sendServerData("gambleWon", amount, message.author.id); - } else { - sendMessage(message.channel.id, "<@" + message.author.id + "> Looks like ya lost. Guess I'll keep your " + amount + " crystals. "); - dataRequest.sendServerData("gambleLost", amount, message.author.id); - } - } else { - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Yer a funny one ain't ya. Show me the crystals first."); - } - } else { - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Aww c'mon. You wanna wager me nothin'?"); - } -} - -cron.schedule('0 7 * * Saturday', function(){ - console.log('Saturday join.' + new Date().toLocaleString()); - MosiahTurnOnline(); -}); - -cron.schedule('0 7 * * Sunday', function(){ - console.log('Sunday leave.' + new Date().toLocaleString()); - MosiahTurnOffline(); -}); - -function MosiahTurnOnline() { - client.user.setStatus('online'); - client.channels.get(process.env.TAVERN_CHANNEL_ID).send("*Psst.* Anyone wanna wager a few **<:crystals:460974340247257089> Crystals** with me?"); - mosiahState = MosiahEnumState.GAMBLING; -} - -function MosiahTurnOffline() { - client.user.setStatus('invisible'); - mosiahState = MosiahEnumState.WAITING; -} - -// Send message handler -function sendMessage(userID, channelID, message) { - // Handle optional first argument (so much for default arugments in node) - if (message === undefined) { - message = channelID; - channelID = userID; - userID = null; - } - - // Utility trick (@userID with an optional argument) - if (userID != null) { - message = "<@" + userID + "> " + message; - } - - // Sends message (needs client var, therefore I think external script won't work) - client.channels.get(channelID).send(message); -} - -// Log our bot in -client.login(process.env.MOSIAH_TOKEN); \ No newline at end of file diff --git a/Mosiah/package.json b/Mosiah/package.json deleted file mode 100644 index 69163ab..0000000 --- a/Mosiah/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "sanctum-deploypackage", - "version": "1.0.1", - "description": "Universal package for all SANCTUM bots, using pm2.", - "main": "", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "echo \"Error: you need to use the bot name as a command.\" && exit 1", - "alexis": "pm2 start alexis.js -i max --watch", - "graze": "pm2 start graze.js -i max --watch", - "librarian": "pm2 start librarian.js -i max --watch", - "mainframe": "pm2 start mainframe.js -i max --watch", - "mori": "pm2 start mori.js -i max --watch", - "mosiah": "pm2 start mosiah.js -i max --watch", - "ravager": "pm2 start ravager.js -i max --watch", - "rey": "pm2 start rey.js -i max --watch", - "troll": "pm2 start troll.js -i max --watch" - }, - "author": "", - "license": "ISC", - "dependencies": { - "discord.js": "^11.4.2", - "dotenv": "^6.0.0", - "express": "^4.16.3", - "node-cron": "^1.2.1", - "socket.io": "^2.1.1", - "socket.io-request": "^0.8.0" - } -} diff --git a/PHPBotServer/.htaccess b/PHPBotServer/.htaccess deleted file mode 100644 index 3b3e0d1..0000000 --- a/PHPBotServer/.htaccess +++ /dev/null @@ -1,2 +0,0 @@ -#.htaccess -Options -Indexes \ No newline at end of file diff --git a/PHPBotServer/8-19-2018 Sanctum Database Backup.sql b/PHPBotServer/8-19-2018 Sanctum Database Backup.sql deleted file mode 100644 index 1a5bc7e..0000000 --- a/PHPBotServer/8-19-2018 Sanctum Database Backup.sql +++ /dev/null @@ -1,235 +0,0 @@ -/*CREATE DATABASE IF NOT EXISTS `discordbot` /*!40100 DEFAULT CHARACTER SET latin1 */; -USE `db750373126`; --- MySQL dump 10.13 Distrib 5.7.17, for Win64 (x86_64) --- --- Host: localhost Database: discordbot --- ------------------------------------------------------ --- Server version 5.5.60-0ubuntu0.14.04.1 - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `artifactEvents` --- - -DROP TABLE IF EXISTS `artifactEvents`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `artifactEvents` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `timeStarted` timestamp NULL DEFAULT CURRENT_TIMESTAMP, - `eventType` varchar(16) NOT NULL DEFAULT 'default', - `eventLevel` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `artifactEvents` --- - -LOCK TABLES `artifactEvents` WRITE; -/*!40000 ALTER TABLE `artifactEvents` DISABLE KEYS */; -/*!40000 ALTER TABLE `artifactEvents` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `artifacts` --- - -DROP TABLE IF EXISTS `artifacts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `artifacts` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `discordUserID` bigint(20) NOT NULL DEFAULT '0', - `scrap` int(11) NOT NULL DEFAULT '0', - `common` int(11) NOT NULL DEFAULT '0', - `uncommon` int(11) NOT NULL DEFAULT '0', - `rare` int(11) NOT NULL DEFAULT '0', - `ultrarare` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `artifacts` --- - -LOCK TABLES `artifacts` WRITE; -/*!40000 ALTER TABLE `artifacts` DISABLE KEYS */; -INSERT INTO `artifacts` VALUES (3,163770616581718017,13,18,3,4,5),(4,297748308523483138,48,10,4,0,0),(5,218498162745278474,171,47,7,6,1),(6,246788321404125185,0,0,0,0,0),(7,173595886897725440,0,0,0,0,0),(8,200340393596944384,407,134,23,14,2),(9,433759248800022532,393,120,22,8,4),(10,454823752925052930,412,152,13,22,0),(11,150768078714568705,8,0,0,0,0),(12,457300954660995114,395,122,19,14,0),(13,438094660712267778,94,36,0,4,0),(14,400022926348386315,0,0,0,0,0),(15,278115594879107074,11,3,2,0,0),(16,285930195125403650,33,9,4,0,0),(17,294927961310625793,16,0,0,0,0),(18,460761978135248896,343,120,16,9,0),(19,220272827327053824,0,1,0,0,0),(20,388505302292627456,5,6,0,0,0),(21,272423601922375680,7,3,0,0,0),(22,306381311923453953,11,4,0,0,0),(23,424563962303086594,18,3,0,0,0),(24,335348144428810251,0,0,0,0,0),(25,211232684209340426,145,42,14,1,1),(26,265907268942299136,55,17,2,0,0),(27,393415098766458892,14,5,0,0,0),(28,286105785052954626,17,15,0,0,0),(29,142612779377885185,91,22,9,0,0),(30,262771588946984963,106,51,8,1,1),(31,130765718525444096,7,0,0,0,0),(32,324727149930086400,3,4,0,0,0),(33,224083099246395403,16,3,1,0,0),(34,359521958519504926,6,16,3,0,0),(35,131968711312539648,31,19,4,0,1),(36,196372356514447360,12,7,0,0,0),(37,325565391478718464,39,16,0,0,0),(38,411878868274642945,7,3,0,0,1),(39,390618369545601028,70,30,3,2,1),(40,201102155896193024,309,130,11,4,1),(41,459879057295671296,97,33,3,1,0),(42,459883167160205313,85,49,6,0,0),(43,459834182961463299,23,12,6,2,0),(44,459873273308643328,100,33,7,3,0),(45,459884642192064512,65,22,3,1,1),(46,459881667104997376,50,46,12,0,0),(47,274301199841361920,94,43,9,0,0),(48,185698541052755968,30,8,4,0,0),(49,283395529449406464,0,6,0,0,0),(50,370495051815714816,14,3,0,0,0),(51,357981974931046400,74,34,4,0,2),(52,459876383431327746,87,34,6,2,1),(53,150649616772235264,71,13,6,2,3),(54,218458041790496768,12,5,1,1,0),(55,334750493085794304,3,2,0,0,0),(56,429615167492325376,42,30,4,0,0),(57,276538857174990858,4,0,0,0,0),(58,457289865516548098,0,2,0,0,0),(59,217208462889844736,1,0,0,0,0),(60,381978984566489100,0,2,0,0,0),(61,278241670540034048,28,7,0,0,0),(62,173468649884090368,102,31,4,0,0),(63,419553745236393995,6,0,0,0,0),(64,162544056059035648,7,2,0,0,0),(65,118124619117887488,168,78,29,6,2),(66,295691934759125003,11,0,0,0,0),(67,265610485812953088,12,9,0,0,0),(68,238795465158557697,5,0,0,0,0),(69,191198987490033664,4,2,0,0,0),(70,328320677058707456,4,1,0,0,0),(71,330301910386999297,7,0,0,0,0),(72,390938926761639936,48,18,2,0,0),(73,257137018897694721,38,6,0,1,0),(74,250455372421267457,0,2,0,0,0),(75,139861211746402304,52,15,1,0,0),(76,397375315594444801,0,3,0,0,0),(77,374708322881765376,0,1,0,0,0),(78,464723134105255943,34,8,0,0,0),(79,294657701617598464,8,6,0,1,0),(80,246712838603800577,13,8,0,0,0),(81,438052138141351936,7,1,0,0,0),(82,192077723676573696,22,10,1,0,0),(83,429787012481024010,2,0,0,0,0),(84,274619765790867458,2,0,0,0,0),(85,164419318086369280,0,3,0,0,0),(86,163655183438446593,7,4,3,0,0),(87,140195026528370688,12,1,0,0,0),(88,196081395494289408,7,6,0,0,1),(89,463212636465790998,0,4,1,0,0),(90,244191245390315520,22,1,6,0,0),(91,465785309821534248,54,7,0,3,0),(92,466995296795230219,6,3,0,0,0),(93,111973500121579520,14,9,0,2,0),(94,405868548150394890,12,6,3,2,1),(95,323176514617081857,0,3,0,0,0),(96,467861306465058836,5,0,0,0,0),(97,383328874169237506,0,1,0,0,0),(98,391286119884390410,0,3,0,0,0),(99,202539587342434305,8,0,0,0,0); -/*!40000 ALTER TABLE `artifacts` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `attackLog` --- - -DROP TABLE IF EXISTS `attackLog`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `attackLog` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `timeAttacked` timestamp NULL DEFAULT CURRENT_TIMESTAMP, - `discordUserID` bigint(20) DEFAULT NULL, - `hostileID` int(11) DEFAULT NULL, - `damage` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=19005 DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `attackLog` --- - -LOCK TABLES `attackLog` WRITE; -/*!40000 ALTER TABLE `attackLog` DISABLE KEYS */; -INSERT INTO `attackLog` VALUES (1,'2018-06-24 21:08:56',204933415252787202,56,9),(2,'2018-06-24 21:08:57',457300954660995114,56,9),(3,'2018-06-24 21:09:00',457300954660995114,56,11),(4,'2018-06-24 21:09:01',204933415252787202,56,10),(5,'2018-06-24 21:09:03',457300954660995114,56,10),(6,'2018-06-24 21:09:05',457300954660995114,56,7),(7,'2018-06-24 21:09:06',204933415252787202,56,14),(8,'2018-06-24 21:09:08',454823752925052930,56,10),(9,'2018-06-24 21:09:09',457300954660995114,56,11),(10,'2018-06-24 21:09:10',204933415252787202,56,9),(11,'2018-06-24 21:09:13',204933415252787202,56,6),(12,'2018-06-24 21:09:18',204933415252787202,56,8),(13,'2018-06-24 21:09:27',204933415252787202,56,10),(14,'2018-06-24 21:09:34',204933415252787202,56,10),(15,'2018-06-24 21:18:49',454823752925052930,57,11),(16,'2018-06-24 21:18:51',204933415252787202,57,6),(17,'2018-06-24 21:18:53',454823752925052930,57,10),(18,'2018-06-24 21:18:55',204933415252787202,57,10),(19,'2018-06-24 21:18:57',454823752925052930,57,12),(20,'2018-06-24 21:18:58',204933415252787202,57,7),(21,'2018-06-24 21:19:04',204933415252787202,57,10),(22,'2018-06-24 21:19:07',204933415252787202,57,11),(23,'2018-06-24 21:19:12',204933415252787202,57,8),(24,'2018-06-24 21:19:16',204933415252787202,57,12),(25,'2018-06-24 21:19:19',457300954660995114,57,6),(26,'2018-06-24 21:19:21',457300954660995114,57,10),(27,'2018-06-24 21:19:23',204933415252787202,57,13),(28,'2018-06-24 21:24:29',163770616581718017,1,1),(29,'2018-06-24 21:28:50',204933415252787202,58,7),(30,'2018-06-24 21:28:54',204933415252787202,58,9),(31,'2018-06-24 21:28:56',457300954660995114,58,10),(32,'2018-06-24 21:28:57',204933415252787202,58,11),(33,'2018-06-24 21:28:59',457300954660995114,58,11),(34,'2018-06-24 21:29:00',282656257716912139,58,14),(35,'2018-06-24 21:29:02',457300954660995114,58,6),(36,'2018-06-24 21:29:06',457300954660995114,58,12),(37,'2018-06-24 21:29:10',204933415252787202,58,13),(38,'2018-06-24 21:29:11',457300954660995114,58,9),(39,'2018-06-24 21:29:14',204933415252787202,58,10),(40,'2018-06-24 21:29:16',457300954660995114,58,6),(41,'2018-06-24 21:29:20',457300954660995114,58,6),(42,'2018-06-24 21:29:24',457300954660995114,58,7),(43,'2018-06-24 21:29:26',204933415252787202,58,12),(44,'2018-06-24 21:29:28',282656257716912139,58,14),(45,'2018-06-24 21:29:29',457300954660995114,58,7),(46,'2018-06-24 21:29:31',204933415252787202,58,7),(47,'2018-06-24 21:29:34',457300954660995114,58,14),(48,'2018-06-24 22:19:02',204933415252787202,59,14),(49,'2018-06-24 22:19:04',204933415252787202,59,7),(50,'2018-06-24 22:19:09',204933415252787202,59,10),(51,'2018-06-24 22:19:11',204933415252787202,59,11),(52,'2018-06-24 22:19:14',204933415252787202,59,13),(53,'2018-06-24 22:19:16',204933415252787202,59,9),(54,'2018-06-24 22:19:18',204933415252787202,59,13),(55,'2018-06-24 22:19:20',262771588946984963,59,10),(56,'2018-06-24 22:19:22',204933415252787202,59,9),(57,'2018-06-24 22:19:23',262771588946984963,59,10),(58,'2018-06-24 22:19:25',262771588946984963,59,11),(59,'2018-06-24 22:19:26',262771588946984963,59,9),(60,'2018-06-24 22:19:27',262771588946984963,59,10),(61,'2018-06-24 22:19:29',262771588946984963,59,11),(62,'2018-06-24 22:19:30',262771588946984963,59,7),(63,'2018-06-24 22:19:31',262771588946984963,59,12),(64,'2018-06-24 22:19:33',262771588946984963,59,11),(65,'2018-06-24 22:19:34',204933415252787202,59,9),(66,'2018-06-24 22:19:42',262771588946984963,59,6),(67,'2018-06-24 22:19:46',262771588946984963,59,6),(68,'2018-06-24 22:19:48',204933415252787202,59,13),(69,'2018-06-24 22:19:51',204933415252787202,59,7),(70,'2018-06-24 22:19:54',204933415252787202,59,13),(71,'2018-06-24 22:19:55',229524509047128074,59,6),(72,'2018-06-24 22:28:49',204933415252787202,60,13),(73,'2018-06-24 22:28:53',457300954660995114,60,10),(74,'2018-06-24 22:28:58',204933415252787202,60,11),(75,'2018-06-24 22:29:04',204933415252787202,60,12),(76,'2018-06-24 22:29:05',457300954660995114,60,9),(77,'2018-06-24 22:29:06',262771588946984963,60,10),(78,'2018-06-24 22:29:08',262771588946984963,60,8),(79,'2018-06-24 22:29:09',262771588946984963,60,13),(80,'2018-06-24 22:29:11',262771588946984963,60,13),(81,'2018-06-24 22:29:13',262771588946984963,60,6),(82,'2018-06-24 22:29:14',262771588946984963,60,13),(83,'2018-06-24 22:29:15',262771588946984963,60,14),(84,'2018-06-24 22:29:17',262771588946984963,60,13),(85,'2018-06-24 22:29:18',262771588946984963,60,11),(86,'2018-06-24 22:29:19',262771588946984963,60,8),(87,'2018-06-24 22:29:21',262771588946984963,60,10),(88,'2018-06-24 22:29:22',262771588946984963,60,10),(89,'2018-06-24 22:29:24',262771588946984963,60,12),(90,'2018-06-24 23:28:50',163770616581718017,61,6),(91,'2018-06-24 23:28:51',457300954660995114,61,8),(92,'2018-06-24 23:28:52',163770616581718017,61,10),(93,'2018-06-24 23:28:54',218498162745278474,61,14),(94,'2018-06-24 23:28:57',218498162745278474,61,10),(95,'2018-06-24 23:28:59',131968711312539648,61,13),(96,'2018-06-24 23:29:00',457300954660995114,61,12),(97,'2018-06-24 23:29:01',163770616581718017,61,10),(98,'2018-06-24 23:29:03',262771588946984963,61,7),(99,'2018-06-24 23:29:04',262771588946984963,61,7),(100,'2018-06-24 23:29:05',262771588946984963,61,6),(101,'2018-06-24 23:29:07',262771588946984963,61,7),(102,'2018-06-24 23:29:08',262771588946984963,61,9),(103,'2018-06-24 23:29:10',262771588946984963,61,7),(104,'2018-06-24 23:29:11',457300954660995114,61,10),(105,'2018-06-24 23:29:12',262771588946984963,61,6),(106,'2018-06-24 23:29:14',262771588946984963,61,8),(107,'2018-06-24 23:29:15',200340393596944384,61,11),(108,'2018-06-24 23:29:17',262771588946984963,61,12),(109,'2018-06-24 23:29:18',262771588946984963,61,14),(110,'2018-06-24 23:38:47',262771588946984963,62,10),(111,'2018-06-24 23:38:47',262771588946984963,62,14),(112,'2018-06-24 23:38:47',262771588946984963,62,7),(113,'2018-06-24 23:38:47',262771588946984963,62,9),(114,'2018-06-24 23:38:47',262771588946984963,62,6),(115,'2018-06-24 23:38:48',262771588946984963,62,8),(116,'2018-06-24 23:38:48',262771588946984963,62,11),(117,'2018-06-24 23:38:48',262771588946984963,62,13),(118,'2018-06-24 23:38:49',262771588946984963,62,10),(119,'2018-06-24 23:38:52',457300954660995114,62,8),(120,'2018-06-24 23:38:54',262771588946984963,62,10),(121,'2018-06-24 23:38:54',262771588946984963,62,7),(122,'2018-06-24 23:38:55',262771588946984963,62,11),(123,'2018-06-24 23:38:55',262771588946984963,62,9),(124,'2018-06-24 23:38:55',262771588946984963,62,9),(125,'2018-06-24 23:38:55',262771588946984963,62,8),(126,'2018-06-24 23:48:46',163770616581718017,63,7),(127,'2018-06-24 23:48:50',262771588946984963,63,13),(128,'2018-06-24 23:48:50',163770616581718017,63,12),(129,'2018-06-24 23:48:50',262771588946984963,63,10),(130,'2018-06-24 23:48:51',262771588946984963,63,10),(131,'2018-06-24 23:48:51',262771588946984963,63,12),(132,'2018-06-24 23:48:52',262771588946984963,63,12),(133,'2018-06-24 23:49:12',163770616581718017,63,9),(134,'2018-06-24 23:49:16',163770616581718017,63,10),(135,'2018-06-24 23:49:18',163770616581718017,63,12),(136,'2018-06-25 00:08:53',218498162745278474,64,7),(137,'2018-06-25 00:08:54',457300954660995114,64,8),(138,'2018-06-25 00:08:57',457300954660995114,64,10),(139,'2018-06-25 00:08:57',218498162745278474,64,6),(140,'2018-06-25 00:09:01',457300954660995114,64,12),(141,'2018-06-25 00:09:01',218498162745278474,64,11),(142,'2018-06-25 00:09:05',457300954660995114,64,13),(143,'2018-06-25 00:09:06',218498162745278474,64,14),(144,'2018-06-25 00:09:09',457300954660995114,64,11),(145,'2018-06-25 00:09:10',218498162745278474,64,12),(146,'2018-06-25 00:11:07',218498162745278474,64,10),(147,'2018-06-25 00:11:21',163770616581718017,64,9),(148,'2018-06-25 00:11:23',163770616581718017,64,8),(149,'2018-06-25 00:11:24',457300954660995114,64,10),(150,'2018-06-25 00:11:28',163770616581718017,64,11),(151,'2018-06-25 00:11:31',163770616581718017,64,10),(152,'2018-06-25 00:11:34',163770616581718017,64,9),(153,'2018-06-25 00:11:52',200340393596944384,64,14),(154,'2018-06-25 00:11:57',200340393596944384,64,10),(155,'2018-06-25 00:12:02',200340393596944384,64,7),(156,'2018-06-25 00:12:05',200340393596944384,64,11),(157,'2018-06-25 00:12:07',200340393596944384,64,7),(158,'2018-06-25 00:12:56',457300954660995114,64,10),(159,'2018-06-25 00:58:51',218498162745278474,65,9),(160,'2018-06-25 00:58:53',200340393596944384,65,10),(161,'2018-06-25 00:58:54',131968711312539648,65,14),(162,'2018-06-25 00:58:54',211232684209340426,65,12),(163,'2018-06-25 00:58:55',211232684209340426,65,13),(164,'2018-06-25 00:58:57',211232684209340426,65,8),(165,'2018-06-25 00:58:57',211232684209340426,65,7),(166,'2018-06-25 00:58:58',218498162745278474,65,10),(167,'2018-06-25 00:58:58',211232684209340426,65,10),(168,'2018-06-25 00:58:58',200340393596944384,65,7),(169,'2018-06-25 00:58:59',131968711312539648,65,12),(170,'2018-06-25 00:59:01',218498162745278474,65,10),(171,'2018-06-25 00:59:02',200340393596944384,65,7),(172,'2018-06-25 00:59:05',200340393596944384,65,14),(173,'2018-06-25 00:59:05',218498162745278474,65,6),(174,'2018-06-25 00:59:08',200340393596944384,65,12),(175,'2018-06-25 01:18:46',163770616581718017,66,13),(176,'2018-06-25 01:18:47',457300954660995114,66,10),(177,'2018-06-25 01:18:50',163770616581718017,66,9),(178,'2018-06-25 01:18:51',457300954660995114,66,14),(179,'2018-06-25 01:18:52',163770616581718017,66,12),(180,'2018-06-25 01:18:52',131968711312539648,66,9),(181,'2018-06-25 01:18:53',131968711312539648,66,6),(182,'2018-06-25 01:18:53',457300954660995114,66,13),(183,'2018-06-25 01:18:54',131968711312539648,66,12),(184,'2018-06-25 01:18:55',163770616581718017,66,12),(185,'2018-06-25 01:18:56',457300954660995114,66,10),(186,'2018-06-25 01:18:57',131968711312539648,66,8),(187,'2018-06-25 01:18:57',163770616581718017,66,9),(188,'2018-06-25 01:18:57',131968711312539648,66,11),(189,'2018-06-25 01:18:59',457300954660995114,66,10),(190,'2018-06-25 01:19:59',200340393596944384,66,14),(191,'2018-06-25 01:28:49',457300954660995114,67,6),(192,'2018-06-25 01:28:49',163770616581718017,67,12),(193,'2018-06-25 01:28:50',200340393596944384,67,7),(194,'2018-06-25 01:28:51',457300954660995114,67,7),(195,'2018-06-25 01:28:52',200340393596944384,67,14),(196,'2018-06-25 01:28:52',163770616581718017,67,10),(197,'2018-06-25 01:28:54',201102155896193024,67,10),(198,'2018-06-25 01:28:54',262771588946984963,67,10),(199,'2018-06-25 01:28:54',201102155896193024,67,9),(200,'2018-06-25 01:28:54',457300954660995114,67,10),(201,'2018-06-25 01:28:55',200340393596944384,67,13),(202,'2018-06-25 01:28:56',262771588946984963,67,10),(203,'2018-06-25 01:28:56',201102155896193024,67,6),(204,'2018-06-25 01:28:56',201102155896193024,67,10),(205,'2018-06-25 01:28:57',201102155896193024,67,11),(206,'2018-06-25 01:38:47',200340393596944384,68,6),(207,'2018-06-25 01:38:47',131968711312539648,68,7),(208,'2018-06-25 01:38:48',131968711312539648,68,14),(209,'2018-06-25 01:38:49',131968711312539648,68,13),(210,'2018-06-25 01:38:50',131968711312539648,68,12),(211,'2018-06-25 01:38:50',200340393596944384,68,8),(212,'2018-06-25 01:38:53',200340393596944384,68,8),(213,'2018-06-25 01:38:54',200340393596944384,68,7),(214,'2018-06-25 01:38:56',200340393596944384,68,14),(215,'2018-06-25 01:38:57',148942504077557760,68,12),(216,'2018-06-25 01:38:58',148942504077557760,68,7),(217,'2018-06-25 01:39:00',148942504077557760,68,12),(218,'2018-06-25 01:39:07',148942504077557760,68,9),(219,'2018-06-25 01:39:15',148942504077557760,68,6),(220,'2018-06-25 01:39:20',201102155896193024,68,11),(221,'2018-06-25 01:39:21',201102155896193024,68,9),(222,'2018-06-25 01:48:48',200340393596944384,69,10),(223,'2018-06-25 01:48:49',148942504077557760,69,7),(224,'2018-06-25 01:48:49',201102155896193024,69,12),(225,'2018-06-25 01:48:50',200340393596944384,69,9),(226,'2018-06-25 01:48:51',148942504077557760,69,8),(227,'2018-06-25 01:48:51',201102155896193024,69,10),(228,'2018-06-25 01:48:51',201102155896193024,69,10),(229,'2018-06-25 01:48:52',163770616581718017,69,14),(230,'2018-06-25 01:48:52',201102155896193024,69,7),(231,'2018-06-25 01:48:53',131968711312539648,69,10),(232,'2018-06-25 01:48:53',201102155896193024,69,12),(233,'2018-06-25 02:08:46',201102155896193024,70,14),(234,'2018-06-25 02:08:47',148942504077557760,70,10),(235,'2018-06-25 02:08:48',201102155896193024,70,10),(236,'2018-06-25 02:08:49',148942504077557760,70,6),(237,'2018-06-25 02:08:49',201102155896193024,70,10),(238,'2018-06-25 02:08:49',201102155896193024,70,10),(239,'2018-06-25 02:08:50',201102155896193024,70,10),(240,'2018-06-25 02:08:50',200340393596944384,70,8),(241,'2018-06-25 02:08:50',148942504077557760,70,8),(242,'2018-06-25 02:08:50',262771588946984963,70,11),(243,'2018-06-25 02:08:51',218498162745278474,70,8),(244,'2018-06-25 02:08:52',262771588946984963,70,13),(245,'2018-06-25 02:08:52',148942504077557760,70,9),(246,'2018-06-25 02:58:44',201102155896193024,71,12),(247,'2018-06-25 02:58:44',201102155896193024,71,7),(248,'2018-06-25 02:58:45',201102155896193024,71,7),(249,'2018-06-25 02:58:45',200340393596944384,71,10),(250,'2018-06-25 02:58:45',200340393596944384,71,8),(251,'2018-06-25 02:58:46',201102155896193024,71,10),(252,'2018-06-25 02:58:46',201102155896193024,71,7),(253,'2018-06-25 02:58:46',457300954660995114,71,7),(254,'2018-06-25 02:58:48',200340393596944384,71,10),(255,'2018-06-25 02:58:48',457300954660995114,71,8),(256,'2018-06-25 02:58:49',200340393596944384,71,7),(257,'2018-06-25 02:58:50',457300954660995114,71,13),(258,'2018-06-25 02:58:51',200340393596944384,71,14),(259,'2018-06-25 02:58:52',457300954660995114,71,6),(260,'2018-06-25 02:58:52',218498162745278474,71,9),(261,'2018-06-25 02:58:54',457300954660995114,71,13),(262,'2018-06-25 02:58:57',218498162745278474,71,10),(263,'2018-06-25 02:59:01',218498162745278474,71,10),(264,'2018-06-25 03:08:47',201102155896193024,72,11),(265,'2018-06-25 03:08:47',457300954660995114,72,13),(266,'2018-06-25 03:08:47',201102155896193024,72,7),(267,'2018-06-25 03:08:48',201102155896193024,72,10),(268,'2018-06-25 03:08:48',201102155896193024,72,11),(269,'2018-06-25 03:08:48',201102155896193024,72,9),(270,'2018-06-25 03:08:49',457300954660995114,72,10),(271,'2018-06-25 03:08:50',457300954660995114,72,10),(272,'2018-06-25 03:08:53',457300954660995114,72,7),(273,'2018-06-25 03:08:54',131968711312539648,72,10),(274,'2018-06-25 03:08:58',131968711312539648,72,6),(275,'2018-06-25 03:08:58',457300954660995114,72,9),(276,'2018-06-25 03:09:00',131968711312539648,72,10),(277,'2018-06-25 03:09:05',131968711312539648,72,8),(278,'2018-06-25 03:09:06',200340393596944384,72,12),(279,'2018-06-25 03:09:10',200340393596944384,72,6),(280,'2018-06-25 03:09:12',200340393596944384,72,6),(281,'2018-06-25 03:09:12',131968711312539648,72,11),(282,'2018-06-25 03:09:14',200340393596944384,72,13),(283,'2018-06-25 03:09:16',200340393596944384,72,6),(284,'2018-06-25 03:09:17',218498162745278474,72,13),(285,'2018-06-25 03:09:22',218498162745278474,72,14),(286,'2018-06-25 03:09:28',218498162745278474,72,9),(287,'2018-06-25 03:09:33',218498162745278474,72,14),(288,'2018-06-25 03:18:45',201102155896193024,73,9),(289,'2018-06-25 03:18:45',201102155896193024,73,12),(290,'2018-06-25 03:18:46',201102155896193024,73,13),(291,'2018-06-25 03:18:46',201102155896193024,73,7),(292,'2018-06-25 03:18:47',201102155896193024,73,9),(293,'2018-06-25 03:18:47',200340393596944384,73,11),(294,'2018-06-25 03:18:50',457300954660995114,73,6),(295,'2018-06-25 03:18:50',200340393596944384,73,12),(296,'2018-06-25 03:18:50',163770616581718017,73,7),(297,'2018-06-25 03:18:51',457300954660995114,73,6),(298,'2018-06-25 03:18:53',200340393596944384,73,13),(299,'2018-06-25 03:18:54',457300954660995114,73,9),(300,'2018-06-25 03:18:54',218498162745278474,73,13),(301,'2018-06-25 03:18:54',200340393596944384,73,12),(302,'2018-06-25 03:18:56',457300954660995114,73,8),(303,'2018-06-25 03:18:56',200340393596944384,73,12),(304,'2018-06-25 03:18:58',457300954660995114,73,10),(305,'2018-06-25 03:19:01',218498162745278474,73,10),(306,'2018-06-25 03:19:08',218498162745278474,73,12),(307,'2018-06-25 03:19:09',163770616581718017,73,14),(308,'2018-06-25 03:19:12',163770616581718017,73,10),(309,'2018-06-25 03:19:13',218498162745278474,73,9),(310,'2018-06-25 03:19:13',163770616581718017,73,6),(311,'2018-06-25 03:19:15',163770616581718017,73,13),(312,'2018-06-25 03:19:17',218498162745278474,73,9),(313,'2018-06-25 03:20:07',131968711312539648,73,13),(314,'2018-06-25 03:20:11',131968711312539648,73,9),(315,'2018-06-25 03:58:44',201102155896193024,74,7),(316,'2018-06-25 03:58:45',201102155896193024,74,8),(317,'2018-06-25 03:58:46',131968711312539648,74,11),(318,'2018-06-25 03:58:47',236304169533833216,74,8),(319,'2018-06-25 03:58:47',131968711312539648,74,13),(320,'2018-06-25 03:58:47',459883167160205313,74,10),(321,'2018-06-25 03:58:48',131968711312539648,74,8),(322,'2018-06-25 03:58:49',201102155896193024,74,10),(323,'2018-06-25 03:58:49',163770616581718017,74,8),(324,'2018-06-25 03:58:49',236304169533833216,74,11),(325,'2018-06-25 03:58:49',201102155896193024,74,13),(326,'2018-06-25 03:58:50',236304169533833216,74,11),(327,'2018-06-25 03:58:50',201102155896193024,74,6),(328,'2018-06-25 03:58:50',131968711312539648,74,10),(329,'2018-06-25 03:58:50',236304169533833216,74,11),(330,'2018-06-25 03:58:50',236304169533833216,74,11),(331,'2018-06-25 03:58:51',204933415252787202,74,9),(332,'2018-06-25 03:58:51',131968711312539648,74,14),(333,'2018-06-25 03:58:52',459883167160205313,74,6),(334,'2018-06-25 03:58:52',459883167160205313,74,13),(335,'2018-06-25 03:58:52',459883167160205313,74,11),(336,'2018-06-25 03:58:53',459883167160205313,74,12),(337,'2018-06-25 03:58:55',185698541052755968,74,8),(338,'2018-06-25 03:58:56',163770616581718017,74,7),(339,'2018-06-25 03:59:00',163770616581718017,74,9),(340,'2018-06-25 03:59:03',204933415252787202,74,7),(341,'2018-06-25 03:59:03',163770616581718017,74,12),(342,'2018-06-25 03:59:05',163770616581718017,74,10),(343,'2018-06-25 04:18:45',201102155896193024,75,7),(344,'2018-06-25 04:18:45',201102155896193024,75,11),(345,'2018-06-25 04:18:46',201102155896193024,75,7),(346,'2018-06-25 04:18:46',201102155896193024,75,9),(347,'2018-06-25 04:18:46',201102155896193024,75,8),(348,'2018-06-25 04:18:47',185698541052755968,75,11),(349,'2018-06-25 04:18:47',204933415252787202,75,6),(350,'2018-06-25 04:18:48',185698541052755968,75,6),(351,'2018-06-25 04:18:49',204933415252787202,75,11),(352,'2018-06-25 04:18:49',218498162745278474,75,10),(353,'2018-06-25 04:18:50',457300954660995114,75,8),(354,'2018-06-25 04:18:50',185698541052755968,75,12),(355,'2018-06-25 04:18:51',185698541052755968,75,10),(356,'2018-06-25 04:18:51',185698541052755968,75,8),(357,'2018-06-25 04:18:52',204933415252787202,75,6),(358,'2018-06-25 04:18:52',457300954660995114,75,13),(359,'2018-06-25 04:18:52',131968711312539648,75,13),(360,'2018-06-25 04:18:53',218498162745278474,75,7),(361,'2018-06-25 04:18:53',459883167160205313,75,8),(362,'2018-06-25 04:18:54',204933415252787202,75,11),(363,'2018-06-25 04:18:54',459883167160205313,75,10),(364,'2018-06-25 04:18:54',457300954660995114,75,14),(365,'2018-06-25 04:18:55',459883167160205313,75,14),(366,'2018-06-25 04:18:55',131968711312539648,75,10),(367,'2018-06-25 04:38:49',201102155896193024,76,6),(368,'2018-06-25 04:38:50',201102155896193024,76,10),(369,'2018-06-25 04:38:50',236304169533833216,76,11),(370,'2018-06-25 04:38:50',201102155896193024,76,14),(371,'2018-06-25 04:38:51',236304169533833216,76,8),(372,'2018-06-25 04:38:51',201102155896193024,76,12),(373,'2018-06-25 04:38:51',236304169533833216,76,11),(374,'2018-06-25 04:38:51',201102155896193024,76,9),(375,'2018-06-25 04:38:51',236304169533833216,76,9),(376,'2018-06-25 04:38:52',457300954660995114,76,10),(377,'2018-06-25 04:38:52',204933415252787202,76,9),(378,'2018-06-25 04:38:52',236304169533833216,76,10),(379,'2018-06-25 04:38:53',204933415252787202,76,8),(380,'2018-06-25 04:38:53',204933415252787202,76,9),(381,'2018-06-25 04:38:54',457300954660995114,76,6),(382,'2018-06-25 04:38:54',204933415252787202,76,9),(383,'2018-06-25 04:38:54',204933415252787202,76,11),(384,'2018-06-25 04:38:56',457300954660995114,76,14),(385,'2018-06-25 04:38:58',457300954660995114,76,12),(386,'2018-06-25 04:39:01',459883167160205313,76,10),(387,'2018-06-25 04:39:02',457300954660995114,76,13),(388,'2018-06-25 04:48:45',457300954660995114,77,13),(389,'2018-06-25 04:48:46',204933415252787202,77,12),(390,'2018-06-25 04:48:47',204933415252787202,77,13),(391,'2018-06-25 04:48:47',457300954660995114,77,6),(392,'2018-06-25 04:48:47',204933415252787202,77,8),(393,'2018-06-25 04:48:48',204933415252787202,77,8),(394,'2018-06-25 04:48:48',236304169533833216,77,11),(395,'2018-06-25 04:48:55',218498162745278474,77,6),(396,'2018-06-25 04:48:55',236304169533833216,77,10),(397,'2018-06-25 04:48:55',457300954660995114,77,12),(398,'2018-06-25 04:48:56',236304169533833216,77,13),(399,'2018-06-25 04:48:56',236304169533833216,77,9),(400,'2018-06-25 04:48:56',236304169533833216,77,7),(401,'2018-06-25 04:48:56',457300954660995114,77,9),(402,'2018-06-25 04:48:56',201102155896193024,77,7),(403,'2018-06-25 04:48:56',201102155896193024,77,11),(404,'2018-06-25 04:48:56',218498162745278474,77,13),(405,'2018-06-25 04:48:56',457300954660995114,77,9),(406,'2018-06-25 04:48:56',201102155896193024,77,10),(407,'2018-06-25 04:48:56',201102155896193024,77,11),(408,'2018-06-25 04:48:56',218498162745278474,77,13),(409,'2018-06-25 04:48:58',201102155896193024,77,10),(410,'2018-06-25 04:49:00',218498162745278474,77,10),(411,'2018-06-25 04:49:00',185698541052755968,77,10),(412,'2018-06-25 04:49:01',185698541052755968,77,10),(413,'2018-06-25 04:49:01',185698541052755968,77,11),(414,'2018-06-25 04:49:02',185698541052755968,77,12),(415,'2018-06-25 04:49:02',185698541052755968,77,10),(416,'2018-06-25 05:08:45',201102155896193024,78,11),(417,'2018-06-25 05:08:45',201102155896193024,78,11),(418,'2018-06-25 05:08:46',201102155896193024,78,8),(419,'2018-06-25 05:08:46',457300954660995114,78,13),(420,'2018-06-25 05:08:46',201102155896193024,78,9),(421,'2018-06-25 05:08:47',201102155896193024,78,14),(422,'2018-06-25 05:08:47',457300954660995114,78,10),(423,'2018-06-25 05:08:49',218498162745278474,78,12),(424,'2018-06-25 05:08:49',457300954660995114,78,10),(425,'2018-06-25 05:08:51',457300954660995114,78,7),(426,'2018-06-25 05:08:53',457300954660995114,78,14),(427,'2018-06-25 05:08:53',459883167160205313,78,12),(428,'2018-06-25 05:08:54',459883167160205313,78,6),(429,'2018-06-25 05:08:55',459883167160205313,78,12),(430,'2018-06-25 05:08:55',236304169533833216,78,6),(431,'2018-06-25 05:08:55',459883167160205313,78,7),(432,'2018-06-25 05:08:56',218498162745278474,78,14),(433,'2018-06-25 05:08:56',459883167160205313,78,13),(434,'2018-06-25 05:09:00',131968711312539648,78,13),(435,'2018-06-25 05:18:45',201102155896193024,79,11),(436,'2018-06-25 05:18:46',201102155896193024,79,14),(437,'2018-06-25 05:18:47',201102155896193024,79,8),(438,'2018-06-25 05:18:47',201102155896193024,79,14),(439,'2018-06-25 05:18:48',201102155896193024,79,10),(440,'2018-06-25 05:18:48',218498162745278474,79,10),(441,'2018-06-25 05:18:50',236304169533833216,79,11),(442,'2018-06-25 05:18:53',218498162745278474,79,6),(443,'2018-06-25 05:18:56',236304169533833216,79,13),(444,'2018-06-25 05:18:57',457300954660995114,79,13),(445,'2018-06-25 05:18:57',218498162745278474,79,9),(446,'2018-06-25 05:28:45',236304169533833216,80,10),(447,'2018-06-25 05:28:45',201102155896193024,80,9),(448,'2018-06-25 05:28:45',236304169533833216,80,14),(449,'2018-06-25 05:28:45',201102155896193024,80,12),(450,'2018-06-25 05:28:46',236304169533833216,80,13),(451,'2018-06-25 05:28:46',201102155896193024,80,13),(452,'2018-06-25 05:28:46',236304169533833216,80,8),(453,'2018-06-25 05:28:47',236304169533833216,80,12),(454,'2018-06-25 05:28:47',201102155896193024,80,11),(455,'2018-06-25 05:28:47',201102155896193024,80,10),(456,'2018-06-25 05:28:51',131968711312539648,80,8),(457,'2018-06-25 05:28:51',459883167160205313,80,10),(458,'2018-06-25 05:28:52',459883167160205313,80,12),(459,'2018-06-25 05:28:52',131968711312539648,80,7),(460,'2018-06-25 05:28:53',459883167160205313,80,6),(461,'2018-06-25 05:28:53',459883167160205313,80,10),(462,'2018-06-25 05:28:53',131968711312539648,80,12),(463,'2018-06-25 05:38:45',201102155896193024,81,10),(464,'2018-06-25 05:38:45',457300954660995114,81,8),(465,'2018-06-25 05:38:45',201102155896193024,81,10),(466,'2018-06-25 05:38:45',236304169533833216,81,10),(467,'2018-06-25 05:38:46',201102155896193024,81,9),(468,'2018-06-25 05:38:46',201102155896193024,81,11),(469,'2018-06-25 05:38:47',236304169533833216,81,9),(470,'2018-06-25 05:38:47',236304169533833216,81,11),(471,'2018-06-25 05:38:47',201102155896193024,81,13),(472,'2018-06-25 05:38:49',236304169533833216,81,14),(473,'2018-06-25 05:38:50',236304169533833216,81,10),(474,'2018-06-25 05:38:50',457300954660995114,81,12),(475,'2018-06-25 05:38:52',457300954660995114,81,8),(476,'2018-06-25 05:38:53',459883167160205313,81,11),(477,'2018-06-25 05:38:54',459883167160205313,81,9),(478,'2018-06-25 05:38:54',457300954660995114,81,10),(479,'2018-06-25 05:38:55',459883167160205313,81,8),(480,'2018-06-25 05:38:55',459883167160205313,81,10),(481,'2018-06-25 05:38:56',459883167160205313,81,6),(482,'2018-06-25 05:38:56',457300954660995114,81,13),(483,'2018-06-25 05:38:59',131968711312539648,81,7),(484,'2018-06-25 05:39:00',131968711312539648,81,9),(485,'2018-06-25 05:39:02',131968711312539648,81,8),(486,'2018-06-25 05:39:03',131968711312539648,81,12),(487,'2018-06-25 05:39:05',131968711312539648,81,10),(488,'2018-06-25 05:39:40',185698541052755968,81,11),(489,'2018-06-25 05:39:43',185698541052755968,81,13),(490,'2018-06-25 06:18:47',457300954660995114,82,10),(491,'2018-06-25 06:18:48',236304169533833216,82,9),(492,'2018-06-25 06:18:49',204933415252787202,82,12),(493,'2018-06-25 06:18:49',236304169533833216,82,7),(494,'2018-06-25 06:18:49',185698541052755968,82,6),(495,'2018-06-25 06:18:50',457300954660995114,82,7),(496,'2018-06-25 06:18:50',236304169533833216,82,9),(497,'2018-06-25 06:18:50',236304169533833216,82,14),(498,'2018-06-25 06:18:51',457300954660995114,82,13),(499,'2018-06-25 06:18:51',185698541052755968,82,13),(500,'2018-06-25 06:18:52',201102155896193024,82,12),(501,'2018-06-25 06:18:52',236304169533833216,82,14),(502,'2018-06-25 06:18:53',201102155896193024,82,8),(503,'2018-06-25 06:18:53',204933415252787202,82,11),(504,'2018-06-25 06:18:53',201102155896193024,82,11),(505,'2018-06-25 06:18:53',457300954660995114,82,10),(506,'2018-06-25 06:18:53',185698541052755968,82,6),(507,'2018-06-25 06:18:54',201102155896193024,82,7),(508,'2018-06-25 06:18:54',201102155896193024,82,12),(509,'2018-06-25 06:18:55',457300954660995114,82,14),(510,'2018-06-25 06:18:56',204933415252787202,82,14),(511,'2018-06-25 06:28:44',201102155896193024,83,7),(512,'2018-06-25 06:28:44',236304169533833216,83,10),(513,'2018-06-25 06:28:45',236304169533833216,83,10),(514,'2018-06-25 06:28:45',201102155896193024,83,10),(515,'2018-06-25 06:28:45',236304169533833216,83,12),(516,'2018-06-25 06:28:45',201102155896193024,83,13),(517,'2018-06-25 06:28:46',236304169533833216,83,14),(518,'2018-06-25 06:28:46',201102155896193024,83,9),(519,'2018-06-25 06:28:46',201102155896193024,83,9),(520,'2018-06-25 06:28:47',457300954660995114,83,9),(521,'2018-06-25 06:28:47',236304169533833216,83,9),(522,'2018-06-25 06:28:47',185698541052755968,83,10),(523,'2018-06-25 06:28:48',457300954660995114,83,7),(524,'2018-06-25 06:28:49',131968711312539648,83,12),(525,'2018-06-25 06:38:45',201102155896193024,84,7),(526,'2018-06-25 06:38:45',201102155896193024,84,13),(527,'2018-06-25 06:38:46',201102155896193024,84,8),(528,'2018-06-25 06:38:46',201102155896193024,84,7),(529,'2018-06-25 06:38:46',201102155896193024,84,13),(530,'2018-06-25 06:38:48',204933415252787202,84,12),(531,'2018-06-25 06:38:49',204933415252787202,84,8),(532,'2018-06-25 06:38:49',131968711312539648,84,7),(533,'2018-06-25 06:38:50',204933415252787202,84,9),(534,'2018-06-25 06:38:51',457300954660995114,84,14),(535,'2018-06-25 06:38:51',459883167160205313,84,9),(536,'2018-06-25 06:38:51',131968711312539648,84,6),(537,'2018-06-25 06:38:51',204933415252787202,84,7),(538,'2018-06-25 06:38:51',459883167160205313,84,7),(539,'2018-06-25 06:38:52',459883167160205313,84,11),(540,'2018-06-25 06:38:53',204933415252787202,84,6),(541,'2018-06-25 07:28:45',201102155896193024,85,13),(542,'2018-06-25 07:28:45',201102155896193024,85,11),(543,'2018-06-25 07:28:46',201102155896193024,85,9),(544,'2018-06-25 07:28:46',201102155896193024,85,7),(545,'2018-06-25 07:28:46',204933415252787202,85,10),(546,'2018-06-25 07:28:47',201102155896193024,85,6),(547,'2018-06-25 07:28:47',204933415252787202,85,12),(548,'2018-06-25 07:28:48',131968711312539648,85,10),(549,'2018-06-25 07:28:48',131968711312539648,85,14),(550,'2018-06-25 07:28:49',204933415252787202,85,8),(551,'2018-06-25 07:28:49',131968711312539648,85,13),(552,'2018-06-25 07:28:50',457300954660995114,85,14),(553,'2018-06-25 07:28:50',459883167160205313,85,14),(554,'2018-06-25 07:28:50',459883167160205313,85,12),(555,'2018-06-25 07:48:49',204933415252787202,86,6),(556,'2018-06-25 07:48:49',457300954660995114,86,11),(557,'2018-06-25 07:48:50',204933415252787202,86,9),(558,'2018-06-25 07:48:51',204933415252787202,86,13),(559,'2018-06-25 07:48:52',131968711312539648,86,8),(560,'2018-06-25 07:48:53',204933415252787202,86,9),(561,'2018-06-25 07:48:53',131968711312539648,86,8),(562,'2018-06-25 07:48:54',204933415252787202,86,13),(563,'2018-06-25 07:48:54',131968711312539648,86,13),(564,'2018-06-25 07:48:55',131968711312539648,86,10),(565,'2018-06-25 07:48:56',457300954660995114,86,12),(566,'2018-06-25 07:48:57',131968711312539648,86,7),(567,'2018-06-25 07:48:58',457300954660995114,86,11),(568,'2018-06-25 07:49:00',457300954660995114,86,14),(569,'2018-06-25 07:49:03',457300954660995114,86,7),(570,'2018-06-25 07:50:27',185698541052755968,86,13),(571,'2018-06-25 07:50:30',185698541052755968,86,14),(572,'2018-06-25 07:50:33',185698541052755968,86,12),(573,'2018-06-25 07:50:36',185698541052755968,86,10),(574,'2018-06-25 07:50:39',185698541052755968,86,13),(575,'2018-06-25 07:50:47',457300954660995114,86,10),(576,'2018-06-25 07:50:52',185698541052755968,86,8),(577,'2018-06-25 07:50:58',204933415252787202,86,9),(578,'2018-06-25 07:51:04',131968711312539648,86,8),(579,'2018-06-25 07:53:02',131968711312539648,86,10),(580,'2018-06-25 07:53:06',185698541052755968,86,6),(581,'2018-06-25 07:53:08',204933415252787202,86,10),(582,'2018-06-25 07:53:10',457300954660995114,86,9),(583,'2018-06-25 07:58:45',457300954660995114,87,7),(584,'2018-06-25 07:58:46',204933415252787202,87,10),(585,'2018-06-25 07:58:47',204933415252787202,87,12),(586,'2018-06-25 07:58:48',457300954660995114,87,10),(587,'2018-06-25 07:58:48',204933415252787202,87,13),(588,'2018-06-25 07:58:50',457300954660995114,87,11),(589,'2018-06-25 07:58:51',131968711312539648,87,14),(590,'2018-06-25 07:58:53',131968711312539648,87,10),(591,'2018-06-25 07:58:55',131968711312539648,87,11),(592,'2018-06-25 08:00:42',185698541052755968,87,10),(593,'2018-06-25 08:00:44',131968711312539648,87,14),(594,'2018-06-25 08:00:45',185698541052755968,87,9),(595,'2018-06-25 08:00:46',457300954660995114,87,9),(596,'2018-06-25 08:00:48',185698541052755968,87,6),(597,'2018-06-25 08:00:57',204933415252787202,87,6),(598,'2018-06-25 08:00:59',185698541052755968,87,6),(599,'2018-06-25 08:02:45',131968711312539648,87,11),(600,'2018-06-25 08:02:46',457300954660995114,87,13),(601,'2018-06-25 08:08:46',204933415252787202,88,11),(602,'2018-06-25 08:08:47',457300954660995114,88,10),(603,'2018-06-25 08:08:47',204933415252787202,88,10),(604,'2018-06-25 08:08:48',204933415252787202,88,13),(605,'2018-06-25 08:08:49',457300954660995114,88,14),(606,'2018-06-25 08:08:52',457300954660995114,88,11),(607,'2018-06-25 08:08:53',131968711312539648,88,14),(608,'2018-06-25 08:08:58',131968711312539648,88,9),(609,'2018-06-25 08:09:00',185698541052755968,88,13),(610,'2018-06-25 08:09:01',204933415252787202,88,12),(611,'2018-06-25 08:09:03',185698541052755968,88,8),(612,'2018-06-25 08:09:06',185698541052755968,88,11),(613,'2018-06-25 08:09:09',131968711312539648,88,14),(614,'2018-06-25 08:09:09',185698541052755968,88,8),(615,'2018-06-25 08:10:45',131968711312539648,88,9),(616,'2018-06-25 08:10:50',204933415252787202,88,13),(617,'2018-06-25 08:10:51',457300954660995114,88,10),(618,'2018-06-25 08:10:52',185698541052755968,88,10),(619,'2018-06-25 08:12:43',131968711312539648,88,12),(620,'2018-06-25 08:18:46',457300954660995114,89,13),(621,'2018-06-25 08:18:49',457300954660995114,89,6),(622,'2018-06-25 08:18:51',457300954660995114,89,8),(623,'2018-06-25 08:18:52',131968711312539648,89,7),(624,'2018-06-25 08:18:53',457300954660995114,89,9),(625,'2018-06-25 08:18:54',131968711312539648,89,14),(626,'2018-06-25 08:18:55',204933415252787202,89,6),(627,'2018-06-25 08:18:57',131968711312539648,89,14),(628,'2018-06-25 08:19:00',204933415252787202,89,9),(629,'2018-06-25 08:19:02',204933415252787202,89,11),(630,'2018-06-25 08:19:05',204933415252787202,89,12),(631,'2018-06-25 08:19:34',185698541052755968,89,9),(632,'2018-06-25 08:19:39',185698541052755968,89,8),(633,'2018-06-25 08:19:42',185698541052755968,89,13),(634,'2018-06-25 08:19:46',185698541052755968,89,7),(635,'2018-06-25 08:20:48',131968711312539648,89,10),(636,'2018-06-25 08:20:49',185698541052755968,89,13),(637,'2018-06-25 08:21:00',457300954660995114,89,7),(638,'2018-06-25 08:21:03',204933415252787202,89,9),(639,'2018-06-25 08:22:46',131968711312539648,89,8),(640,'2018-06-25 08:23:01',185698541052755968,89,9),(641,'2018-06-25 08:23:13',457300954660995114,89,9),(642,'2018-06-25 08:23:22',204933415252787202,89,11),(643,'2018-06-25 08:24:49',457300954660995114,89,10),(644,'2018-06-25 08:24:49',131968711312539648,89,7),(645,'2018-06-25 08:24:54',185698541052755968,89,13),(646,'2018-06-25 08:25:09',204933415252787202,89,10),(647,'2018-06-25 08:26:45',457300954660995114,89,10),(648,'2018-06-25 08:26:45',204933415252787202,89,13),(649,'2018-06-25 08:48:50',457300954660995114,90,11),(650,'2018-06-25 08:48:52',204933415252787202,90,6),(651,'2018-06-25 08:48:53',457300954660995114,90,11),(652,'2018-06-25 08:48:53',204933415252787202,90,10),(653,'2018-06-25 08:48:54',204933415252787202,90,8),(654,'2018-06-25 08:48:55',457300954660995114,90,13),(655,'2018-06-25 08:48:56',204933415252787202,90,11),(656,'2018-06-25 08:48:57',457300954660995114,90,10),(657,'2018-06-25 08:48:57',204933415252787202,90,14),(658,'2018-06-25 08:48:58',131968711312539648,90,6),(659,'2018-06-25 08:48:59',457300954660995114,90,9),(660,'2018-06-25 08:49:00',131968711312539648,90,10),(661,'2018-06-25 08:49:01',131968711312539648,90,7),(662,'2018-06-25 08:49:02',131968711312539648,90,12),(663,'2018-06-25 08:49:03',131968711312539648,90,10),(664,'2018-06-25 08:49:29',274301199841361920,90,13),(665,'2018-06-25 08:58:45',204933415252787202,91,13),(666,'2018-06-25 08:58:46',204933415252787202,91,10),(667,'2018-06-25 08:58:46',457300954660995114,91,12),(668,'2018-06-25 08:58:48',204933415252787202,91,9),(669,'2018-06-25 08:58:50',204933415252787202,91,8),(670,'2018-06-25 08:58:50',131968711312539648,91,9),(671,'2018-06-25 08:58:52',131968711312539648,91,12),(672,'2018-06-25 08:58:53',131968711312539648,91,7),(673,'2018-06-25 08:58:53',204933415252787202,91,8),(674,'2018-06-25 08:58:54',131968711312539648,91,9),(675,'2018-06-25 08:58:55',131968711312539648,91,12),(676,'2018-06-25 08:58:56',457300954660995114,91,12),(677,'2018-06-25 09:18:47',131968711312539648,92,14),(678,'2018-06-25 09:18:48',131968711312539648,92,8),(679,'2018-06-25 09:18:49',131968711312539648,92,9),(680,'2018-06-25 09:18:51',131968711312539648,92,11),(681,'2018-06-25 09:18:51',204933415252787202,92,10),(682,'2018-06-25 09:18:52',131968711312539648,92,7),(683,'2018-06-25 09:19:01',204933415252787202,92,14),(684,'2018-06-25 09:19:02',204933415252787202,92,12),(685,'2018-06-25 09:19:04',204933415252787202,92,9),(686,'2018-06-25 09:19:05',204933415252787202,92,11),(687,'2018-06-25 09:19:06',457300954660995114,92,13),(688,'2018-06-25 09:19:09',457300954660995114,92,11),(689,'2018-06-25 09:19:11',457300954660995114,92,6),(690,'2018-06-25 09:19:12',185698541052755968,92,10),(691,'2018-06-25 09:19:14',457300954660995114,92,9),(692,'2018-06-25 09:28:45',200340393596944384,93,6),(693,'2018-06-25 09:28:47',131968711312539648,93,8),(694,'2018-06-25 09:28:47',200340393596944384,93,6),(695,'2018-06-25 09:28:48',131968711312539648,93,10),(696,'2018-06-25 09:28:49',131968711312539648,93,13),(697,'2018-06-25 09:28:50',200340393596944384,93,13),(698,'2018-06-25 09:28:50',131968711312539648,93,14),(699,'2018-06-25 09:28:51',131968711312539648,93,14),(700,'2018-06-25 09:28:52',148942504077557760,93,7),(701,'2018-06-25 09:28:52',200340393596944384,93,13),(702,'2018-06-25 09:28:54',148942504077557760,93,13),(703,'2018-06-25 09:28:55',200340393596944384,93,11),(704,'2018-06-25 09:28:56',204933415252787202,93,10),(705,'2018-06-25 09:28:56',148942504077557760,93,13),(706,'2018-06-25 09:28:57',204933415252787202,93,12),(707,'2018-06-25 09:28:58',148942504077557760,93,7),(708,'2018-06-25 09:28:58',204933415252787202,93,11),(709,'2018-06-25 09:28:59',204933415252787202,93,10),(710,'2018-06-25 09:29:01',148942504077557760,93,13),(711,'2018-06-25 09:29:02',204933415252787202,93,10),(712,'2018-06-25 09:29:43',457300954660995114,93,10),(713,'2018-06-25 09:29:47',457300954660995114,93,14),(714,'2018-06-25 09:38:48',200340393596944384,94,9),(715,'2018-06-25 09:38:49',185698541052755968,94,10),(716,'2018-06-25 09:38:50',457300954660995114,94,11),(717,'2018-06-25 09:38:50',200340393596944384,94,10),(718,'2018-06-25 09:38:52',185698541052755968,94,7),(719,'2018-06-25 09:38:52',457300954660995114,94,11),(720,'2018-06-25 09:38:53',200340393596944384,94,10),(721,'2018-06-25 09:38:55',200340393596944384,94,9),(722,'2018-06-25 09:38:55',185698541052755968,94,11),(723,'2018-06-25 09:38:56',457300954660995114,94,10),(724,'2018-06-25 09:38:57',200340393596944384,94,6),(725,'2018-06-25 09:38:57',185698541052755968,94,12),(726,'2018-06-25 09:38:59',457300954660995114,94,10),(727,'2018-06-25 09:39:00',185698541052755968,94,7),(728,'2018-06-25 09:39:02',457300954660995114,94,11),(729,'2018-06-25 09:39:03',148942504077557760,94,12),(730,'2018-06-25 09:39:05',148942504077557760,94,6),(731,'2018-06-25 09:39:06',131968711312539648,94,7),(732,'2018-06-25 09:39:07',148942504077557760,94,12),(733,'2018-06-25 09:39:10',148942504077557760,94,14),(734,'2018-06-25 09:39:11',131968711312539648,94,14),(735,'2018-06-25 09:39:12',148942504077557760,94,8),(736,'2018-06-25 09:39:13',131968711312539648,94,14),(737,'2018-06-25 09:39:14',131968711312539648,94,13),(738,'2018-06-25 09:39:16',131968711312539648,94,6),(739,'2018-06-25 09:39:21',274301199841361920,94,10),(740,'2018-06-25 09:39:22',274301199841361920,94,6),(741,'2018-06-25 09:39:23',274301199841361920,94,11),(742,'2018-06-25 09:39:23',274301199841361920,94,13),(743,'2018-06-25 09:39:23',274301199841361920,94,13),(744,'2018-06-25 09:48:44',200340393596944384,95,7),(745,'2018-06-25 09:48:45',457300954660995114,95,13),(746,'2018-06-25 09:48:45',204933415252787202,95,10),(747,'2018-06-25 09:48:47',185698541052755968,95,9),(748,'2018-06-25 09:48:48',204933415252787202,95,10),(749,'2018-06-25 09:48:48',457300954660995114,95,14),(750,'2018-06-25 09:48:48',200340393596944384,95,7),(751,'2018-06-25 09:48:49',204933415252787202,95,6),(752,'2018-06-25 09:48:50',185698541052755968,95,9),(753,'2018-06-25 09:48:51',200340393596944384,95,6),(754,'2018-06-25 09:48:51',204933415252787202,95,13),(755,'2018-06-25 09:48:53',200340393596944384,95,11),(756,'2018-06-25 09:48:53',204933415252787202,95,11),(757,'2018-06-25 09:48:53',185698541052755968,95,6),(758,'2018-06-25 09:48:56',457300954660995114,95,6),(759,'2018-06-25 09:48:56',200340393596944384,95,12),(760,'2018-06-25 09:49:00',457300954660995114,95,10),(761,'2018-06-25 09:49:04',457300954660995114,95,9),(762,'2018-06-25 09:49:12',274301199841361920,95,11),(763,'2018-06-25 09:49:14',274301199841361920,95,11),(764,'2018-06-25 09:49:17',274301199841361920,95,14),(765,'2018-06-25 09:49:20',274301199841361920,95,14),(766,'2018-06-25 09:49:20',262771588946984963,95,8),(767,'2018-06-25 09:49:21',274301199841361920,95,11),(768,'2018-06-25 09:49:22',262771588946984963,95,10),(769,'2018-06-25 09:49:24',262771588946984963,95,6),(770,'2018-06-25 09:49:25',262771588946984963,95,14),(771,'2018-06-25 09:49:26',185698541052755968,95,14),(772,'2018-06-25 09:58:45',457300954660995114,96,13),(773,'2018-06-25 09:58:46',274301199841361920,96,8),(774,'2018-06-25 09:58:47',148942504077557760,96,6),(775,'2018-06-25 09:58:48',274301199841361920,96,9),(776,'2018-06-25 09:58:49',148942504077557760,96,6),(777,'2018-06-25 09:58:49',200340393596944384,96,9),(778,'2018-06-25 09:58:50',148942504077557760,96,7),(779,'2018-06-25 09:58:50',274301199841361920,96,14),(780,'2018-06-25 09:58:50',204933415252787202,96,10),(781,'2018-06-25 09:58:51',148942504077557760,96,13),(782,'2018-06-25 09:58:51',204933415252787202,96,14),(783,'2018-06-25 09:58:51',200340393596944384,96,8),(784,'2018-06-25 10:08:45',200340393596944384,97,8),(785,'2018-06-25 10:08:45',457300954660995114,97,9),(786,'2018-06-25 10:08:47',200340393596944384,97,6),(787,'2018-06-25 10:08:47',457300954660995114,97,9),(788,'2018-06-25 10:08:48',185698541052755968,97,10),(789,'2018-06-25 10:08:48',200340393596944384,97,9),(790,'2018-06-25 10:08:49',274301199841361920,97,10),(791,'2018-06-25 10:08:49',457300954660995114,97,14),(792,'2018-06-25 10:08:50',274301199841361920,97,7),(793,'2018-06-25 10:08:50',185698541052755968,97,10),(794,'2018-06-25 10:08:50',274301199841361920,97,6),(795,'2018-06-25 10:08:50',200340393596944384,97,14),(796,'2018-06-25 10:08:51',274301199841361920,97,14),(797,'2018-06-25 10:08:52',457300954660995114,97,12),(798,'2018-06-25 10:08:52',200340393596944384,97,12),(799,'2018-06-25 10:08:52',274301199841361920,97,9),(800,'2018-06-25 10:08:53',185698541052755968,97,9),(801,'2018-06-25 10:08:55',131968711312539648,97,6),(802,'2018-06-25 10:08:55',185698541052755968,97,12),(803,'2018-06-25 10:08:55',131968711312539648,97,12),(804,'2018-06-25 10:08:56',131968711312539648,97,9),(805,'2018-06-25 10:18:47',185698541052755968,98,13),(806,'2018-06-25 10:18:47',457300954660995114,98,10),(807,'2018-06-25 10:18:47',262771588946984963,98,14),(808,'2018-06-25 10:18:47',131968711312539648,98,7),(809,'2018-06-25 10:18:49',262771588946984963,98,8),(810,'2018-06-25 10:18:49',185698541052755968,98,13),(811,'2018-06-25 10:18:49',131968711312539648,98,6),(812,'2018-06-25 10:18:50',457300954660995114,98,10),(813,'2018-06-25 10:18:50',131968711312539648,98,14),(814,'2018-06-25 10:18:51',262771588946984963,98,8),(815,'2018-06-25 10:18:51',131968711312539648,98,6),(816,'2018-06-25 10:18:51',185698541052755968,98,13),(817,'2018-06-25 10:18:52',457300954660995114,98,10),(818,'2018-06-25 10:38:47',457300954660995114,99,12),(819,'2018-06-25 10:38:49',457300954660995114,99,10),(820,'2018-06-25 10:38:50',262771588946984963,99,9),(821,'2018-06-25 10:38:51',131968711312539648,99,10),(822,'2018-06-25 10:38:51',262771588946984963,99,12),(823,'2018-06-25 10:38:52',457300954660995114,99,7),(824,'2018-06-25 10:38:52',262771588946984963,99,12),(825,'2018-06-25 10:38:54',262771588946984963,99,10),(826,'2018-06-25 10:38:55',457300954660995114,99,8),(827,'2018-06-25 10:38:55',262771588946984963,99,14),(828,'2018-06-25 10:38:57',457300954660995114,99,6),(829,'2018-06-25 10:39:01',131968711312539648,99,8),(830,'2018-06-25 10:39:01',131968711312539648,99,14),(831,'2018-06-25 10:48:44',457300954660995114,100,14),(832,'2018-06-25 10:48:45',274301199841361920,100,10),(833,'2018-06-25 10:48:46',274301199841361920,100,11),(834,'2018-06-25 10:48:46',274301199841361920,100,10),(835,'2018-06-25 10:48:46',457300954660995114,100,13),(836,'2018-06-25 10:48:47',274301199841361920,100,11),(837,'2018-06-25 10:48:47',274301199841361920,100,6),(838,'2018-06-25 10:48:48',131968711312539648,100,10),(839,'2018-06-25 10:48:48',185698541052755968,100,11),(840,'2018-06-25 10:48:49',457300954660995114,100,10),(841,'2018-06-25 10:48:49',131968711312539648,100,8),(842,'2018-06-25 10:48:50',131968711312539648,100,10),(843,'2018-06-25 10:48:50',200340393596944384,100,6),(844,'2018-06-25 10:48:51',457300954660995114,100,6),(845,'2018-06-25 10:48:51',131968711312539648,100,13),(846,'2018-06-25 10:48:51',185698541052755968,100,11),(847,'2018-06-25 10:48:52',131968711312539648,100,13),(848,'2018-06-25 10:48:53',457300954660995114,100,11),(849,'2018-06-25 10:58:45',457300954660995114,101,14),(850,'2018-06-25 10:58:45',274301199841361920,101,14),(851,'2018-06-25 10:58:46',274301199841361920,101,13),(852,'2018-06-25 10:58:46',131968711312539648,101,11),(853,'2018-06-25 10:58:47',274301199841361920,101,13),(854,'2018-06-25 10:58:47',131968711312539648,101,10),(855,'2018-06-25 10:58:47',274301199841361920,101,6),(856,'2018-06-25 10:58:47',274301199841361920,101,10),(857,'2018-06-25 10:58:47',457300954660995114,101,9),(858,'2018-06-25 10:58:48',131968711312539648,101,9),(859,'2018-06-25 10:58:48',131968711312539648,101,11),(860,'2018-06-25 10:58:49',131968711312539648,101,14),(861,'2018-06-25 10:58:49',457300954660995114,101,6),(862,'2018-06-25 10:58:52',457300954660995114,101,7),(863,'2018-06-25 10:58:54',457300954660995114,101,11),(864,'2018-06-25 11:00:00',297748308523483138,101,11),(865,'2018-06-25 11:00:02',297748308523483138,101,7),(866,'2018-06-25 11:48:45',457300954660995114,102,13),(867,'2018-06-25 11:48:47',457300954660995114,102,11),(868,'2018-06-25 11:48:49',457300954660995114,102,8),(869,'2018-06-25 11:48:51',457300954660995114,102,14),(870,'2018-06-25 11:48:53',204933415252787202,102,7),(871,'2018-06-25 11:48:54',457300954660995114,102,6),(872,'2018-06-25 11:48:54',460761978135248896,102,8),(873,'2018-06-25 11:48:54',274301199841361920,102,10),(874,'2018-06-25 11:48:55',204933415252787202,102,9),(875,'2018-06-25 11:48:56',297748308523483138,102,10),(876,'2018-06-25 11:48:56',274301199841361920,102,10),(877,'2018-06-25 11:48:56',204933415252787202,102,7),(878,'2018-06-25 11:48:57',274301199841361920,102,12),(879,'2018-06-25 11:48:57',274301199841361920,102,6),(880,'2018-06-25 11:48:57',460761978135248896,102,10),(881,'2018-06-25 11:48:57',204933415252787202,102,10),(882,'2018-06-25 11:48:57',274301199841361920,102,13),(883,'2018-06-25 11:48:58',297748308523483138,102,11),(884,'2018-06-25 11:48:58',204933415252787202,102,13),(885,'2018-06-25 11:48:59',424563962303086594,102,10),(886,'2018-06-25 11:49:00',200340393596944384,102,9),(887,'2018-06-25 11:49:00',460761978135248896,102,7),(888,'2018-06-25 11:49:02',297748308523483138,102,10),(889,'2018-06-25 12:28:44',200340393596944384,103,10),(890,'2018-06-25 12:28:46',200340393596944384,103,10),(891,'2018-06-25 12:28:47',204933415252787202,103,9),(892,'2018-06-25 12:28:47',200340393596944384,103,11),(893,'2018-06-25 12:28:48',262771588946984963,103,7),(894,'2018-06-25 12:28:49',204933415252787202,103,10),(895,'2018-06-25 12:28:49',185698541052755968,103,7),(896,'2018-06-25 12:28:49',200340393596944384,103,8),(897,'2018-06-25 12:28:49',297748308523483138,103,6),(898,'2018-06-25 12:28:49',262771588946984963,103,13),(899,'2018-06-25 12:28:50',204933415252787202,103,12),(900,'2018-06-25 12:28:50',424563962303086594,103,12),(901,'2018-06-25 12:28:50',262771588946984963,103,7),(902,'2018-06-25 12:28:51',297748308523483138,103,9),(903,'2018-06-25 12:28:51',204933415252787202,103,8),(904,'2018-06-25 12:28:51',200340393596944384,103,8),(905,'2018-06-25 12:28:51',185698541052755968,103,13),(906,'2018-06-25 13:18:45',131968711312539648,104,7),(907,'2018-06-25 13:18:45',131968711312539648,104,6),(908,'2018-06-25 13:18:46',131968711312539648,104,6),(909,'2018-06-25 13:18:47',204933415252787202,104,12),(910,'2018-06-25 13:18:47',131968711312539648,104,10),(911,'2018-06-25 13:18:47',200340393596944384,104,12),(912,'2018-06-25 13:18:47',204933415252787202,104,7),(913,'2018-06-25 13:18:48',131968711312539648,104,7),(914,'2018-06-25 13:18:48',204933415252787202,104,11),(915,'2018-06-25 13:18:49',204933415252787202,104,6),(916,'2018-06-25 13:18:49',200340393596944384,104,8),(917,'2018-06-25 13:18:49',204933415252787202,104,6),(918,'2018-06-25 13:18:56',200340393596944384,104,8),(919,'2018-06-25 13:18:58',200340393596944384,104,8),(920,'2018-06-25 13:19:00',200340393596944384,104,7),(921,'2018-06-25 13:19:26',454823752925052930,104,7),(922,'2018-06-25 13:19:31',454823752925052930,104,6),(923,'2018-06-25 13:19:37',454823752925052930,104,9),(924,'2018-06-25 13:19:38',454823752925052930,104,10),(925,'2018-06-25 13:19:40',454823752925052930,104,7),(926,'2018-06-25 13:20:32',262771588946984963,104,10),(927,'2018-06-25 13:20:33',262771588946984963,104,11),(928,'2018-06-25 13:20:33',262771588946984963,104,6),(929,'2018-06-25 13:20:34',262771588946984963,104,8),(930,'2018-06-25 13:20:35',262771588946984963,104,14),(931,'2018-06-25 13:20:43',200340393596944384,104,14),(932,'2018-06-25 13:20:43',131968711312539648,104,7),(933,'2018-06-25 13:20:44',185698541052755968,104,8),(934,'2018-06-25 13:20:49',142612779377885185,104,9),(935,'2018-06-25 13:20:49',185698541052755968,104,9),(936,'2018-06-25 13:20:53',185698541052755968,104,8),(937,'2018-06-25 13:38:44',200340393596944384,105,7),(938,'2018-06-25 13:38:45',262771588946984963,105,9),(939,'2018-06-25 13:38:45',262771588946984963,105,12),(940,'2018-06-25 13:38:45',274301199841361920,105,10),(941,'2018-06-25 13:38:46',262771588946984963,105,12),(942,'2018-06-25 13:38:46',131968711312539648,105,10),(943,'2018-06-25 13:38:46',262771588946984963,105,14),(944,'2018-06-25 13:38:46',200340393596944384,105,13),(945,'2018-06-25 13:38:46',131968711312539648,105,12),(946,'2018-06-25 13:38:46',262771588946984963,105,10),(947,'2018-06-25 13:38:47',274301199841361920,105,6),(948,'2018-06-25 13:38:47',274301199841361920,105,9),(949,'2018-06-25 13:38:47',131968711312539648,105,6),(950,'2018-06-25 13:38:47',274301199841361920,105,11),(951,'2018-06-25 13:58:44',201102155896193024,106,10),(952,'2018-06-25 13:58:44',274301199841361920,106,12),(953,'2018-06-25 13:58:45',201102155896193024,106,11),(954,'2018-06-25 13:58:45',274301199841361920,106,6),(955,'2018-06-25 13:58:45',262771588946984963,106,13),(956,'2018-06-25 13:58:45',274301199841361920,106,10),(957,'2018-06-25 13:58:45',201102155896193024,106,6),(958,'2018-06-25 13:58:45',274301199841361920,106,14),(959,'2018-06-25 13:58:45',262771588946984963,106,6),(960,'2018-06-25 13:58:45',200340393596944384,106,9),(961,'2018-06-25 13:58:45',274301199841361920,106,10),(962,'2018-06-25 13:58:45',262771588946984963,106,13),(963,'2018-06-25 13:58:46',201102155896193024,106,12),(964,'2018-06-25 14:38:43',262771588946984963,107,6),(965,'2018-06-25 14:38:43',262771588946984963,107,11),(966,'2018-06-25 14:38:44',200340393596944384,107,11),(967,'2018-06-25 14:38:44',200340393596944384,107,8),(968,'2018-06-25 14:38:44',262771588946984963,107,13),(969,'2018-06-25 14:38:44',201102155896193024,107,8),(970,'2018-06-25 14:38:44',262771588946984963,107,11),(971,'2018-06-25 14:38:45',201102155896193024,107,7),(972,'2018-06-25 14:38:45',262771588946984963,107,6),(973,'2018-06-25 14:38:45',201102155896193024,107,14),(974,'2018-06-25 14:38:45',201102155896193024,107,6),(975,'2018-06-25 14:38:47',201102155896193024,107,10),(976,'2018-06-25 14:38:47',200340393596944384,107,8),(977,'2018-06-25 14:38:49',200340393596944384,107,13),(978,'2018-06-25 14:38:52',200340393596944384,107,6),(979,'2018-06-25 14:38:56',459876383431327746,107,8),(980,'2018-06-25 14:38:57',459876383431327746,107,14),(981,'2018-06-25 14:38:58',459876383431327746,107,13),(982,'2018-06-25 14:39:07',459876383431327746,107,7),(983,'2018-06-25 14:39:09',459876383431327746,107,11),(984,'2018-06-25 14:39:27',454823752925052930,107,13),(985,'2018-06-25 14:39:27',297748308523483138,107,8),(986,'2018-06-25 14:39:29',454823752925052930,107,6),(987,'2018-06-25 14:39:30',297748308523483138,107,11),(988,'2018-06-25 14:39:32',274301199841361920,107,7),(989,'2018-06-25 14:39:33',297748308523483138,107,8),(990,'2018-06-25 14:39:34',274301199841361920,107,8),(991,'2018-06-25 14:48:43',200340393596944384,108,11),(992,'2018-06-25 14:48:43',262771588946984963,108,13),(993,'2018-06-25 14:48:44',262771588946984963,108,10),(994,'2018-06-25 14:48:44',201102155896193024,108,8),(995,'2018-06-25 14:48:45',131968711312539648,108,10),(996,'2018-06-25 14:48:45',201102155896193024,108,8),(997,'2018-06-25 14:48:45',262771588946984963,108,6),(998,'2018-06-25 14:48:45',262771588946984963,108,12),(999,'2018-06-25 14:48:45',201102155896193024,108,8),(1000,'2018-06-25 14:48:45',131968711312539648,108,9),(1001,'2018-06-25 14:48:46',201102155896193024,108,8),(1002,'2018-06-25 14:48:46',131968711312539648,108,11),(1003,'2018-06-25 14:48:46',262771588946984963,108,6),(1004,'2018-06-25 14:48:46',201102155896193024,108,6),(1005,'2018-06-25 14:48:47',200340393596944384,108,14),(1006,'2018-06-25 14:48:47',131968711312539648,108,7),(1007,'2018-06-25 14:48:48',131968711312539648,108,7),(1008,'2018-06-25 14:48:48',200340393596944384,108,13),(1009,'2018-06-25 14:48:50',200340393596944384,108,10),(1010,'2018-06-25 14:48:51',200340393596944384,108,10),(1011,'2018-06-25 14:48:51',459876383431327746,108,10),(1012,'2018-06-25 14:48:52',459876383431327746,108,11),(1013,'2018-06-25 14:48:53',459876383431327746,108,12),(1014,'2018-06-25 14:48:53',459876383431327746,108,8),(1015,'2018-06-25 14:48:54',459876383431327746,108,8),(1016,'2018-06-25 14:50:01',274301199841361920,108,8),(1017,'2018-06-25 14:50:04',297748308523483138,108,12),(1018,'2018-06-25 14:50:06',274301199841361920,108,14),(1019,'2018-06-25 14:58:43',262771588946984963,109,9),(1020,'2018-06-25 14:58:43',201102155896193024,109,11),(1021,'2018-06-25 14:58:43',262771588946984963,109,11),(1022,'2018-06-25 14:58:44',274301199841361920,109,9),(1023,'2018-06-25 14:58:44',262771588946984963,109,12),(1024,'2018-06-25 14:58:44',201102155896193024,109,6),(1025,'2018-06-25 14:58:44',262771588946984963,109,12),(1026,'2018-06-25 14:58:45',201102155896193024,109,10),(1027,'2018-06-25 14:58:45',262771588946984963,109,9),(1028,'2018-06-25 14:58:45',201102155896193024,109,9),(1029,'2018-06-25 14:58:46',201102155896193024,109,12),(1030,'2018-06-25 14:58:46',131968711312539648,109,8),(1031,'2018-06-25 14:58:47',131968711312539648,109,11),(1032,'2018-06-25 14:58:47',274301199841361920,109,8),(1033,'2018-06-25 14:58:48',131968711312539648,109,14),(1034,'2018-06-25 14:58:49',131968711312539648,109,7),(1035,'2018-06-25 15:18:43',201102155896193024,110,8),(1036,'2018-06-25 15:18:43',262771588946984963,110,10),(1037,'2018-06-25 15:18:44',131968711312539648,110,14),(1038,'2018-06-25 15:18:44',274301199841361920,110,11),(1039,'2018-06-25 15:18:44',262771588946984963,110,14),(1040,'2018-06-25 15:18:44',201102155896193024,110,11),(1041,'2018-06-25 15:18:44',262771588946984963,110,11),(1042,'2018-06-25 15:18:44',131968711312539648,110,8),(1043,'2018-06-25 15:18:45',201102155896193024,110,11),(1044,'2018-06-25 15:18:45',262771588946984963,110,14),(1045,'2018-06-25 15:18:45',274301199841361920,110,10),(1046,'2018-06-25 15:18:45',201102155896193024,110,10),(1047,'2018-06-25 15:18:45',262771588946984963,110,12),(1048,'2018-06-25 15:18:45',274301199841361920,110,7),(1049,'2018-06-25 15:18:45',131968711312539648,110,10),(1050,'2018-06-25 15:18:45',201102155896193024,110,11),(1051,'2018-06-25 15:18:46',274301199841361920,110,12),(1052,'2018-06-25 15:18:46',274301199841361920,110,12),(1053,'2018-06-25 15:18:46',131968711312539648,110,6),(1054,'2018-06-25 15:18:46',131968711312539648,110,6),(1055,'2018-06-25 15:18:47',200340393596944384,110,9),(1056,'2018-06-25 15:18:51',200340393596944384,110,7),(1057,'2018-06-25 15:18:52',200340393596944384,110,6),(1058,'2018-06-25 15:18:53',200340393596944384,110,9),(1059,'2018-06-25 15:18:53',459873273308643328,110,9),(1060,'2018-06-25 15:18:55',459873273308643328,110,12),(1061,'2018-06-25 15:18:55',459873273308643328,110,10),(1062,'2018-06-25 15:18:55',459873273308643328,110,8),(1063,'2018-06-25 15:18:56',200340393596944384,110,13),(1064,'2018-06-25 15:28:43',262771588946984963,111,10),(1065,'2018-06-25 15:28:44',201102155896193024,111,10),(1066,'2018-06-25 15:28:44',262771588946984963,111,10),(1067,'2018-06-25 15:28:44',201102155896193024,111,12),(1068,'2018-06-25 15:28:44',262771588946984963,111,9),(1069,'2018-06-25 15:28:44',201102155896193024,111,10),(1070,'2018-06-25 15:28:45',262771588946984963,111,6),(1071,'2018-06-25 15:28:45',201102155896193024,111,10),(1072,'2018-06-25 15:28:45',262771588946984963,111,10),(1073,'2018-06-25 15:28:45',201102155896193024,111,11),(1074,'2018-06-25 15:28:46',200340393596944384,111,7),(1075,'2018-06-25 15:28:46',297748308523483138,111,13),(1076,'2018-06-25 15:28:46',204933415252787202,111,11),(1077,'2018-06-25 15:28:47',204933415252787202,111,10),(1078,'2018-06-25 15:28:47',274301199841361920,111,14),(1079,'2018-06-25 15:28:47',200340393596944384,111,7),(1080,'2018-06-25 15:28:47',204933415252787202,111,7),(1081,'2018-06-25 15:28:48',297748308523483138,111,6),(1082,'2018-06-25 15:28:48',204933415252787202,111,10),(1083,'2018-06-25 15:28:48',204933415252787202,111,12),(1084,'2018-06-25 15:38:42',262771588946984963,112,8),(1085,'2018-06-25 15:38:43',201102155896193024,112,6),(1086,'2018-06-25 15:38:43',262771588946984963,112,6),(1087,'2018-06-25 15:38:43',201102155896193024,112,9),(1088,'2018-06-25 15:38:43',262771588946984963,112,7),(1089,'2018-06-25 15:38:44',236304169533833216,112,10),(1090,'2018-06-25 15:38:44',201102155896193024,112,7),(1091,'2018-06-25 15:38:44',262771588946984963,112,13),(1092,'2018-06-25 15:38:44',236304169533833216,112,12),(1093,'2018-06-25 15:38:44',201102155896193024,112,7),(1094,'2018-06-25 15:38:44',262771588946984963,112,6),(1095,'2018-06-25 15:38:44',236304169533833216,112,9),(1096,'2018-06-25 15:38:44',201102155896193024,112,11),(1097,'2018-06-25 15:38:45',204933415252787202,112,10),(1098,'2018-06-25 15:38:45',204933415252787202,112,10),(1099,'2018-06-25 15:38:45',131968711312539648,112,6),(1100,'2018-06-25 15:38:45',204933415252787202,112,6),(1101,'2018-06-25 15:38:46',131968711312539648,112,14),(1102,'2018-06-25 15:38:46',204933415252787202,112,10),(1103,'2018-06-25 15:38:46',236304169533833216,112,12),(1104,'2018-06-25 15:38:46',131968711312539648,112,11),(1105,'2018-06-25 15:38:47',236304169533833216,112,7),(1106,'2018-06-25 15:38:47',204933415252787202,112,11),(1107,'2018-06-25 15:38:47',131968711312539648,112,13),(1108,'2018-06-25 15:38:47',131968711312539648,112,14),(1109,'2018-06-25 15:38:48',459873273308643328,112,12),(1110,'2018-06-25 15:38:48',459873273308643328,112,8),(1111,'2018-06-25 15:38:49',459873273308643328,112,11),(1112,'2018-06-25 15:38:49',459873273308643328,112,14),(1113,'2018-06-25 15:58:42',201102155896193024,113,9),(1114,'2018-06-25 15:58:42',262771588946984963,113,10),(1115,'2018-06-25 15:58:43',262771588946984963,113,14),(1116,'2018-06-25 15:58:43',201102155896193024,113,12),(1117,'2018-06-25 15:58:43',262771588946984963,113,9),(1118,'2018-06-25 15:58:43',274301199841361920,113,6),(1119,'2018-06-25 15:58:43',201102155896193024,113,13),(1120,'2018-06-25 15:58:44',262771588946984963,113,7),(1121,'2018-06-25 15:58:44',201102155896193024,113,14),(1122,'2018-06-25 15:58:44',274301199841361920,113,10),(1123,'2018-06-25 15:58:44',262771588946984963,113,8),(1124,'2018-06-25 15:58:44',274301199841361920,113,10),(1125,'2018-06-25 15:58:44',201102155896193024,113,10),(1126,'2018-06-25 15:58:45',262771588946984963,113,10),(1127,'2018-06-25 15:58:45',274301199841361920,113,10),(1128,'2018-06-25 15:58:45',201102155896193024,113,10),(1129,'2018-06-25 16:08:43',236304169533833216,114,14),(1130,'2018-06-25 16:08:43',262771588946984963,114,11),(1131,'2018-06-25 16:08:43',201102155896193024,114,10),(1132,'2018-06-25 16:08:44',262771588946984963,114,7),(1133,'2018-06-25 16:08:44',201102155896193024,114,7),(1134,'2018-06-25 16:08:44',236304169533833216,114,14),(1135,'2018-06-25 16:08:44',262771588946984963,114,9),(1136,'2018-06-25 16:08:44',262771588946984963,114,10),(1137,'2018-06-25 16:08:44',201102155896193024,114,13),(1138,'2018-06-25 16:08:45',334750493085794304,114,13),(1139,'2018-06-25 16:08:45',262771588946984963,114,13),(1140,'2018-06-25 16:08:45',201102155896193024,114,8),(1141,'2018-06-25 16:08:45',274301199841361920,114,13),(1142,'2018-06-25 16:08:45',274301199841361920,114,9),(1143,'2018-06-25 16:08:45',201102155896193024,114,11),(1144,'2018-06-25 16:08:46',204933415252787202,114,12),(1145,'2018-06-25 16:08:46',274301199841361920,114,9),(1146,'2018-06-25 16:08:46',204933415252787202,114,9),(1147,'2018-06-25 16:18:42',262771588946984963,115,14),(1148,'2018-06-25 16:18:43',201102155896193024,115,10),(1149,'2018-06-25 16:18:43',262771588946984963,115,8),(1150,'2018-06-25 16:18:43',201102155896193024,115,8),(1151,'2018-06-25 16:18:43',262771588946984963,115,10),(1152,'2018-06-25 16:18:43',201102155896193024,115,6),(1153,'2018-06-25 16:18:43',262771588946984963,115,6),(1154,'2018-06-25 16:18:44',274301199841361920,115,7),(1155,'2018-06-25 16:18:44',201102155896193024,115,11),(1156,'2018-06-25 16:18:44',236304169533833216,115,7),(1157,'2018-06-25 16:18:44',262771588946984963,115,9),(1158,'2018-06-25 16:18:44',274301199841361920,115,10),(1159,'2018-06-25 16:18:44',201102155896193024,115,9),(1160,'2018-06-25 16:18:44',236304169533833216,115,6),(1161,'2018-06-25 16:18:44',236304169533833216,115,6),(1162,'2018-06-25 16:18:44',274301199841361920,115,12),(1163,'2018-06-25 16:38:44',201102155896193024,116,14),(1164,'2018-06-25 16:38:44',262771588946984963,116,8),(1165,'2018-06-25 16:38:44',201102155896193024,116,6),(1166,'2018-06-25 16:38:44',236304169533833216,116,9),(1167,'2018-06-25 16:38:44',236304169533833216,116,10),(1168,'2018-06-25 16:38:45',201102155896193024,116,7),(1169,'2018-06-25 16:38:45',236304169533833216,116,10),(1170,'2018-06-25 16:38:45',201102155896193024,116,6),(1171,'2018-06-25 16:38:45',201102155896193024,116,11),(1172,'2018-06-25 16:38:47',236304169533833216,116,8),(1173,'2018-06-25 16:38:47',236304169533833216,116,10),(1174,'2018-06-25 16:38:50',459873273308643328,116,10),(1175,'2018-06-25 16:38:51',459873273308643328,116,12),(1176,'2018-06-25 16:58:43',201102155896193024,117,11),(1177,'2018-06-25 16:58:44',201102155896193024,117,6),(1178,'2018-06-25 16:58:44',262771588946984963,117,12),(1179,'2018-06-25 16:58:44',236304169533833216,117,11),(1180,'2018-06-25 16:58:44',200340393596944384,117,8),(1181,'2018-06-25 16:58:44',236304169533833216,117,8),(1182,'2018-06-25 16:58:44',201102155896193024,117,6),(1183,'2018-06-25 16:58:44',262771588946984963,117,9),(1184,'2018-06-25 16:58:45',236304169533833216,117,12),(1185,'2018-06-25 16:58:45',201102155896193024,117,7),(1186,'2018-06-25 16:58:45',262771588946984963,117,10),(1187,'2018-06-25 16:58:45',236304169533833216,117,6),(1188,'2018-06-25 16:58:45',201102155896193024,117,14),(1189,'2018-06-25 16:58:45',236304169533833216,117,13),(1190,'2018-06-25 16:58:45',262771588946984963,117,9),(1191,'2018-06-25 16:58:46',200340393596944384,117,12),(1192,'2018-06-25 16:58:46',262771588946984963,117,13),(1193,'2018-06-25 16:58:47',200340393596944384,117,8),(1194,'2018-06-25 16:58:48',200340393596944384,117,7),(1195,'2018-06-25 16:58:48',459873273308643328,117,7),(1196,'2018-06-25 16:58:49',459873273308643328,117,8),(1197,'2018-06-25 16:58:49',459873273308643328,117,10),(1198,'2018-06-25 16:58:50',200340393596944384,117,8),(1199,'2018-06-25 17:08:44',262771588946984963,118,14),(1200,'2018-06-25 17:08:44',262771588946984963,118,14),(1201,'2018-06-25 17:08:45',262771588946984963,118,12),(1202,'2018-06-25 17:08:45',201102155896193024,118,8),(1203,'2018-06-25 17:08:45',262771588946984963,118,8),(1204,'2018-06-25 17:08:45',262771588946984963,118,11),(1205,'2018-06-25 17:08:46',201102155896193024,118,10),(1206,'2018-06-25 17:08:46',201102155896193024,118,14),(1207,'2018-06-25 17:08:46',236304169533833216,118,6),(1208,'2018-06-25 17:08:46',201102155896193024,118,14),(1209,'2018-06-25 17:08:47',201102155896193024,118,10),(1210,'2018-06-25 17:08:47',236304169533833216,118,6),(1211,'2018-06-25 17:08:47',236304169533833216,118,14),(1212,'2018-06-25 17:08:48',131968711312539648,118,7),(1213,'2018-06-25 17:08:48',131968711312539648,118,12),(1214,'2018-06-25 17:08:49',236304169533833216,118,8),(1215,'2018-06-25 17:08:49',131968711312539648,118,11),(1216,'2018-06-25 17:08:50',236304169533833216,118,13),(1217,'2018-06-25 21:30:50',262771588946984963,119,13),(1218,'2018-06-25 21:42:23',424563962303086594,119,12),(1219,'2018-06-25 21:42:29',424563962303086594,119,7),(1220,'2018-06-25 21:42:32',163770616581718017,119,6),(1221,'2018-06-25 21:42:33',424563962303086594,119,7),(1222,'2018-06-25 21:42:35',424563962303086594,119,12),(1223,'2018-06-25 21:42:37',163770616581718017,119,8),(1224,'2018-06-25 21:42:39',424563962303086594,119,10),(1225,'2018-06-25 21:42:41',262771588946984963,119,10),(1226,'2018-06-25 21:42:43',424563962303086594,119,9),(1227,'2018-06-25 21:42:44',262771588946984963,119,9),(1228,'2018-06-25 21:42:45',262771588946984963,119,13),(1229,'2018-06-25 21:42:47',262771588946984963,119,12),(1230,'2018-06-25 21:42:48',163770616581718017,119,12),(1231,'2018-06-25 21:42:50',262771588946984963,119,12),(1232,'2018-06-25 21:42:51',262771588946984963,119,10),(1233,'2018-06-25 21:42:54',131968711312539648,119,10),(1234,'2018-06-25 21:42:58',131968711312539648,119,10),(1235,'2018-06-25 21:43:04',131968711312539648,119,14),(1236,'2018-06-25 22:25:14',262771588946984963,120,10),(1237,'2018-06-25 22:25:16',262771588946984963,120,13),(1238,'2018-06-25 22:25:18',262771588946984963,120,13),(1239,'2018-06-25 22:25:20',262771588946984963,120,9),(1240,'2018-06-25 22:25:21',262771588946984963,120,7),(1241,'2018-06-25 22:25:23',131968711312539648,120,10),(1242,'2018-06-25 22:25:26',131968711312539648,120,13),(1243,'2018-06-25 22:25:28',131968711312539648,120,9),(1244,'2018-06-25 22:25:31',131968711312539648,120,8),(1245,'2018-06-25 22:25:34',131968711312539648,120,14),(1246,'2018-06-25 22:25:43',200340393596944384,120,11),(1247,'2018-06-25 22:25:49',200340393596944384,120,8),(1248,'2018-06-25 22:25:50',200340393596944384,120,6),(1249,'2018-06-25 22:25:52',200340393596944384,120,7),(1250,'2018-06-25 22:25:59',200340393596944384,120,10),(1251,'2018-06-25 22:26:28',163770616581718017,120,10),(1252,'2018-06-25 22:27:18',262771588946984963,120,10),(1253,'2018-06-26 00:29:06',163770616581718017,120,11),(1254,'2018-06-26 00:31:00',163770616581718017,1,1),(1255,'2018-06-26 00:33:32',163770616581718017,1,1),(1256,'2018-06-26 00:34:07',163770616581718017,1,1),(1257,'2018-06-26 00:34:48',163770616581718017,120,8),(1258,'2018-06-26 00:37:11',163770616581718017,120,13),(1259,'2018-06-26 00:38:25',163770616581718017,120,14),(1260,'2018-06-26 00:38:48',163770616581718017,120,12),(1261,'2018-06-26 00:39:24',163770616581718017,120,13),(1262,'2018-06-26 00:40:30',163770616581718017,120,12),(1263,'2018-06-26 00:40:36',163770616581718017,120,7),(1264,'2018-06-26 00:40:44',163770616581718017,1,14),(1265,'2018-06-26 00:42:53',163770616581718017,1,14),(1266,'2018-06-26 00:43:26',163770616581718017,1,14),(1267,'2018-06-26 00:43:42',163770616581718017,1,9),(1268,'2018-06-26 00:49:11',163770616581718017,1,8),(1269,'2018-06-26 00:49:27',163770616581718017,1,9),(1270,'2018-06-26 00:49:30',163770616581718017,1,7),(1271,'2018-06-26 00:49:59',163770616581718017,1,10),(1272,'2018-06-26 00:50:03',163770616581718017,1,10),(1273,'2018-06-26 00:50:06',163770616581718017,1,10),(1274,'2018-06-26 01:20:48',163770616581718017,121,12),(1275,'2018-06-26 01:20:53',163770616581718017,121,13),(1276,'2018-06-26 01:20:57',163770616581718017,121,10),(1277,'2018-06-26 01:20:59',131968711312539648,121,10),(1278,'2018-06-26 01:21:02',163770616581718017,121,12),(1279,'2018-06-26 01:21:05',131968711312539648,121,10),(1280,'2018-06-26 01:21:08',163770616581718017,121,8),(1281,'2018-06-26 01:21:11',131968711312539648,121,14),(1282,'2018-06-26 01:21:13',163770616581718017,121,10),(1283,'2018-06-26 01:21:16',131968711312539648,121,10),(1284,'2018-06-26 01:21:23',131968711312539648,121,10),(1285,'2018-06-26 01:22:56',131968711312539648,121,14),(1286,'2018-06-26 01:23:03',163770616581718017,121,12),(1287,'2018-06-26 01:23:21',359521958519504926,121,11),(1288,'2018-06-26 01:23:25',359521958519504926,121,12),(1289,'2018-06-26 01:23:33',359521958519504926,121,8),(1290,'2018-06-26 01:23:40',359521958519504926,121,13),(1291,'2018-06-26 01:24:17',460761978135248896,121,11),(1292,'2018-06-26 01:24:18',457300954660995114,121,8),(1293,'2018-06-26 01:24:21',457300954660995114,121,7),(1294,'2018-06-26 01:24:23',460761978135248896,121,11),(1295,'2018-06-26 01:24:24',359521958519504926,121,7),(1296,'2018-06-26 01:24:25',457300954660995114,121,13),(1297,'2018-06-26 02:10:53',201102155896193024,122,11),(1298,'2018-06-26 02:10:56',131968711312539648,122,12),(1299,'2018-06-26 02:10:57',218498162745278474,122,10),(1300,'2018-06-26 02:11:00',163770616581718017,122,7),(1301,'2018-06-26 02:11:00',218498162745278474,122,12),(1302,'2018-06-26 02:11:00',201102155896193024,122,10),(1303,'2018-06-26 02:11:01',460761978135248896,122,8),(1304,'2018-06-26 02:11:01',201102155896193024,122,14),(1305,'2018-06-26 02:11:01',163770616581718017,122,12),(1306,'2018-06-26 02:11:02',201102155896193024,122,11),(1307,'2018-06-26 02:11:03',200340393596944384,122,6),(1308,'2018-06-26 02:11:03',163770616581718017,122,7),(1309,'2018-06-26 02:11:03',201102155896193024,122,10),(1310,'2018-06-26 02:11:04',131968711312539648,122,9),(1311,'2018-06-26 02:11:04',218498162745278474,122,12),(1312,'2018-06-26 02:11:04',460761978135248896,122,10),(1313,'2018-06-26 02:11:05',163770616581718017,122,6),(1314,'2018-06-26 02:11:05',200340393596944384,122,9),(1315,'2018-06-26 02:11:05',200340393596944384,122,10),(1316,'2018-06-26 02:11:05',200340393596944384,122,13),(1317,'2018-06-26 02:11:06',200340393596944384,122,9),(1318,'2018-06-26 02:11:06',457300954660995114,122,12),(1319,'2018-06-26 02:20:25',457300954660995114,123,6),(1320,'2018-06-26 02:20:27',457300954660995114,123,8),(1321,'2018-06-26 02:20:29',218498162745278474,123,12),(1322,'2018-06-26 02:20:29',163770616581718017,123,13),(1323,'2018-06-26 02:20:29',457300954660995114,123,6),(1324,'2018-06-26 02:20:29',131968711312539648,123,14),(1325,'2018-06-26 02:20:30',460761978135248896,123,7),(1326,'2018-06-26 02:20:30',131968711312539648,123,9),(1327,'2018-06-26 02:20:30',131968711312539648,123,10),(1328,'2018-06-26 02:20:31',218498162745278474,123,10),(1329,'2018-06-26 02:20:31',457300954660995114,123,13),(1330,'2018-06-26 02:20:32',131968711312539648,123,9),(1331,'2018-06-26 02:20:33',163770616581718017,123,9),(1332,'2018-06-26 02:20:33',218498162745278474,123,11),(1333,'2018-06-26 02:20:34',460761978135248896,123,10),(1334,'2018-06-26 02:20:34',131968711312539648,123,6),(1335,'2018-06-26 02:20:34',218498162745278474,123,13),(1336,'2018-06-26 02:20:35',457300954660995114,123,10),(1337,'2018-06-26 02:20:37',460761978135248896,123,13),(1338,'2018-06-26 02:20:38',163770616581718017,123,14),(1339,'2018-06-26 02:20:38',218498162745278474,123,6),(1340,'2018-06-26 02:20:41',460761978135248896,123,8),(1341,'2018-06-26 03:00:02',218498162745278474,124,13),(1342,'2018-06-26 03:00:04',218498162745278474,124,9),(1343,'2018-06-26 03:00:06',218498162745278474,124,6),(1344,'2018-06-26 03:00:06',460761978135248896,124,7),(1345,'2018-06-26 03:00:08',218498162745278474,124,13),(1346,'2018-06-26 03:00:09',218498162745278474,124,7),(1347,'2018-06-26 03:00:10',460761978135248896,124,7),(1348,'2018-06-26 03:00:11',200340393596944384,124,6),(1349,'2018-06-26 03:00:12',200340393596944384,124,10),(1350,'2018-06-26 03:00:14',200340393596944384,124,11),(1351,'2018-06-26 03:00:14',460761978135248896,124,14),(1352,'2018-06-26 03:00:14',200340393596944384,124,7),(1353,'2018-06-26 03:00:14',457300954660995114,124,14),(1354,'2018-06-26 03:00:17',200340393596944384,124,9),(1355,'2018-06-26 03:00:17',460761978135248896,124,10),(1356,'2018-06-26 03:00:18',457300954660995114,124,10),(1357,'2018-06-26 03:00:18',131968711312539648,124,14),(1358,'2018-06-26 03:00:19',131968711312539648,124,10),(1359,'2018-06-26 03:00:20',460761978135248896,124,6),(1360,'2018-06-26 03:00:20',131968711312539648,124,14),(1361,'2018-06-26 03:00:21',131968711312539648,124,7),(1362,'2018-06-26 03:00:21',457300954660995114,124,6),(1363,'2018-06-26 03:00:22',131968711312539648,124,14),(1364,'2018-06-26 03:00:23',457300954660995114,124,7),(1365,'2018-06-26 03:00:25',457300954660995114,124,13),(1366,'2018-06-26 03:00:25',433759248800022532,124,6),(1367,'2018-06-26 03:00:27',433759248800022532,124,9),(1368,'2018-06-26 03:00:27',433759248800022532,124,7),(1369,'2018-06-26 03:00:28',433759248800022532,124,11),(1370,'2018-06-26 03:00:30',433759248800022532,124,9),(1371,'2018-06-26 03:48:30',200340393596944384,124,10),(1372,'2018-06-26 03:48:32',200340393596944384,124,10),(1373,'2018-06-26 03:48:32',185698541052755968,124,6),(1374,'2018-06-26 03:48:33',185698541052755968,124,9),(1375,'2018-06-26 03:54:23',185698541052755968,125,9),(1376,'2018-06-26 03:54:24',185698541052755968,125,11),(1377,'2018-06-26 03:54:24',131968711312539648,125,10),(1378,'2018-06-26 03:54:24',185698541052755968,125,14),(1379,'2018-06-26 03:54:25',131968711312539648,125,7),(1380,'2018-06-26 03:54:25',185698541052755968,125,11),(1381,'2018-06-26 03:54:25',185698541052755968,125,8),(1382,'2018-06-26 03:54:25',131968711312539648,125,10),(1383,'2018-06-26 03:54:26',218498162745278474,125,7),(1384,'2018-06-26 03:54:26',131968711312539648,125,9),(1385,'2018-06-26 03:54:27',131968711312539648,125,9),(1386,'2018-06-26 03:54:27',204933415252787202,125,10),(1387,'2018-06-26 03:54:28',218498162745278474,125,10),(1388,'2018-06-26 03:54:30',218498162745278474,125,9),(1389,'2018-06-26 03:54:35',218498162745278474,125,6),(1390,'2018-06-26 03:54:38',200340393596944384,125,9),(1391,'2018-06-26 03:54:38',204933415252787202,125,12),(1392,'2018-06-26 03:54:39',200340393596944384,125,13),(1393,'2018-06-26 03:54:39',200340393596944384,125,14),(1394,'2018-06-26 03:54:40',200340393596944384,125,12),(1395,'2018-06-26 03:54:40',200340393596944384,125,6),(1396,'2018-06-26 03:54:42',218498162745278474,125,14),(1397,'2018-06-26 03:54:44',204933415252787202,125,7),(1398,'2018-06-26 03:54:50',204933415252787202,125,7),(1399,'2018-06-26 03:54:51',433759248800022532,125,10),(1400,'2018-06-26 03:54:51',433759248800022532,125,6),(1401,'2018-06-26 04:05:36',200340393596944384,126,14),(1402,'2018-06-26 04:05:36',200340393596944384,126,14),(1403,'2018-06-26 04:05:36',204933415252787202,126,14),(1404,'2018-06-26 04:05:37',200340393596944384,126,12),(1405,'2018-06-26 04:05:37',200340393596944384,126,6),(1406,'2018-06-26 04:05:38',200340393596944384,126,6),(1407,'2018-06-26 04:05:38',204933415252787202,126,11),(1408,'2018-06-26 04:05:40',185698541052755968,126,7),(1409,'2018-06-26 04:05:40',204933415252787202,126,7),(1410,'2018-06-26 04:05:40',457300954660995114,126,11),(1411,'2018-06-26 04:05:41',204933415252787202,126,14),(1412,'2018-06-26 04:05:43',433759248800022532,126,14),(1413,'2018-06-26 04:05:43',433759248800022532,126,14),(1414,'2018-06-26 04:05:44',433759248800022532,126,8),(1415,'2018-06-26 04:05:44',433759248800022532,126,7),(1416,'2018-06-26 04:05:44',131968711312539648,126,7),(1417,'2018-06-26 04:05:45',433759248800022532,126,13),(1418,'2018-06-26 04:05:45',131968711312539648,126,6),(1419,'2018-06-26 04:05:45',131968711312539648,126,11),(1420,'2018-06-26 04:05:45',457300954660995114,126,10),(1421,'2018-06-26 04:05:46',131968711312539648,126,14),(1422,'2018-06-26 04:05:46',131968711312539648,126,7),(1423,'2018-06-26 04:05:47',185698541052755968,126,12),(1424,'2018-06-26 04:05:47',163770616581718017,126,10),(1425,'2018-06-26 04:05:49',185698541052755968,126,8),(1426,'2018-06-26 04:05:49',185698541052755968,126,9),(1427,'2018-06-26 04:05:50',457300954660995114,126,6),(1428,'2018-06-26 04:05:50',185698541052755968,126,10),(1429,'2018-06-26 04:16:00',131968711312539648,127,10),(1430,'2018-06-26 04:16:01',131968711312539648,127,10),(1431,'2018-06-26 04:16:02',131968711312539648,127,14),(1432,'2018-06-26 04:16:02',204933415252787202,127,9),(1433,'2018-06-26 04:16:02',131968711312539648,127,14),(1434,'2018-06-26 04:16:03',204933415252787202,127,6),(1435,'2018-06-26 04:16:03',131968711312539648,127,11),(1436,'2018-06-26 04:16:03',200340393596944384,127,13),(1437,'2018-06-26 04:16:03',200340393596944384,127,8),(1438,'2018-06-26 04:16:04',200340393596944384,127,13),(1439,'2018-06-26 04:16:04',200340393596944384,127,7),(1440,'2018-06-26 04:16:04',204933415252787202,127,10),(1441,'2018-06-26 04:16:04',457300954660995114,127,14),(1442,'2018-06-26 04:31:53',131968711312539648,128,7),(1443,'2018-06-26 04:31:53',200340393596944384,128,10),(1444,'2018-06-26 04:31:53',201102155896193024,128,14),(1445,'2018-06-26 04:31:54',200340393596944384,128,10),(1446,'2018-06-26 04:31:54',131968711312539648,128,13),(1447,'2018-06-26 04:31:54',185698541052755968,128,8),(1448,'2018-06-26 04:31:54',201102155896193024,128,7),(1449,'2018-06-26 04:31:54',201102155896193024,128,10),(1450,'2018-06-26 04:31:54',200340393596944384,128,10),(1451,'2018-06-26 04:31:54',185698541052755968,128,6),(1452,'2018-06-26 04:31:54',201102155896193024,128,14),(1453,'2018-06-26 04:31:54',200340393596944384,128,11),(1454,'2018-06-26 04:31:55',185698541052755968,128,14),(1455,'2018-06-26 04:31:55',200340393596944384,128,8),(1456,'2018-06-26 04:31:55',201102155896193024,128,10),(1457,'2018-06-26 04:31:55',185698541052755968,128,14),(1458,'2018-06-26 04:31:55',185698541052755968,128,14),(1459,'2018-06-26 04:31:59',459879057295671296,128,12),(1460,'2018-06-26 04:31:59',459879057295671296,128,14),(1461,'2018-06-26 04:31:59',459879057295671296,128,6),(1462,'2018-06-26 04:32:00',433759248800022532,128,9),(1463,'2018-06-26 05:50:14',433759248800022532,129,14),(1464,'2018-06-26 05:50:15',433759248800022532,129,8),(1465,'2018-06-26 05:50:16',433759248800022532,129,11),(1466,'2018-06-26 05:50:16',433759248800022532,129,14),(1467,'2018-06-26 05:50:17',433759248800022532,129,11),(1468,'2018-06-26 05:50:20',200340393596944384,129,13),(1469,'2018-06-26 05:50:20',200340393596944384,129,14),(1470,'2018-06-26 05:50:20',200340393596944384,129,14),(1471,'2018-06-26 05:50:21',200340393596944384,129,8),(1472,'2018-06-26 05:50:21',200340393596944384,129,10),(1473,'2018-06-26 05:50:31',460761978135248896,129,11),(1474,'2018-06-26 05:50:33',457300954660995114,129,11),(1475,'2018-06-26 05:50:36',460761978135248896,129,7),(1476,'2018-06-26 05:50:38',131968711312539648,129,8),(1477,'2018-06-26 06:03:17',131968711312539648,130,13),(1478,'2018-06-26 06:03:30',131968711312539648,130,8),(1479,'2018-06-26 06:03:43',131968711312539648,130,8),(1480,'2018-06-26 06:03:45',131968711312539648,130,13),(1481,'2018-06-26 06:04:02',457300954660995114,130,9),(1482,'2018-06-26 06:04:07',457300954660995114,130,8),(1483,'2018-06-26 06:04:11',457300954660995114,130,6),(1484,'2018-06-26 06:04:17',457300954660995114,130,13),(1485,'2018-06-26 06:04:18',131968711312539648,130,14),(1486,'2018-06-26 06:04:21',429615167492325376,130,10),(1487,'2018-06-26 06:04:26',457300954660995114,130,14),(1488,'2018-06-26 06:04:31',429615167492325376,130,9),(1489,'2018-06-26 06:04:39',429615167492325376,130,10),(1490,'2018-06-26 06:04:40',460761978135248896,130,11),(1491,'2018-06-26 06:04:43',460761978135248896,130,14),(1492,'2018-06-26 06:04:46',460761978135248896,130,7),(1493,'2018-06-26 06:04:48',457300954660995114,130,8),(1494,'2018-06-26 06:04:49',429615167492325376,130,6),(1495,'2018-06-26 06:04:49',460761978135248896,130,7),(1496,'2018-06-26 06:04:52',460761978135248896,130,10),(1497,'2018-06-26 06:04:55',460761978135248896,130,13),(1498,'2018-06-26 06:04:56',131968711312539648,130,14),(1499,'2018-06-26 06:04:58',429615167492325376,130,8),(1500,'2018-06-26 06:05:06',429615167492325376,130,11),(1501,'2018-06-26 06:06:43',200340393596944384,130,10),(1502,'2018-06-26 06:06:43',200340393596944384,130,8),(1503,'2018-06-26 06:06:44',200340393596944384,130,13),(1504,'2018-06-26 06:12:23',200340393596944384,131,6),(1505,'2018-06-26 06:12:25',457300954660995114,131,12),(1506,'2018-06-26 06:12:25',200340393596944384,131,14),(1507,'2018-06-26 06:12:25',460761978135248896,131,10),(1508,'2018-06-26 06:12:28',200340393596944384,131,14),(1509,'2018-06-26 06:12:28',457300954660995114,131,6),(1510,'2018-06-26 06:12:29',460761978135248896,131,7),(1511,'2018-06-26 06:12:30',457300954660995114,131,7),(1512,'2018-06-26 06:12:31',200340393596944384,131,8),(1513,'2018-06-26 06:12:32',460761978135248896,131,9),(1514,'2018-06-26 06:12:45',429615167492325376,131,13),(1515,'2018-06-26 06:12:53',429615167492325376,131,10),(1516,'2018-06-26 06:13:01',200340393596944384,131,14),(1517,'2018-06-26 06:13:21',429615167492325376,131,10),(1518,'2018-06-26 06:13:31',429615167492325376,131,7),(1519,'2018-06-26 06:13:39',457300954660995114,131,14),(1520,'2018-06-26 06:13:57',460761978135248896,131,12),(1521,'2018-06-26 06:14:00',131968711312539648,131,13),(1522,'2018-06-26 06:14:05',454823752925052930,131,7),(1523,'2018-06-26 06:14:07',454823752925052930,131,10),(1524,'2018-06-26 06:14:08',454823752925052930,131,7),(1525,'2018-06-26 06:14:08',131968711312539648,131,14),(1526,'2018-06-26 06:14:09',131968711312539648,131,14),(1527,'2018-06-26 06:14:10',454823752925052930,131,10),(1528,'2018-06-26 06:14:11',454823752925052930,131,14),(1529,'2018-06-26 06:14:21',334750493085794304,131,10),(1530,'2018-06-26 06:14:26',334750493085794304,131,12),(1531,'2018-06-26 06:25:49',460761978135248896,132,11),(1532,'2018-06-26 06:25:52',460761978135248896,132,14),(1533,'2018-06-26 06:25:55',460761978135248896,132,13),(1534,'2018-06-26 06:25:58',460761978135248896,132,7),(1535,'2018-06-26 06:26:02',460761978135248896,132,11),(1536,'2018-06-26 06:26:03',200340393596944384,132,13),(1537,'2018-06-26 06:26:05',200340393596944384,132,10),(1538,'2018-06-26 06:26:09',200340393596944384,132,10),(1539,'2018-06-26 06:26:12',200340393596944384,132,13),(1540,'2018-06-26 06:26:15',200340393596944384,132,13),(1541,'2018-06-26 06:26:42',457300954660995114,132,9),(1542,'2018-06-26 06:26:49',454823752925052930,132,7),(1543,'2018-06-26 06:26:51',454823752925052930,132,9),(1544,'2018-06-26 06:26:53',454823752925052930,132,12),(1545,'2018-06-26 06:26:54',454823752925052930,132,9),(1546,'2018-06-26 06:26:56',454823752925052930,132,11),(1547,'2018-06-26 06:26:57',185698541052755968,132,7),(1548,'2018-06-26 06:26:59',185698541052755968,132,14),(1549,'2018-06-26 06:27:02',185698541052755968,132,12),(1550,'2018-06-26 06:46:00',131968711312539648,133,7),(1551,'2018-06-26 06:46:02',131968711312539648,133,14),(1552,'2018-06-26 06:46:18',460761978135248896,133,11),(1553,'2018-06-26 06:46:18',334750493085794304,133,10),(1554,'2018-06-26 06:46:21',334750493085794304,133,6),(1555,'2018-06-26 06:46:21',334750493085794304,133,6),(1556,'2018-06-26 06:46:21',460761978135248896,133,11),(1557,'2018-06-26 06:46:22',334750493085794304,133,10),(1558,'2018-06-26 06:46:22',334750493085794304,133,9),(1559,'2018-06-26 06:47:19',185698541052755968,133,14),(1560,'2018-06-26 06:47:22',185698541052755968,133,14),(1561,'2018-06-26 06:47:26',334750493085794304,133,10),(1562,'2018-06-26 06:47:27',185698541052755968,133,11),(1563,'2018-06-26 06:47:30',185698541052755968,133,12),(1564,'2018-06-26 06:47:33',185698541052755968,133,12),(1565,'2018-06-26 06:49:07',185698541052755968,133,12),(1566,'2018-06-26 06:49:10',334750493085794304,133,6),(1567,'2018-06-26 06:50:50',185698541052755968,133,14),(1568,'2018-06-26 06:51:11',334750493085794304,133,12),(1569,'2018-06-26 06:53:00',148942504077557760,133,9),(1570,'2018-06-26 06:53:02',334750493085794304,133,12),(1571,'2018-06-26 06:53:03',148942504077557760,133,6),(1572,'2018-06-26 06:53:07',148942504077557760,133,10),(1573,'2018-06-26 06:53:09',148942504077557760,133,6),(1574,'2018-06-26 06:53:15',148942504077557760,133,11),(1575,'2018-06-26 06:54:46',334750493085794304,133,9),(1576,'2018-06-26 06:55:27',148942504077557760,133,12),(1577,'2018-06-26 07:07:49',460761978135248896,134,7),(1578,'2018-06-26 07:07:52',334750493085794304,134,10),(1579,'2018-06-26 07:07:53',460761978135248896,134,9),(1580,'2018-06-26 07:07:56',334750493085794304,134,10),(1581,'2018-06-26 07:07:56',460761978135248896,134,10),(1582,'2018-06-26 07:07:58',334750493085794304,134,8),(1583,'2018-06-26 07:07:59',334750493085794304,134,7),(1584,'2018-06-26 07:08:00',460761978135248896,134,12),(1585,'2018-06-26 07:08:00',334750493085794304,134,14),(1586,'2018-06-26 07:08:47',457300954660995114,134,7),(1587,'2018-06-26 07:08:54',457300954660995114,134,11),(1588,'2018-06-26 07:09:00',457300954660995114,134,7),(1589,'2018-06-26 07:09:27',148942504077557760,134,13),(1590,'2018-06-26 07:09:29',148942504077557760,134,10),(1591,'2018-06-26 07:09:30',148942504077557760,134,9),(1592,'2018-06-26 07:09:31',148942504077557760,134,9),(1593,'2018-06-26 07:09:33',148942504077557760,134,6),(1594,'2018-06-26 07:09:55',131968711312539648,134,6),(1595,'2018-06-26 07:09:58',131968711312539648,134,7),(1596,'2018-06-26 07:10:00',131968711312539648,134,10),(1597,'2018-06-26 07:10:02',131968711312539648,134,9),(1598,'2018-06-26 07:12:56',185698541052755968,134,13),(1599,'2018-06-26 07:12:58',185698541052755968,134,10),(1600,'2018-06-26 07:23:55',185698541052755968,135,11),(1601,'2018-06-26 07:23:57',185698541052755968,135,14),(1602,'2018-06-26 07:23:59',185698541052755968,135,9),(1603,'2018-06-26 07:24:02',185698541052755968,135,11),(1604,'2018-06-26 07:24:04',185698541052755968,135,12),(1605,'2018-06-26 07:25:29',148942504077557760,135,10),(1606,'2018-06-26 07:25:30',148942504077557760,135,13),(1607,'2018-06-26 07:25:31',148942504077557760,135,8),(1608,'2018-06-26 07:25:32',148942504077557760,135,14),(1609,'2018-06-26 07:25:33',148942504077557760,135,14),(1610,'2018-06-26 07:27:05',185698541052755968,135,9),(1611,'2018-06-26 07:27:07',185698541052755968,135,13),(1612,'2018-06-26 07:27:31',334750493085794304,135,12),(1613,'2018-06-26 07:27:32',334750493085794304,135,13),(1614,'2018-06-26 07:27:33',334750493085794304,135,10),(1615,'2018-06-26 07:27:33',334750493085794304,135,13),(1616,'2018-06-26 07:27:34',334750493085794304,135,11),(1617,'2018-06-26 07:29:38',185698541052755968,135,9),(1618,'2018-06-26 07:30:14',334750493085794304,135,12),(1619,'2018-06-26 07:30:18',460761978135248896,135,7),(1620,'2018-06-26 07:30:26',460761978135248896,135,10),(1621,'2018-06-26 07:31:32',185698541052755968,135,9),(1622,'2018-06-26 07:31:51',334750493085794304,135,10),(1623,'2018-06-26 07:36:01',334750493085794304,135,14),(1624,'2018-06-26 07:36:42',334750493085794304,135,12),(1625,'2018-06-26 07:36:44',334750493085794304,135,8),(1626,'2018-06-26 07:52:15',204933415252787202,136,10),(1627,'2018-06-26 07:52:18',204933415252787202,136,12),(1628,'2018-06-26 07:52:20',204933415252787202,136,6),(1629,'2018-06-26 07:52:22',204933415252787202,136,14),(1630,'2018-06-26 07:52:24',204933415252787202,136,10),(1631,'2018-06-26 07:55:05',460761978135248896,136,13),(1632,'2018-06-26 07:55:18',460761978135248896,136,6),(1633,'2018-06-26 07:55:30',204933415252787202,136,9),(1634,'2018-06-26 07:55:33',204933415252787202,136,9),(1635,'2018-06-26 07:57:08',334750493085794304,136,12),(1636,'2018-06-26 07:57:10',334750493085794304,136,7),(1637,'2018-06-26 07:57:10',334750493085794304,136,14),(1638,'2018-06-26 07:57:11',334750493085794304,136,11),(1639,'2018-06-26 07:57:12',334750493085794304,136,8),(1640,'2018-06-26 07:57:36',204933415252787202,136,6),(1641,'2018-06-26 07:59:37',334750493085794304,136,10),(1642,'2018-06-26 08:01:24',457300954660995114,136,10),(1643,'2018-06-26 08:01:29',457300954660995114,136,14),(1644,'2018-06-26 08:01:34',457300954660995114,136,14),(1645,'2018-06-26 08:01:52',204933415252787202,136,11),(1646,'2018-06-26 08:01:55',204933415252787202,136,11),(1647,'2018-06-26 08:06:54',204933415252787202,136,9),(1648,'2018-06-26 08:06:56',204933415252787202,136,7),(1649,'2018-06-26 08:07:08',204933415252787202,136,13),(1650,'2018-06-26 08:09:01',334750493085794304,136,14),(1651,'2018-06-26 08:09:02',334750493085794304,136,12),(1652,'2018-06-26 08:09:05',334750493085794304,136,11),(1653,'2018-06-26 08:09:07',334750493085794304,136,12),(1654,'2018-06-26 08:09:10',334750493085794304,136,10),(1655,'2018-06-26 08:09:37',204933415252787202,136,13),(1656,'2018-06-26 08:11:39',334750493085794304,136,13),(1657,'2018-06-26 08:12:17',204933415252787202,136,6),(1658,'2018-06-26 08:14:36',204933415252787202,136,12),(1659,'2018-06-26 08:15:13',204933415252787202,136,10),(1660,'2018-06-26 08:17:02',204933415252787202,136,8),(1661,'2018-06-26 08:18:27',334750493085794304,136,13),(1662,'2018-06-26 08:25:05',148942504077557760,137,8),(1663,'2018-06-26 08:25:07',148942504077557760,137,9),(1664,'2018-06-26 08:25:08',148942504077557760,137,13),(1665,'2018-06-26 08:25:09',148942504077557760,137,9),(1666,'2018-06-26 08:25:10',148942504077557760,137,7),(1667,'2018-06-26 08:25:15',204933415252787202,137,13),(1668,'2018-06-26 08:25:18',204933415252787202,137,12),(1669,'2018-06-26 08:25:28',204933415252787202,137,6),(1670,'2018-06-26 08:25:28',424563962303086594,137,12),(1671,'2018-06-26 08:25:37',424563962303086594,137,13),(1672,'2018-06-26 08:25:47',424563962303086594,137,10),(1673,'2018-06-26 08:25:54',424563962303086594,137,13),(1674,'2018-06-26 08:26:01',424563962303086594,137,10),(1675,'2018-06-26 08:27:42',424563962303086594,137,10),(1676,'2018-06-26 08:29:05',424563962303086594,137,9),(1677,'2018-06-26 08:31:39',424563962303086594,137,14),(1678,'2018-06-26 08:31:59',334750493085794304,137,12),(1679,'2018-06-26 08:32:01',334750493085794304,137,7),(1680,'2018-06-26 08:32:03',334750493085794304,137,10),(1681,'2018-06-26 08:32:05',334750493085794304,137,7),(1682,'2018-06-26 08:32:07',334750493085794304,137,7),(1683,'2018-06-26 08:32:59',424563962303086594,137,8),(1684,'2018-06-26 08:33:14',334750493085794304,137,13),(1685,'2018-06-26 08:34:52',424563962303086594,137,9),(1686,'2018-06-26 08:50:14',424563962303086594,137,6),(1687,'2018-06-26 08:50:57',424563962303086594,137,11),(1688,'2018-06-26 08:51:24',424563962303086594,137,11),(1689,'2018-06-26 08:51:55',424563962303086594,137,13),(1690,'2018-06-26 08:53:10',424563962303086594,137,13),(1691,'2018-06-26 08:54:06',424563962303086594,137,13),(1692,'2018-06-26 08:54:27',424563962303086594,137,7),(1693,'2018-06-26 08:54:47',424563962303086594,137,10),(1694,'2018-06-26 08:58:02',274301199841361920,137,10),(1695,'2018-06-26 08:58:13',274301199841361920,137,10),(1696,'2018-06-26 08:58:16',274301199841361920,137,9),(1697,'2018-06-26 08:58:18',274301199841361920,137,14),(1698,'2018-06-26 08:58:22',274301199841361920,137,12),(1699,'2018-06-26 08:58:28',460761978135248896,137,10),(1700,'2018-06-26 08:58:29',457300954660995114,137,9),(1701,'2018-06-26 08:58:31',460761978135248896,137,14),(1702,'2018-06-26 08:58:34',262771588946984963,137,9),(1703,'2018-06-26 08:58:35',460761978135248896,137,10),(1704,'2018-06-26 08:58:36',262771588946984963,137,12),(1705,'2018-06-26 08:58:39',262771588946984963,137,9),(1706,'2018-06-26 10:21:01',185698541052755968,138,14),(1707,'2018-06-26 10:21:01',185698541052755968,138,13),(1708,'2018-06-26 10:21:02',185698541052755968,138,10),(1709,'2018-06-26 10:21:02',185698541052755968,138,6),(1710,'2018-06-26 10:21:03',185698541052755968,138,6),(1711,'2018-06-26 10:21:10',262771588946984963,138,12),(1712,'2018-06-26 10:21:11',262771588946984963,138,7),(1713,'2018-06-26 10:21:12',262771588946984963,138,13),(1714,'2018-06-26 10:21:12',262771588946984963,138,14),(1715,'2018-06-26 10:21:13',262771588946984963,138,6),(1716,'2018-06-26 10:21:27',204933415252787202,138,10),(1717,'2018-06-26 10:21:29',204933415252787202,138,10),(1718,'2018-06-26 10:21:34',204933415252787202,138,12),(1719,'2018-06-26 10:21:37',204933415252787202,138,8),(1720,'2018-06-26 10:21:40',204933415252787202,138,10),(1721,'2018-06-26 10:22:51',262771588946984963,138,7),(1722,'2018-06-26 10:23:49',185698541052755968,138,11),(1723,'2018-06-26 10:24:46',262771588946984963,138,12),(1724,'2018-06-26 10:26:24',204933415252787202,138,11),(1725,'2018-06-26 10:26:27',204933415252787202,138,10),(1726,'2018-06-26 10:26:49',262771588946984963,138,8),(1727,'2018-06-26 10:28:59',185698541052755968,138,13),(1728,'2018-06-26 10:29:00',185698541052755968,138,9),(1729,'2018-06-26 10:29:02',185698541052755968,138,13),(1730,'2018-06-26 10:29:04',262771588946984963,138,10),(1731,'2018-06-26 10:29:39',204933415252787202,138,11),(1732,'2018-06-26 10:29:42',204933415252787202,138,12),(1733,'2018-06-26 10:30:42',262771588946984963,138,7),(1734,'2018-06-26 10:30:46',185698541052755968,138,8),(1735,'2018-06-26 10:32:42',262771588946984963,138,10),(1736,'2018-06-26 11:03:39',274301199841361920,139,11),(1737,'2018-06-26 11:03:40',274301199841361920,139,7),(1738,'2018-06-26 11:03:41',274301199841361920,139,7),(1739,'2018-06-26 11:03:41',274301199841361920,139,13),(1740,'2018-06-26 11:03:42',274301199841361920,139,12),(1741,'2018-06-26 11:04:46',274301199841361920,139,6),(1742,'2018-06-26 11:05:15',424563962303086594,139,6),(1743,'2018-06-26 11:05:19',424563962303086594,139,14),(1744,'2018-06-26 11:05:23',424563962303086594,139,9),(1745,'2018-06-26 11:05:26',185698541052755968,139,13),(1746,'2018-06-26 11:05:26',424563962303086594,139,11),(1747,'2018-06-26 11:05:27',185698541052755968,139,11),(1748,'2018-06-26 11:05:27',185698541052755968,139,10),(1749,'2018-06-26 11:05:28',185698541052755968,139,9),(1750,'2018-06-26 11:05:29',185698541052755968,139,14),(1751,'2018-06-26 11:05:30',424563962303086594,139,10),(1752,'2018-06-26 11:05:31',262771588946984963,139,6),(1753,'2018-06-26 11:05:32',262771588946984963,139,10),(1754,'2018-06-26 11:05:32',262771588946984963,139,9),(1755,'2018-06-26 11:05:33',262771588946984963,139,11),(1756,'2018-06-26 11:05:33',262771588946984963,139,10),(1757,'2018-06-26 11:06:49',274301199841361920,139,7),(1758,'2018-06-26 11:06:57',424563962303086594,139,8),(1759,'2018-06-26 11:08:48',274301199841361920,139,12),(1760,'2018-06-26 11:09:23',424563962303086594,139,8),(1761,'2018-06-26 11:12:09',262771588946984963,139,14),(1762,'2018-06-26 11:12:12',262771588946984963,139,9),(1763,'2018-06-26 11:12:14',274301199841361920,139,9),(1764,'2018-06-26 11:12:15',262771588946984963,139,9),(1765,'2018-06-26 11:12:31',424563962303086594,139,8),(1766,'2018-06-26 11:12:32',390618369545601028,139,10),(1767,'2018-06-26 11:12:50',424563962303086594,139,14),(1768,'2018-06-26 11:12:53',262771588946984963,139,10),(1769,'2018-06-26 11:17:13',424563962303086594,140,14),(1770,'2018-06-26 11:17:19',424563962303086594,140,6),(1771,'2018-06-26 11:18:26',262771588946984963,140,10),(1772,'2018-06-26 11:18:28',262771588946984963,140,12),(1773,'2018-06-26 11:18:54',262771588946984963,140,12),(1774,'2018-06-26 11:19:00',274301199841361920,140,10),(1775,'2018-06-26 11:19:01',274301199841361920,140,11),(1776,'2018-06-26 11:19:01',274301199841361920,140,10),(1777,'2018-06-26 11:19:02',274301199841361920,140,7),(1778,'2018-06-26 11:19:08',424563962303086594,140,9),(1779,'2018-06-26 11:20:44',262771588946984963,140,10),(1780,'2018-06-26 11:20:49',274301199841361920,140,10),(1781,'2018-06-26 11:20:54',424563962303086594,140,13),(1782,'2018-06-26 11:22:42',274301199841361920,140,8),(1783,'2018-06-26 11:22:47',262771588946984963,140,12),(1784,'2018-06-26 11:22:57',424563962303086594,140,10),(1785,'2018-06-26 11:24:42',262771588946984963,140,10),(1786,'2018-06-26 11:24:43',274301199841361920,140,13),(1787,'2018-06-26 11:26:31',424563962303086594,140,14),(1788,'2018-06-26 11:26:44',274301199841361920,140,6),(1789,'2018-06-26 11:26:48',262771588946984963,140,13),(1790,'2018-06-26 11:27:06',424563962303086594,140,12),(1791,'2018-06-26 11:28:43',274301199841361920,140,12),(1792,'2018-06-26 11:28:49',262771588946984963,140,10),(1793,'2018-06-26 11:29:46',185698541052755968,140,10),(1794,'2018-06-26 11:29:47',185698541052755968,140,7),(1795,'2018-06-26 11:29:48',185698541052755968,140,12),(1796,'2018-06-26 11:29:48',185698541052755968,140,11),(1797,'2018-06-26 11:29:49',185698541052755968,140,10),(1798,'2018-06-26 11:30:42',262771588946984963,140,14),(1799,'2018-06-26 11:30:50',390618369545601028,140,14),(1800,'2018-06-26 11:30:55',390618369545601028,140,8),(1801,'2018-06-26 11:30:58',390618369545601028,140,13),(1802,'2018-06-26 11:45:04',262771588946984963,141,11),(1803,'2018-06-26 11:45:05',262771588946984963,141,6),(1804,'2018-06-26 11:45:06',274301199841361920,141,8),(1805,'2018-06-26 11:45:06',262771588946984963,141,10),(1806,'2018-06-26 11:45:06',274301199841361920,141,9),(1807,'2018-06-26 11:45:07',262771588946984963,141,7),(1808,'2018-06-26 11:45:07',274301199841361920,141,6),(1809,'2018-06-26 11:45:07',274301199841361920,141,8),(1810,'2018-06-26 11:45:07',274301199841361920,141,6),(1811,'2018-06-26 11:45:07',262771588946984963,141,6),(1812,'2018-06-26 11:45:19',424563962303086594,141,12),(1813,'2018-06-26 11:45:24',424563962303086594,141,12),(1814,'2018-06-26 11:45:34',424563962303086594,141,10),(1815,'2018-06-26 11:45:38',424563962303086594,141,14),(1816,'2018-06-26 11:45:40',185698541052755968,141,14),(1817,'2018-06-26 11:45:41',185698541052755968,141,13),(1818,'2018-06-26 11:45:41',185698541052755968,141,12),(1819,'2018-06-26 12:04:46',274301199841361920,142,6),(1820,'2018-06-26 12:04:47',274301199841361920,142,6),(1821,'2018-06-26 12:04:48',274301199841361920,142,8),(1822,'2018-06-26 12:04:48',274301199841361920,142,9),(1823,'2018-06-26 12:04:48',274301199841361920,142,10),(1824,'2018-06-26 12:04:52',262771588946984963,142,6),(1825,'2018-06-26 12:04:55',262771588946984963,142,6),(1826,'2018-06-26 12:04:58',262771588946984963,142,14),(1827,'2018-06-26 12:05:01',262771588946984963,142,10),(1828,'2018-06-26 12:05:07',262771588946984963,142,10),(1829,'2018-06-26 12:05:22',185698541052755968,142,10),(1830,'2018-06-26 12:05:22',185698541052755968,142,11),(1831,'2018-06-26 12:05:22',185698541052755968,142,14),(1832,'2018-06-26 12:05:23',185698541052755968,142,9),(1833,'2018-06-26 12:05:23',185698541052755968,142,11),(1834,'2018-06-26 12:06:52',185698541052755968,142,10),(1835,'2018-06-26 12:07:02',262771588946984963,142,6),(1836,'2018-06-26 12:08:12',390618369545601028,142,8),(1837,'2018-06-26 12:08:15',390618369545601028,142,12),(1838,'2018-06-26 12:08:17',390618369545601028,142,14),(1839,'2018-06-26 12:08:20',390618369545601028,142,6),(1840,'2018-06-26 12:08:22',390618369545601028,142,12),(1841,'2018-06-26 12:08:47',262771588946984963,142,8),(1842,'2018-06-26 12:09:54',185698541052755968,142,7),(1843,'2018-06-26 12:10:42',262771588946984963,142,7),(1844,'2018-06-26 12:11:02',390618369545601028,142,9),(1845,'2018-06-26 12:11:07',390618369545601028,142,14),(1846,'2018-06-26 12:11:13',185698541052755968,142,12),(1847,'2018-06-26 12:12:42',262771588946984963,142,11),(1848,'2018-06-26 12:12:45',185698541052755968,142,9),(1849,'2018-06-26 12:26:50',262771588946984963,143,11),(1850,'2018-06-26 12:26:52',262771588946984963,143,11),(1851,'2018-06-26 12:26:53',262771588946984963,143,9),(1852,'2018-06-26 12:26:53',262771588946984963,143,14),(1853,'2018-06-26 12:26:53',262771588946984963,143,7),(1854,'2018-06-26 12:27:19',185698541052755968,143,13),(1855,'2018-06-26 12:27:19',185698541052755968,143,10),(1856,'2018-06-26 12:27:20',185698541052755968,143,8),(1857,'2018-06-26 12:27:20',185698541052755968,143,10),(1858,'2018-06-26 12:27:21',185698541052755968,143,10),(1859,'2018-06-26 12:27:27',274301199841361920,143,6),(1860,'2018-06-26 12:28:42',262771588946984963,143,7),(1861,'2018-06-26 12:29:34',185698541052755968,143,13),(1862,'2018-06-26 12:30:43',262771588946984963,143,9),(1863,'2018-06-26 12:30:51',185698541052755968,143,13),(1864,'2018-06-26 12:32:45',262771588946984963,143,10),(1865,'2018-06-26 12:33:32',286105785052954626,143,12),(1866,'2018-06-26 12:33:37',286105785052954626,143,14),(1867,'2018-06-26 12:33:41',286105785052954626,143,7),(1868,'2018-06-26 12:33:46',286105785052954626,143,9),(1869,'2018-06-26 12:33:50',286105785052954626,143,14),(1870,'2018-06-26 12:40:56',262771588946984963,144,13),(1871,'2018-06-26 12:40:58',262771588946984963,144,11),(1872,'2018-06-26 12:41:01',262771588946984963,144,7),(1873,'2018-06-26 12:41:03',262771588946984963,144,13),(1874,'2018-06-26 12:45:47',334750493085794304,144,9),(1875,'2018-06-26 12:45:49',334750493085794304,144,10),(1876,'2018-06-26 12:45:50',334750493085794304,144,13),(1877,'2018-06-26 12:45:51',334750493085794304,144,10),(1878,'2018-06-26 12:45:52',334750493085794304,144,6),(1879,'2018-06-26 13:00:47',390618369545601028,144,14),(1880,'2018-06-26 13:00:49',390618369545601028,144,10),(1881,'2018-06-26 13:00:51',390618369545601028,144,11),(1882,'2018-06-26 13:00:53',390618369545601028,144,6),(1883,'2018-06-26 13:00:54',390618369545601028,144,11),(1884,'2018-06-26 13:05:34',274301199841361920,144,9),(1885,'2018-06-26 13:05:37',274301199841361920,144,13),(1886,'2018-06-26 13:05:41',274301199841361920,144,6),(1887,'2018-06-26 13:07:07',211232684209340426,144,13),(1888,'2018-06-26 13:07:09',211232684209340426,144,8),(1889,'2018-06-26 13:07:10',211232684209340426,144,13),(1890,'2018-06-26 13:07:10',211232684209340426,144,6),(1891,'2018-06-26 13:07:11',211232684209340426,144,12),(1892,'2018-06-26 13:11:09',211232684209340426,145,8),(1893,'2018-06-26 13:11:10',211232684209340426,145,8),(1894,'2018-06-26 13:11:56',334750493085794304,145,10),(1895,'2018-06-26 13:12:02',334750493085794304,145,10),(1896,'2018-06-26 13:12:02',334750493085794304,145,13),(1897,'2018-06-26 13:12:03',334750493085794304,145,9),(1898,'2018-06-26 13:12:05',334750493085794304,145,14),(1899,'2018-06-26 13:12:47',274301199841361920,145,9),(1900,'2018-06-26 13:12:49',211232684209340426,145,11),(1901,'2018-06-26 13:12:50',274301199841361920,145,7),(1902,'2018-06-26 13:12:53',274301199841361920,145,6),(1903,'2018-06-26 13:12:55',274301199841361920,145,14),(1904,'2018-06-26 13:16:00',211232684209340426,145,10),(1905,'2018-06-26 13:16:47',211232684209340426,145,13),(1906,'2018-06-26 13:19:17',211232684209340426,145,8),(1907,'2018-06-26 13:21:37',211232684209340426,145,13),(1908,'2018-06-26 13:22:59',211232684209340426,145,11),(1909,'2018-06-26 13:30:54',211232684209340426,146,7),(1910,'2018-06-26 13:32:32',274301199841361920,146,13),(1911,'2018-06-26 13:32:35',274301199841361920,146,10),(1912,'2018-06-26 13:32:38',274301199841361920,146,8),(1913,'2018-06-26 13:32:40',274301199841361920,146,7),(1914,'2018-06-26 13:32:49',211232684209340426,146,8),(1915,'2018-06-26 13:32:51',274301199841361920,146,6),(1916,'2018-06-26 13:32:51',211232684209340426,146,10),(1917,'2018-06-26 13:32:52',274301199841361920,146,7),(1918,'2018-06-26 13:32:54',211232684209340426,146,7),(1919,'2018-06-26 13:32:56',211232684209340426,146,13),(1920,'2018-06-26 13:36:04',274301199841361920,146,9),(1921,'2018-06-26 13:36:24',286105785052954626,146,13),(1922,'2018-06-26 13:36:25',286105785052954626,146,9),(1923,'2018-06-26 13:36:26',286105785052954626,146,13),(1924,'2018-06-26 13:36:26',286105785052954626,146,14),(1925,'2018-06-26 13:36:27',286105785052954626,146,11),(1926,'2018-06-26 13:38:13',201102155896193024,146,8),(1927,'2018-06-26 13:38:17',201102155896193024,146,14),(1928,'2018-06-26 13:38:18',201102155896193024,146,9),(1929,'2018-06-26 13:38:19',201102155896193024,146,10),(1930,'2018-06-26 13:38:20',274301199841361920,146,9),(1931,'2018-06-26 13:38:20',201102155896193024,146,9),(1932,'2018-06-26 13:38:40',211232684209340426,146,10),(1933,'2018-06-26 13:39:20',459873273308643328,146,9),(1934,'2018-06-26 13:39:21',459873273308643328,146,10),(1935,'2018-06-26 13:39:22',459873273308643328,146,7),(1936,'2018-06-26 13:39:24',459873273308643328,146,6),(1937,'2018-06-26 13:39:25',459873273308643328,146,6),(1938,'2018-06-26 13:39:26',274301199841361920,146,10),(1939,'2018-06-26 13:39:48',236304169533833216,146,11),(1940,'2018-06-26 13:39:49',236304169533833216,146,14),(1941,'2018-06-26 13:54:54',334750493085794304,147,9),(1942,'2018-06-26 13:54:55',334750493085794304,147,13),(1943,'2018-06-26 13:54:56',334750493085794304,147,7),(1944,'2018-06-26 13:54:56',334750493085794304,147,10),(1945,'2018-06-26 13:54:57',334750493085794304,147,10),(1946,'2018-06-26 13:55:22',274301199841361920,147,6),(1947,'2018-06-26 13:55:23',274301199841361920,147,8),(1948,'2018-06-26 13:55:24',274301199841361920,147,9),(1949,'2018-06-26 13:55:25',274301199841361920,147,12),(1950,'2018-06-26 13:55:26',274301199841361920,147,13),(1951,'2018-06-26 14:00:20',274301199841361920,147,13),(1952,'2018-06-26 14:00:22',274301199841361920,147,10),(1953,'2018-06-26 14:00:59',185698541052755968,147,14),(1954,'2018-06-26 14:01:00',185698541052755968,147,8),(1955,'2018-06-26 14:01:00',185698541052755968,147,11),(1956,'2018-06-26 14:01:00',185698541052755968,147,9),(1957,'2018-06-26 14:01:01',185698541052755968,147,7),(1958,'2018-06-26 14:02:19',274301199841361920,147,10),(1959,'2018-06-26 14:03:37',185698541052755968,147,9),(1960,'2018-06-26 14:04:37',274301199841361920,147,13),(1961,'2018-06-26 14:05:23',334750493085794304,147,14),(1962,'2018-06-26 14:05:29',334750493085794304,147,8),(1963,'2018-06-26 14:13:44',201102155896193024,148,7),(1964,'2018-06-26 14:13:44',204933415252787202,148,13),(1965,'2018-06-26 14:13:45',201102155896193024,148,7),(1966,'2018-06-26 14:13:45',201102155896193024,148,13),(1967,'2018-06-26 14:13:46',204933415252787202,148,10),(1968,'2018-06-26 14:13:46',201102155896193024,148,10),(1969,'2018-06-26 14:13:46',201102155896193024,148,10),(1970,'2018-06-26 14:13:47',204933415252787202,148,13),(1971,'2018-06-26 14:13:48',204933415252787202,148,8),(1972,'2018-06-26 14:13:50',204933415252787202,148,9),(1973,'2018-06-26 14:13:54',459873273308643328,148,10),(1974,'2018-06-26 14:13:55',459873273308643328,148,7),(1975,'2018-06-26 14:13:56',459873273308643328,148,9),(1976,'2018-06-26 14:13:56',459873273308643328,148,8),(1977,'2018-06-26 14:13:57',459873273308643328,148,14),(1978,'2018-06-26 14:14:02',236304169533833216,148,9),(1979,'2018-06-26 14:14:03',236304169533833216,148,13),(1980,'2018-06-26 14:14:04',236304169533833216,148,8),(1981,'2018-06-26 14:14:05',236304169533833216,148,8),(1982,'2018-06-26 14:14:07',236304169533833216,148,9),(1983,'2018-06-26 14:15:14',185698541052755968,148,13),(1984,'2018-06-26 14:15:14',185698541052755968,148,10),(1985,'2018-06-26 14:15:15',185698541052755968,148,7),(1986,'2018-06-26 14:15:20',204933415252787202,148,11),(1987,'2018-06-26 14:16:02',201102155896193024,148,13),(1988,'2018-06-26 14:16:11',459873273308643328,148,10),(1989,'2018-06-26 14:38:55',201102155896193024,149,11),(1990,'2018-06-26 14:38:55',297748308523483138,149,13),(1991,'2018-06-26 14:38:56',201102155896193024,149,11),(1992,'2018-06-26 14:38:56',201102155896193024,149,10),(1993,'2018-06-26 14:38:56',297748308523483138,149,13),(1994,'2018-06-26 14:38:57',201102155896193024,149,10),(1995,'2018-06-26 14:38:57',201102155896193024,149,9),(1996,'2018-06-26 14:38:58',297748308523483138,149,7),(1997,'2018-06-26 14:38:58',274301199841361920,149,7),(1998,'2018-06-26 14:38:59',204933415252787202,149,12),(1999,'2018-06-26 14:39:00',236304169533833216,149,6),(2000,'2018-06-26 14:39:00',297748308523483138,149,11),(2001,'2018-06-26 14:39:01',236304169533833216,149,6),(2002,'2018-06-26 14:39:02',204933415252787202,149,10),(2003,'2018-06-26 14:39:02',236304169533833216,149,12),(2004,'2018-06-26 14:39:02',459873273308643328,149,7),(2005,'2018-06-26 14:39:02',459873273308643328,149,10),(2006,'2018-06-26 14:39:03',297748308523483138,149,14),(2007,'2018-06-26 14:39:04',204933415252787202,149,13),(2008,'2018-06-26 14:39:05',211232684209340426,149,6),(2009,'2018-06-26 14:39:07',204933415252787202,149,7),(2010,'2018-06-26 14:39:10',204933415252787202,149,13),(2011,'2018-06-26 14:39:18',286105785052954626,149,10),(2012,'2018-06-26 14:39:19',286105785052954626,149,6),(2013,'2018-06-26 14:39:20',286105785052954626,149,14),(2014,'2018-06-26 14:40:44',201102155896193024,149,8),(2015,'2018-06-26 14:43:30',459879057295671296,149,10),(2016,'2018-06-26 14:43:31',459879057295671296,149,7),(2017,'2018-06-26 14:43:32',459879057295671296,149,7),(2018,'2018-06-26 14:43:34',459879057295671296,149,6),(2019,'2018-06-26 14:43:37',185698541052755968,149,12),(2020,'2018-06-26 15:12:46',459883167160205313,150,7),(2021,'2018-06-26 15:12:47',459883167160205313,150,10),(2022,'2018-06-26 15:12:48',459883167160205313,150,10),(2023,'2018-06-26 15:12:48',459883167160205313,150,9),(2024,'2018-06-26 15:12:49',459883167160205313,150,13),(2025,'2018-06-26 15:12:51',236304169533833216,150,7),(2026,'2018-06-26 15:12:52',236304169533833216,150,10),(2027,'2018-06-26 15:12:52',236304169533833216,150,10),(2028,'2018-06-26 15:12:53',236304169533833216,150,11),(2029,'2018-06-26 15:12:53',236304169533833216,150,13),(2030,'2018-06-26 15:12:54',163770616581718017,150,6),(2031,'2018-06-26 15:12:59',286105785052954626,150,9),(2032,'2018-06-26 15:13:00',286105785052954626,150,8),(2033,'2018-06-26 15:13:01',286105785052954626,150,11),(2034,'2018-06-26 15:13:02',286105785052954626,150,6),(2035,'2018-06-26 15:13:07',163770616581718017,150,13),(2036,'2018-06-26 15:13:15',163770616581718017,150,11),(2037,'2018-06-26 15:13:21',163770616581718017,150,6),(2038,'2018-06-26 15:13:27',163770616581718017,150,10),(2039,'2018-06-26 15:37:40',204933415252787202,151,13),(2040,'2018-06-26 15:37:41',211232684209340426,151,14),(2041,'2018-06-26 15:37:42',204933415252787202,151,8),(2042,'2018-06-26 15:37:44',459883167160205313,151,7),(2043,'2018-06-26 15:37:44',459883167160205313,151,10),(2044,'2018-06-26 15:37:44',204933415252787202,151,13),(2045,'2018-06-26 15:37:45',459883167160205313,151,12),(2046,'2018-06-26 15:37:45',459883167160205313,151,9),(2047,'2018-06-26 15:37:46',459883167160205313,151,10),(2048,'2018-06-26 15:37:47',204933415252787202,151,6),(2049,'2018-06-26 15:37:49',201102155896193024,151,13),(2050,'2018-06-26 15:37:50',201102155896193024,151,13),(2051,'2018-06-26 15:37:50',262771588946984963,151,11),(2052,'2018-06-26 15:37:50',204933415252787202,151,7),(2053,'2018-06-26 15:37:51',201102155896193024,151,8),(2054,'2018-06-26 15:37:51',236304169533833216,151,9),(2055,'2018-06-26 15:37:51',201102155896193024,151,6),(2056,'2018-06-26 15:37:53',262771588946984963,151,12),(2057,'2018-06-26 15:37:54',262771588946984963,151,14),(2058,'2018-06-26 15:37:56',262771588946984963,151,6),(2059,'2018-06-26 15:37:59',262771588946984963,151,8),(2060,'2018-06-26 15:38:03',236304169533833216,151,13),(2061,'2018-06-26 15:38:08',236304169533833216,151,11),(2062,'2018-06-26 15:38:09',236304169533833216,151,7),(2063,'2018-06-26 15:38:09',236304169533833216,151,14),(2064,'2018-06-26 15:38:49',262771588946984963,151,14),(2065,'2018-06-26 15:38:57',204933415252787202,151,10),(2066,'2018-06-26 15:39:10',459879057295671296,151,11),(2067,'2018-06-26 15:39:11',459879057295671296,151,10),(2068,'2018-06-26 15:39:11',459879057295671296,151,8),(2069,'2018-06-26 15:39:12',459879057295671296,151,14),(2070,'2018-06-26 15:39:13',459879057295671296,151,6),(2071,'2018-06-26 15:39:38',274301199841361920,151,13),(2072,'2018-06-26 15:39:38',274301199841361920,151,13),(2073,'2018-06-26 15:39:39',274301199841361920,151,13),(2074,'2018-06-26 15:39:40',274301199841361920,151,10),(2075,'2018-06-26 15:40:45',262771588946984963,152,10),(2076,'2018-06-26 15:40:58',204933415252787202,152,11),(2077,'2018-06-26 15:41:07',274301199841361920,152,13),(2078,'2018-06-26 15:41:13',459873273308643328,152,8),(2079,'2018-06-26 15:41:15',459873273308643328,152,10),(2080,'2018-06-26 15:41:16',459873273308643328,152,9),(2081,'2018-06-26 15:41:18',459873273308643328,152,7),(2082,'2018-06-26 15:41:19',459873273308643328,152,8),(2083,'2018-06-26 15:42:45',262771588946984963,152,10),(2084,'2018-06-26 15:43:05',204933415252787202,152,12),(2085,'2018-06-26 15:43:22',459883167160205313,152,10),(2086,'2018-06-26 15:43:23',459883167160205313,152,11),(2087,'2018-06-26 15:43:24',459883167160205313,152,12),(2088,'2018-06-26 15:44:53',262771588946984963,152,9),(2089,'2018-06-26 15:45:03',204933415252787202,152,12),(2090,'2018-06-26 15:45:24',459881667104997376,152,10),(2091,'2018-06-26 15:45:32',142612779377885185,152,14),(2092,'2018-06-26 15:45:35',459881667104997376,152,8),(2093,'2018-06-26 15:45:38',142612779377885185,152,12),(2094,'2018-06-26 15:45:39',459881667104997376,152,8),(2095,'2018-06-26 15:45:46',142612779377885185,152,9),(2096,'2018-06-26 15:45:46',459881667104997376,152,10),(2097,'2018-06-26 15:45:53',459881667104997376,152,10),(2098,'2018-06-26 15:45:55',142612779377885185,152,6),(2099,'2018-06-26 15:47:04',200340393596944384,152,8),(2100,'2018-06-26 15:47:06',200340393596944384,152,13),(2101,'2018-06-26 15:47:07',200340393596944384,152,14),(2102,'2018-06-26 15:47:09',200340393596944384,152,8),(2103,'2018-06-26 15:47:10',200340393596944384,152,7),(2104,'2018-06-26 15:47:20',454823752925052930,152,10),(2105,'2018-06-26 15:47:23',454823752925052930,152,6),(2106,'2018-06-26 15:47:25',204933415252787202,152,12),(2107,'2018-06-26 15:47:25',454823752925052930,152,13),(2108,'2018-06-26 15:54:23',204933415252787202,153,11),(2109,'2018-06-26 15:54:26',204933415252787202,153,13),(2110,'2018-06-26 15:54:26',459881667104997376,153,14),(2111,'2018-06-26 15:54:27',459881667104997376,153,13),(2112,'2018-06-26 15:54:28',204933415252787202,153,6),(2113,'2018-06-26 15:54:30',454823752925052930,153,14),(2114,'2018-06-26 15:54:31',459881667104997376,153,14),(2115,'2018-06-26 15:54:32',454823752925052930,153,12),(2116,'2018-06-26 15:54:32',459881667104997376,153,12),(2117,'2018-06-26 15:54:34',454823752925052930,153,9),(2118,'2018-06-26 15:54:39',454823752925052930,153,10),(2119,'2018-06-26 15:54:57',200340393596944384,153,12),(2120,'2018-06-26 15:55:00',200340393596944384,153,9),(2121,'2018-06-26 15:55:04',459883167160205313,153,10),(2122,'2018-06-26 15:55:05',459883167160205313,153,11),(2123,'2018-06-26 15:55:06',459883167160205313,153,12),(2124,'2018-06-26 15:55:06',200340393596944384,153,6),(2125,'2018-06-26 15:55:06',454823752925052930,153,9),(2126,'2018-06-26 15:55:07',459883167160205313,153,13),(2127,'2018-06-26 15:55:09',459883167160205313,153,12),(2128,'2018-06-26 15:55:12',454823752925052930,153,6),(2129,'2018-06-26 15:55:16',200340393596944384,153,6),(2130,'2018-06-26 15:55:41',459879057295671296,153,11),(2131,'2018-06-26 16:08:51',454823752925052930,154,10),(2132,'2018-06-26 16:08:52',454823752925052930,154,13),(2133,'2018-06-26 16:08:57',454823752925052930,154,10),(2134,'2018-06-26 16:08:58',454823752925052930,154,7),(2135,'2018-06-26 16:08:59',454823752925052930,154,9),(2136,'2018-06-26 16:09:02',459879057295671296,154,12),(2137,'2018-06-26 16:09:19',200340393596944384,154,14),(2138,'2018-06-26 16:09:23',236304169533833216,154,10),(2139,'2018-06-26 16:09:23',200340393596944384,154,11),(2140,'2018-06-26 16:09:25',236304169533833216,154,12),(2141,'2018-06-26 16:09:26',236304169533833216,154,14),(2142,'2018-06-26 16:09:27',236304169533833216,154,13),(2143,'2018-06-26 16:09:28',200340393596944384,154,11),(2144,'2018-06-26 16:09:29',236304169533833216,154,14),(2145,'2018-06-26 16:09:29',200340393596944384,154,14),(2146,'2018-06-26 16:09:31',200340393596944384,154,7),(2147,'2018-06-26 16:09:53',459873273308643328,154,10),(2148,'2018-06-26 16:09:54',459873273308643328,154,7),(2149,'2018-06-26 16:09:55',459873273308643328,154,10),(2150,'2018-06-26 16:09:56',459873273308643328,154,9),(2151,'2018-06-26 16:09:57',459873273308643328,154,10),(2152,'2018-06-26 16:11:19',459883167160205313,154,9),(2153,'2018-06-26 16:11:20',459883167160205313,154,8),(2154,'2018-06-26 16:11:21',459883167160205313,154,6),(2155,'2018-06-26 16:11:22',459883167160205313,154,12),(2156,'2018-06-26 16:11:23',459883167160205313,154,12),(2157,'2018-06-26 16:14:52',459881667104997376,154,6),(2158,'2018-06-26 16:14:53',459881667104997376,154,7),(2159,'2018-06-26 16:14:54',459881667104997376,154,7),(2160,'2018-06-26 16:14:55',459881667104997376,154,10),(2161,'2018-06-26 16:14:56',459881667104997376,154,8),(2162,'2018-06-26 16:18:03',334750493085794304,154,13),(2163,'2018-06-26 16:18:04',334750493085794304,154,10),(2164,'2018-06-26 16:18:05',334750493085794304,154,7),(2165,'2018-06-26 16:57:28',200340393596944384,155,7),(2166,'2018-06-26 16:57:30',200340393596944384,155,10),(2167,'2018-06-26 16:57:32',218498162745278474,155,6),(2168,'2018-06-26 16:57:32',200340393596944384,155,12),(2169,'2018-06-26 16:57:32',204933415252787202,155,14),(2170,'2018-06-26 16:57:33',200340393596944384,155,13),(2171,'2018-06-26 16:57:33',236304169533833216,155,6),(2172,'2018-06-26 16:57:33',204933415252787202,155,14),(2173,'2018-06-26 16:57:34',236304169533833216,155,14),(2174,'2018-06-26 16:57:34',236304169533833216,155,13),(2175,'2018-06-26 16:57:35',236304169533833216,155,12),(2176,'2018-06-26 16:57:35',200340393596944384,155,7),(2177,'2018-06-26 16:57:35',236304169533833216,155,11),(2178,'2018-06-26 16:57:36',204933415252787202,155,10),(2179,'2018-06-26 16:57:36',218498162745278474,155,13),(2180,'2018-06-26 16:57:37',204933415252787202,155,11),(2181,'2018-06-26 16:57:38',204933415252787202,155,8),(2182,'2018-06-26 16:57:44',218498162745278474,155,10),(2183,'2018-06-26 16:57:49',218498162745278474,155,13),(2184,'2018-06-26 16:57:51',201102155896193024,155,10),(2185,'2018-06-26 16:57:52',201102155896193024,155,10),(2186,'2018-06-26 16:57:53',201102155896193024,155,9),(2187,'2018-06-26 16:57:54',201102155896193024,155,8),(2188,'2018-06-26 16:57:55',218498162745278474,155,14),(2189,'2018-06-26 16:58:07',459881667104997376,155,10),(2190,'2018-06-26 16:58:09',459881667104997376,155,6),(2191,'2018-06-26 16:58:10',459881667104997376,155,9),(2192,'2018-06-26 17:26:29',201102155896193024,156,7),(2193,'2018-06-26 17:26:30',201102155896193024,156,14),(2194,'2018-06-26 17:26:33',201102155896193024,156,9),(2195,'2018-06-26 17:26:34',204933415252787202,156,8),(2196,'2018-06-26 17:26:35',236304169533833216,156,6),(2197,'2018-06-26 17:26:35',204933415252787202,156,6),(2198,'2018-06-26 17:26:36',236304169533833216,156,9),(2199,'2018-06-26 17:26:36',236304169533833216,156,14),(2200,'2018-06-26 17:26:37',236304169533833216,156,8),(2201,'2018-06-26 17:26:38',236304169533833216,156,13),(2202,'2018-06-26 17:26:41',236304169533833216,156,11),(2203,'2018-06-26 17:26:57',334750493085794304,156,14),(2204,'2018-06-26 17:26:57',334750493085794304,156,13),(2205,'2018-06-26 17:26:58',334750493085794304,156,7),(2206,'2018-06-26 17:26:59',334750493085794304,156,9),(2207,'2018-06-26 17:26:59',334750493085794304,156,9),(2208,'2018-06-26 17:27:03',459881667104997376,156,6),(2209,'2018-06-26 17:27:04',459881667104997376,156,13),(2210,'2018-06-26 17:27:05',459881667104997376,156,8),(2211,'2018-06-26 17:27:06',459881667104997376,156,12),(2212,'2018-06-26 17:27:07',459881667104997376,156,14),(2213,'2018-06-26 17:28:19',211232684209340426,156,12),(2214,'2018-06-26 17:28:20',220272827327053824,156,9),(2215,'2018-06-26 17:28:21',286105785052954626,156,14),(2216,'2018-06-26 17:28:23',211232684209340426,156,7),(2217,'2018-06-26 17:28:23',286105785052954626,156,10),(2218,'2018-06-26 17:28:24',459883167160205313,156,14),(2219,'2018-06-26 17:28:24',459883167160205313,156,11),(2220,'2018-06-26 17:47:20',236304169533833216,157,12),(2221,'2018-06-26 17:47:23',459883167160205313,157,9),(2222,'2018-06-26 17:47:23',459883167160205313,157,11),(2223,'2018-06-26 17:47:24',459883167160205313,157,9),(2224,'2018-06-26 17:47:25',459883167160205313,157,12),(2225,'2018-06-26 17:47:26',334750493085794304,157,10),(2226,'2018-06-26 17:47:27',459883167160205313,157,14),(2227,'2018-06-26 17:47:27',334750493085794304,157,10),(2228,'2018-06-26 17:47:28',334750493085794304,157,12),(2229,'2018-06-26 17:47:29',334750493085794304,157,10),(2230,'2018-06-26 17:47:29',334750493085794304,157,10),(2231,'2018-06-26 17:48:02',459879057295671296,157,6),(2232,'2018-06-26 17:48:03',459879057295671296,157,13),(2233,'2018-06-26 17:48:04',459879057295671296,157,10),(2234,'2018-06-26 17:48:04',459879057295671296,157,14),(2235,'2018-06-26 17:48:05',459879057295671296,157,13),(2236,'2018-06-26 17:48:08',429615167492325376,157,12),(2237,'2018-06-26 17:48:14',429615167492325376,157,7),(2238,'2018-06-26 17:48:19',429615167492325376,157,8),(2239,'2018-06-26 17:48:23',429615167492325376,157,10),(2240,'2018-06-26 17:48:29',429615167492325376,157,7),(2241,'2018-06-26 17:48:35',459881667104997376,157,13),(2242,'2018-06-26 17:48:36',459881667104997376,157,6),(2243,'2018-06-26 18:06:45',211232684209340426,158,10),(2244,'2018-06-26 18:06:46',211232684209340426,158,9),(2245,'2018-06-26 18:06:47',163770616581718017,158,13),(2246,'2018-06-26 18:06:48',211232684209340426,158,13),(2247,'2018-06-26 18:06:49',211232684209340426,158,7),(2248,'2018-06-26 18:06:50',211232684209340426,158,12),(2249,'2018-06-26 18:06:52',459873273308643328,158,14),(2250,'2018-06-26 18:06:53',459873273308643328,158,9),(2251,'2018-06-26 18:06:54',459873273308643328,158,10),(2252,'2018-06-26 18:06:57',334750493085794304,158,13),(2253,'2018-06-26 18:06:59',459873273308643328,158,9),(2254,'2018-06-26 18:07:00',459873273308643328,158,9),(2255,'2018-06-26 18:07:03',334750493085794304,158,10),(2256,'2018-06-26 18:07:03',334750493085794304,158,10),(2257,'2018-06-26 18:07:04',334750493085794304,158,9),(2258,'2018-06-26 18:07:05',334750493085794304,158,12),(2259,'2018-06-26 18:07:06',163770616581718017,158,9),(2260,'2018-06-26 18:07:12',163770616581718017,158,8),(2261,'2018-06-26 18:07:16',163770616581718017,158,10),(2262,'2018-06-26 18:07:18',163770616581718017,158,7),(2263,'2018-06-26 18:07:19',163770616581718017,158,10),(2264,'2018-06-26 18:07:25',459883167160205313,158,9),(2265,'2018-06-26 18:07:26',459883167160205313,158,12),(2266,'2018-06-26 18:07:26',459883167160205313,158,10),(2267,'2018-06-26 18:07:27',459883167160205313,158,12),(2268,'2018-06-26 18:07:27',459883167160205313,158,7),(2269,'2018-06-26 18:07:56',459881667104997376,158,10),(2270,'2018-06-26 18:07:57',459881667104997376,158,7),(2271,'2018-06-26 18:07:58',459881667104997376,158,10),(2272,'2018-06-26 18:08:00',459881667104997376,158,11),(2273,'2018-06-26 18:08:01',459881667104997376,158,12),(2274,'2018-06-26 18:08:36',459879057295671296,158,13),(2275,'2018-06-26 18:08:37',459879057295671296,158,10),(2276,'2018-06-26 18:08:38',459879057295671296,158,11),(2277,'2018-06-26 18:08:39',459879057295671296,158,13),(2278,'2018-06-26 18:08:40',459879057295671296,158,7),(2279,'2018-06-26 18:08:41',459879057295671296,158,10),(2280,'2018-06-26 18:09:07',163770616581718017,158,7),(2281,'2018-06-26 18:09:18',211232684209340426,158,10),(2282,'2018-06-26 18:09:21',274301199841361920,158,11),(2283,'2018-06-26 18:39:21',163770616581718017,1,1),(2284,'2018-06-26 18:55:21',459834182961463299,159,8),(2285,'2018-06-26 18:55:23',211232684209340426,159,13),(2286,'2018-06-26 18:55:25',459834182961463299,159,9),(2287,'2018-06-26 18:55:26',459834182961463299,159,7),(2288,'2018-06-26 18:55:27',459834182961463299,159,8),(2289,'2018-06-26 18:55:29',211232684209340426,159,12),(2290,'2018-06-26 18:55:31',424563962303086594,159,10),(2291,'2018-06-26 18:55:33',459834182961463299,159,11),(2292,'2018-06-26 18:55:35',211232684209340426,159,6),(2293,'2018-06-26 18:55:38',211232684209340426,159,10),(2294,'2018-06-26 18:55:40',211232684209340426,159,10),(2295,'2018-06-26 18:55:43',424563962303086594,159,10),(2296,'2018-06-26 18:55:47',201102155896193024,159,8),(2297,'2018-06-26 18:55:51',201102155896193024,159,9),(2298,'2018-06-26 18:55:54',201102155896193024,159,9),(2299,'2018-06-26 19:03:47',163770616581718017,159,8),(2300,'2018-06-26 19:05:49',163770616581718017,159,1),(2301,'2018-06-26 19:10:27',163770616581718017,159,7),(2302,'2018-06-26 19:12:58',163770616581718017,159,1),(2303,'2018-06-26 19:14:25',163770616581718017,159,1),(2304,'2018-06-26 19:14:28',163770616581718017,159,1),(2305,'2018-06-26 19:16:17',163770616581718017,159,7),(2306,'2018-06-26 19:16:29',163770616581718017,159,13),(2307,'2018-06-26 19:16:34',163770616581718017,159,7),(2308,'2018-06-26 19:16:39',163770616581718017,159,10),(2309,'2018-06-26 19:16:43',163770616581718017,159,9),(2310,'2018-06-26 19:20:05',163770616581718017,159,11),(2311,'2018-06-26 19:20:09',163770616581718017,159,13),(2312,'2018-06-26 19:20:14',163770616581718017,159,8),(2313,'2018-06-26 19:20:19',163770616581718017,159,10),(2314,'2018-06-26 19:32:50',274301199841361920,160,10),(2315,'2018-06-26 19:32:51',274301199841361920,160,14),(2316,'2018-06-26 19:32:52',274301199841361920,160,9),(2317,'2018-06-26 19:32:52',211232684209340426,160,8),(2318,'2018-06-26 19:32:52',201102155896193024,160,10),(2319,'2018-06-26 19:32:52',274301199841361920,160,14),(2320,'2018-06-26 19:32:52',201102155896193024,160,7),(2321,'2018-06-26 19:32:52',211232684209340426,160,9),(2322,'2018-06-26 19:42:41',262771588946984963,161,12),(2323,'2018-06-26 19:42:43',218498162745278474,161,12),(2324,'2018-06-26 19:42:44',201102155896193024,161,13),(2325,'2018-06-26 19:42:44',262771588946984963,161,14),(2326,'2018-06-26 19:42:44',201102155896193024,161,14),(2327,'2018-06-26 19:42:45',201102155896193024,161,7),(2328,'2018-06-26 19:42:45',211232684209340426,161,12),(2329,'2018-06-26 19:42:45',211232684209340426,161,11),(2330,'2018-06-26 19:42:46',262771588946984963,161,12),(2331,'2018-06-26 19:42:46',211232684209340426,161,11),(2332,'2018-06-26 19:42:46',201102155896193024,161,13),(2333,'2018-06-26 19:42:46',218498162745278474,161,8),(2334,'2018-06-26 19:42:46',211232684209340426,161,13),(2335,'2018-06-26 20:09:39',274301199841361920,162,13),(2336,'2018-06-26 20:09:40',200340393596944384,162,12),(2337,'2018-06-26 20:09:40',274301199841361920,162,10),(2338,'2018-06-26 20:09:40',200340393596944384,162,10),(2339,'2018-06-26 20:09:40',274301199841361920,162,9),(2340,'2018-06-26 20:09:40',200340393596944384,162,12),(2341,'2018-06-26 20:09:41',201102155896193024,162,13),(2342,'2018-06-26 20:09:41',274301199841361920,162,10),(2343,'2018-06-26 20:09:41',200340393596944384,162,13),(2344,'2018-06-26 20:09:41',274301199841361920,162,6),(2345,'2018-06-26 20:09:41',200340393596944384,162,13),(2346,'2018-06-26 20:09:43',433759248800022532,162,14),(2347,'2018-06-26 20:09:43',262771588946984963,162,10),(2348,'2018-06-26 20:09:43',433759248800022532,162,7),(2349,'2018-06-26 20:09:44',433759248800022532,162,8),(2350,'2018-06-26 20:42:17',262771588946984963,163,10),(2351,'2018-06-26 20:42:17',201102155896193024,163,8),(2352,'2018-06-26 20:42:18',262771588946984963,163,7),(2353,'2018-06-26 20:42:18',201102155896193024,163,8),(2354,'2018-06-26 20:42:19',211232684209340426,163,14),(2355,'2018-06-26 20:42:19',211232684209340426,163,13),(2356,'2018-06-26 20:42:19',201102155896193024,163,12),(2357,'2018-06-26 20:42:19',262771588946984963,163,6),(2358,'2018-06-26 20:42:19',211232684209340426,163,12),(2359,'2018-06-26 20:42:20',201102155896193024,163,11),(2360,'2018-06-26 21:16:58',262771588946984963,164,10),(2361,'2018-06-26 21:17:01',201102155896193024,164,7),(2362,'2018-06-26 21:17:01',201102155896193024,164,7),(2363,'2018-06-26 21:17:02',262771588946984963,164,9),(2364,'2018-06-26 21:17:02',201102155896193024,164,10),(2365,'2018-06-26 21:17:02',262771588946984963,164,10),(2366,'2018-06-26 21:17:02',201102155896193024,164,11),(2367,'2018-06-26 21:17:03',218498162745278474,164,10),(2368,'2018-06-26 21:17:03',201102155896193024,164,12),(2369,'2018-06-26 21:20:28',201102155896193024,165,13),(2370,'2018-06-26 21:20:30',297748308523483138,165,6),(2371,'2018-06-26 21:20:31',262771588946984963,165,11),(2372,'2018-06-26 21:20:31',297748308523483138,165,10),(2373,'2018-06-26 21:20:31',297748308523483138,165,9),(2374,'2018-06-26 21:20:31',297748308523483138,165,13),(2375,'2018-06-26 21:20:31',262771588946984963,165,11),(2376,'2018-06-26 21:20:32',262771588946984963,165,12),(2377,'2018-06-26 21:20:32',218498162745278474,165,10),(2378,'2018-06-26 21:20:33',459834182961463299,165,7),(2379,'2018-06-26 21:20:33',218498162745278474,165,12),(2380,'2018-06-26 21:20:34',459834182961463299,165,12),(2381,'2018-06-26 21:20:34',459834182961463299,165,14),(2382,'2018-06-26 21:20:35',218498162745278474,165,12),(2383,'2018-06-26 21:20:35',459834182961463299,165,7),(2384,'2018-06-26 21:20:36',459834182961463299,165,11),(2385,'2018-06-26 21:20:36',218498162745278474,165,13),(2386,'2018-06-26 21:35:27',297748308523483138,166,11),(2387,'2018-06-26 21:35:27',297748308523483138,166,7),(2388,'2018-06-26 21:35:28',297748308523483138,166,13),(2389,'2018-06-26 21:35:29',297748308523483138,166,12),(2390,'2018-06-26 21:35:29',424563962303086594,166,14),(2391,'2018-06-26 21:50:12',274301199841361920,167,6),(2392,'2018-06-26 21:50:12',274301199841361920,167,9),(2393,'2018-06-26 21:50:12',274301199841361920,167,7),(2394,'2018-06-26 21:50:13',274301199841361920,167,6),(2395,'2018-06-26 21:50:16',200340393596944384,167,10),(2396,'2018-06-26 21:50:16',200340393596944384,167,10),(2397,'2018-06-26 21:50:16',200340393596944384,167,6),(2398,'2018-06-26 21:50:17',200340393596944384,167,13),(2399,'2018-06-26 21:50:17',200340393596944384,167,13),(2400,'2018-06-26 21:50:29',236304169533833216,167,12),(2401,'2018-06-26 21:50:29',459834182961463299,167,10),(2402,'2018-06-26 21:50:30',236304169533833216,167,6),(2403,'2018-06-26 21:50:30',459834182961463299,167,12),(2404,'2018-06-26 21:50:30',433759248800022532,167,6),(2405,'2018-06-26 21:50:30',236304169533833216,167,12),(2406,'2018-06-26 21:50:31',433759248800022532,167,7),(2407,'2018-06-26 21:50:31',459834182961463299,167,14),(2408,'2018-06-26 21:50:31',433759248800022532,167,12),(2409,'2018-06-26 21:50:31',236304169533833216,167,11),(2410,'2018-06-26 21:50:32',433759248800022532,167,13),(2411,'2018-06-26 21:50:32',297748308523483138,167,11),(2412,'2018-06-26 21:50:32',433759248800022532,167,10),(2413,'2018-06-26 21:50:32',297748308523483138,167,11),(2414,'2018-06-26 21:51:03',457300954660995114,167,13),(2415,'2018-06-26 21:51:06',454823752925052930,167,10),(2416,'2018-06-26 21:51:06',457300954660995114,167,11),(2417,'2018-06-26 21:51:08',454823752925052930,167,13),(2418,'2018-06-26 21:51:09',454823752925052930,167,10),(2419,'2018-06-26 22:00:01',163770616581718017,168,12),(2420,'2018-06-26 22:00:05',211232684209340426,168,12),(2421,'2018-06-26 22:00:05',163770616581718017,168,12),(2422,'2018-06-26 22:00:05',211232684209340426,168,9),(2423,'2018-06-26 22:00:05',211232684209340426,168,13),(2424,'2018-06-26 22:00:06',211232684209340426,168,7),(2425,'2018-06-26 22:00:06',236304169533833216,168,12),(2426,'2018-06-26 22:00:06',211232684209340426,168,10),(2427,'2018-06-26 22:00:06',424563962303086594,168,8),(2428,'2018-06-26 22:00:06',236304169533833216,168,6),(2429,'2018-06-26 22:00:07',163770616581718017,168,13),(2430,'2018-06-26 22:00:08',424563962303086594,168,13),(2431,'2018-06-26 22:00:11',424563962303086594,168,13),(2432,'2018-06-26 22:00:11',163770616581718017,168,14),(2433,'2018-06-26 22:00:13',424563962303086594,168,7),(2434,'2018-06-26 22:00:15',163770616581718017,168,7),(2435,'2018-06-26 22:00:17',163770616581718017,168,10),(2436,'2018-06-26 22:00:18',424563962303086594,168,7),(2437,'2018-06-26 22:00:23',454823752925052930,168,12),(2438,'2018-06-26 22:00:24',454823752925052930,168,10),(2439,'2018-06-26 22:00:25',454823752925052930,168,10),(2440,'2018-06-26 22:00:26',454823752925052930,168,10),(2441,'2018-06-26 22:00:27',454823752925052930,168,14),(2442,'2018-06-26 22:00:51',457300954660995114,168,10),(2443,'2018-06-26 22:00:54',424563962303086594,168,13),(2444,'2018-06-26 22:00:54',459879057295671296,168,13),(2445,'2018-06-26 22:27:26',424563962303086594,169,7),(2446,'2018-06-26 22:27:28',424563962303086594,169,10),(2447,'2018-06-26 22:27:28',201102155896193024,169,13),(2448,'2018-06-26 22:27:29',457300954660995114,169,14),(2449,'2018-06-26 22:27:30',274301199841361920,169,10),(2450,'2018-06-26 22:27:30',201102155896193024,169,13),(2451,'2018-06-26 22:27:31',424563962303086594,169,10),(2452,'2018-06-26 22:27:31',457300954660995114,169,10),(2453,'2018-06-26 22:27:33',457300954660995114,169,13),(2454,'2018-06-26 22:27:40',457300954660995114,169,10),(2455,'2018-06-26 22:27:42',334750493085794304,169,11),(2456,'2018-06-26 22:27:43',334750493085794304,169,12),(2457,'2018-06-26 22:27:44',334750493085794304,169,7),(2458,'2018-06-26 22:27:44',334750493085794304,169,8),(2459,'2018-06-26 22:27:45',334750493085794304,169,10),(2460,'2018-06-26 22:27:45',457300954660995114,169,13),(2461,'2018-06-26 22:27:46',218498162745278474,169,10),(2462,'2018-06-26 22:27:55',163770616581718017,169,11),(2463,'2018-06-26 22:27:56',163770616581718017,169,8),(2464,'2018-06-26 22:27:58',163770616581718017,169,6),(2465,'2018-06-26 22:28:01',297748308523483138,169,8),(2466,'2018-06-26 22:28:08',218498162745278474,169,8),(2467,'2018-06-26 22:28:08',459879057295671296,169,8),(2468,'2018-06-26 22:28:09',459879057295671296,169,10),(2469,'2018-06-26 22:28:10',459879057295671296,169,10),(2470,'2018-06-26 22:28:11',459879057295671296,169,9),(2471,'2018-06-26 22:28:12',459879057295671296,169,14),(2472,'2018-06-26 22:28:24',433759248800022532,169,9),(2473,'2018-06-26 22:28:41',459876383431327746,169,6),(2474,'2018-06-26 22:28:42',459876383431327746,169,12),(2475,'2018-06-26 22:32:35',459876383431327746,170,10),(2476,'2018-06-26 22:32:36',459876383431327746,170,12),(2477,'2018-06-26 22:32:36',163770616581718017,170,7),(2478,'2018-06-26 22:32:37',459876383431327746,170,9),(2479,'2018-06-26 22:32:38',459876383431327746,170,8),(2480,'2018-06-26 22:32:39',459876383431327746,170,10),(2481,'2018-06-26 22:32:40',163770616581718017,170,7),(2482,'2018-06-26 22:32:41',457300954660995114,170,14),(2483,'2018-06-26 22:32:41',459876383431327746,170,11),(2484,'2018-06-26 22:32:42',218498162745278474,170,10),(2485,'2018-06-26 22:33:04',457300954660995114,170,8),(2486,'2018-06-26 22:33:11',457300954660995114,170,9),(2487,'2018-06-26 22:33:53',459881667104997376,170,14),(2488,'2018-06-26 22:33:55',459881667104997376,170,12),(2489,'2018-06-26 23:13:06',297748308523483138,171,9),(2490,'2018-06-26 23:13:07',297748308523483138,171,9),(2491,'2018-06-26 23:13:08',297748308523483138,171,8),(2492,'2018-06-26 23:13:09',297748308523483138,171,14),(2493,'2018-06-26 23:13:13',454823752925052930,171,8),(2494,'2018-06-26 23:13:16',454823752925052930,171,11),(2495,'2018-06-26 23:13:17',454823752925052930,171,11),(2496,'2018-06-26 23:13:18',454823752925052930,171,10),(2497,'2018-06-26 23:13:20',454823752925052930,171,8),(2498,'2018-06-26 23:42:54',297748308523483138,172,8),(2499,'2018-06-26 23:42:55',297748308523483138,172,13),(2500,'2018-06-26 23:42:55',201102155896193024,172,8),(2501,'2018-06-26 23:42:56',262771588946984963,172,8),(2502,'2018-06-26 23:42:56',201102155896193024,172,12),(2503,'2018-06-26 23:42:57',201102155896193024,172,6),(2504,'2018-06-26 23:42:57',131968711312539648,172,12),(2505,'2018-06-26 23:42:57',201102155896193024,172,9),(2506,'2018-06-26 23:42:58',262771588946984963,172,11),(2507,'2018-06-27 00:15:56',457300954660995114,173,9),(2508,'2018-06-27 00:16:00',457300954660995114,173,8),(2509,'2018-06-27 00:16:04',457300954660995114,173,12),(2510,'2018-06-27 00:16:08',457300954660995114,173,7),(2511,'2018-06-27 00:16:12',131968711312539648,173,10),(2512,'2018-06-27 00:16:14',131968711312539648,173,13),(2513,'2018-06-27 00:16:14',218498162745278474,173,11),(2514,'2018-06-27 00:16:16',131968711312539648,173,7),(2515,'2018-06-27 00:16:18',218498162745278474,173,12),(2516,'2018-06-27 00:16:26',218498162745278474,173,14),(2517,'2018-06-27 00:16:27',131968711312539648,173,11),(2518,'2018-06-27 00:16:37',457300954660995114,173,10),(2519,'2018-06-27 00:16:40',131968711312539648,173,7),(2520,'2018-06-27 00:16:44',218498162745278474,173,12),(2521,'2018-06-27 00:17:31',457300954660995114,173,13),(2522,'2018-06-27 17:53:36',200340393596944384,174,9),(2523,'2018-06-27 17:53:39',200340393596944384,174,14),(2524,'2018-06-27 17:53:41',200340393596944384,174,10),(2525,'2018-06-27 17:53:44',200340393596944384,174,6),(2526,'2018-06-27 17:53:44',262771588946984963,174,8),(2527,'2018-06-27 17:53:44',201102155896193024,174,12),(2528,'2018-06-27 17:53:45',262771588946984963,174,6),(2529,'2018-06-27 17:53:45',201102155896193024,174,8),(2530,'2018-06-27 17:53:46',262771588946984963,174,11),(2531,'2018-06-27 17:53:46',201102155896193024,174,13),(2532,'2018-06-27 17:53:46',200340393596944384,174,13),(2533,'2018-06-27 17:53:47',201102155896193024,174,10),(2534,'2018-06-27 17:53:47',262771588946984963,174,7),(2535,'2018-06-27 17:53:47',201102155896193024,174,10),(2536,'2018-06-27 17:53:51',262771588946984963,174,12),(2537,'2018-06-27 17:54:02',461290244520673280,174,11),(2538,'2018-06-27 17:54:04',461290244520673280,174,8),(2539,'2018-06-27 17:54:08',433759248800022532,174,8),(2540,'2018-06-27 17:54:09',433759248800022532,174,11),(2541,'2018-06-27 17:54:10',433759248800022532,174,9),(2542,'2018-06-27 17:54:11',433759248800022532,174,13),(2543,'2018-06-27 17:54:12',433759248800022532,174,8),(2544,'2018-06-27 17:54:16',454823752925052930,174,9),(2545,'2018-06-27 17:54:17',454823752925052930,174,7),(2546,'2018-06-27 17:54:18',454823752925052930,174,10),(2547,'2018-06-27 18:12:24',218498162745278474,175,7),(2548,'2018-06-27 18:12:29',218498162745278474,175,11),(2549,'2018-06-27 18:12:32',274301199841361920,175,9),(2550,'2018-06-27 18:12:32',218498162745278474,175,13),(2551,'2018-06-27 18:12:33',262771588946984963,175,9),(2552,'2018-06-27 18:12:33',274301199841361920,175,11),(2553,'2018-06-27 18:12:34',274301199841361920,175,11),(2554,'2018-06-27 18:12:35',262771588946984963,175,7),(2555,'2018-06-27 18:12:35',274301199841361920,175,10),(2556,'2018-06-27 18:12:36',274301199841361920,175,14),(2557,'2018-06-27 18:12:37',459873273308643328,175,7),(2558,'2018-06-27 18:12:37',262771588946984963,175,10),(2559,'2018-06-27 18:12:37',459873273308643328,175,6),(2560,'2018-06-27 18:12:38',459873273308643328,175,14),(2561,'2018-06-27 18:12:39',218498162745278474,175,9),(2562,'2018-06-27 18:12:39',262771588946984963,175,9),(2563,'2018-06-27 18:12:39',459873273308643328,175,10),(2564,'2018-06-27 18:12:41',262771588946984963,175,12),(2565,'2018-06-27 18:12:41',459873273308643328,175,10),(2566,'2018-06-27 18:12:42',459873273308643328,175,7),(2567,'2018-06-27 18:12:43',218498162745278474,175,14),(2568,'2018-06-27 18:12:43',334750493085794304,175,9),(2569,'2018-06-27 18:12:43',334750493085794304,175,6),(2570,'2018-06-27 18:12:44',334750493085794304,175,11),(2571,'2018-06-27 18:12:44',334750493085794304,175,8),(2572,'2018-06-27 18:12:45',334750493085794304,175,10),(2573,'2018-06-27 18:12:47',218498162745278474,175,12),(2574,'2018-06-27 18:12:50',274301199841361920,175,14),(2575,'2018-06-27 18:13:02',424563962303086594,175,13),(2576,'2018-06-27 18:31:10',200340393596944384,176,14),(2577,'2018-06-27 18:31:10',200340393596944384,176,6),(2578,'2018-06-27 18:31:11',200340393596944384,176,14),(2579,'2018-06-27 18:31:11',200340393596944384,176,10),(2580,'2018-06-27 18:31:12',200340393596944384,176,8),(2581,'2018-06-27 18:31:16',433759248800022532,176,8),(2582,'2018-06-27 18:31:16',424563962303086594,176,12),(2583,'2018-06-27 18:31:16',433759248800022532,176,9),(2584,'2018-06-27 18:31:17',433759248800022532,176,13),(2585,'2018-06-27 18:31:18',433759248800022532,176,10),(2586,'2018-06-27 18:31:18',433759248800022532,176,12),(2587,'2018-06-27 18:31:19',459879057295671296,176,6),(2588,'2018-06-27 18:31:20',459879057295671296,176,12),(2589,'2018-06-27 18:31:20',454823752925052930,176,6),(2590,'2018-06-27 18:31:20',454823752925052930,176,11),(2591,'2018-06-27 18:40:36',274301199841361920,177,7),(2592,'2018-06-27 18:40:41',200340393596944384,177,10),(2593,'2018-06-27 18:40:42',200340393596944384,177,10),(2594,'2018-06-27 18:40:44',424563962303086594,177,12),(2595,'2018-06-27 18:40:45',457300954660995114,177,12),(2596,'2018-06-27 18:40:49',424563962303086594,177,14),(2597,'2018-06-27 18:40:49',433759248800022532,177,8),(2598,'2018-06-27 18:40:50',433759248800022532,177,10),(2599,'2018-06-27 18:54:57',200340393596944384,178,10),(2600,'2018-06-27 18:54:57',424563962303086594,178,13),(2601,'2018-06-27 18:55:01',433759248800022532,178,7),(2602,'2018-06-27 18:55:03',424563962303086594,178,10),(2603,'2018-06-27 18:55:03',433759248800022532,178,6),(2604,'2018-06-27 18:55:04',459879057295671296,178,13),(2605,'2018-06-27 18:55:04',433759248800022532,178,10),(2606,'2018-06-27 18:55:05',459879057295671296,178,10),(2607,'2018-06-27 18:55:06',459879057295671296,178,14),(2608,'2018-06-27 18:55:07',459879057295671296,178,10),(2609,'2018-06-27 18:55:08',424563962303086594,178,7),(2610,'2018-06-27 18:55:08',454823752925052930,178,14),(2611,'2018-06-27 18:55:08',454823752925052930,178,6),(2612,'2018-06-27 18:55:09',459879057295671296,178,11),(2613,'2018-06-27 18:55:09',454823752925052930,178,10),(2614,'2018-06-27 18:55:13',424563962303086594,178,8),(2615,'2018-06-27 18:55:17',142612779377885185,178,12),(2616,'2018-06-27 18:55:20',142612779377885185,178,13),(2617,'2018-06-27 18:55:22',424563962303086594,178,11),(2618,'2018-06-27 19:05:05',459881667104997376,179,7),(2619,'2018-06-27 19:05:06',459881667104997376,179,14),(2620,'2018-06-27 19:05:07',459881667104997376,179,8),(2621,'2018-06-27 19:05:08',359521958519504926,179,6),(2622,'2018-06-27 19:05:09',359521958519504926,179,7),(2623,'2018-06-27 19:05:09',459881667104997376,179,9),(2624,'2018-06-27 19:05:09',359521958519504926,179,10),(2625,'2018-06-27 19:05:10',359521958519504926,179,7),(2626,'2018-06-27 19:05:10',459881667104997376,179,14),(2627,'2018-06-27 19:05:10',359521958519504926,179,10),(2628,'2018-06-27 19:05:22',460761978135248896,179,12),(2629,'2018-06-27 19:05:35',460761978135248896,179,6),(2630,'2018-06-27 19:05:43',460761978135248896,179,8),(2631,'2018-06-27 19:05:43',131968711312539648,179,9),(2632,'2018-06-27 19:05:46',460761978135248896,179,10),(2633,'2018-06-27 19:05:50',460761978135248896,179,9),(2634,'2018-06-27 19:06:02',131968711312539648,179,12),(2635,'2018-06-27 19:09:16',459881667104997376,180,14),(2636,'2018-06-27 19:09:17',459881667104997376,180,8),(2637,'2018-06-27 19:09:18',460761978135248896,180,10),(2638,'2018-06-27 19:09:32',454823752925052930,180,10),(2639,'2018-06-27 19:09:35',454823752925052930,180,13),(2640,'2018-06-27 19:09:36',454823752925052930,180,10),(2641,'2018-06-27 19:09:37',454823752925052930,180,8),(2642,'2018-06-27 19:09:39',454823752925052930,180,6),(2643,'2018-06-27 19:09:50',459876383431327746,180,6),(2644,'2018-06-27 19:09:51',459876383431327746,180,8),(2645,'2018-06-27 19:09:52',459876383431327746,180,13),(2646,'2018-06-27 19:09:53',459876383431327746,180,11),(2647,'2018-06-27 19:09:54',211232684209340426,180,13),(2648,'2018-06-27 19:09:55',459876383431327746,180,9),(2649,'2018-06-27 19:09:59',211232684209340426,180,12),(2650,'2018-06-27 19:09:59',211232684209340426,180,9),(2651,'2018-06-27 19:10:00',211232684209340426,180,9),(2652,'2018-06-27 19:10:00',131968711312539648,180,7),(2653,'2018-06-27 19:10:00',211232684209340426,180,10),(2654,'2018-06-27 19:10:04',131968711312539648,180,10),(2655,'2018-06-27 19:10:08',131968711312539648,180,7),(2656,'2018-06-27 19:10:13',131968711312539648,180,10),(2657,'2018-06-27 19:10:18',131968711312539648,180,7),(2658,'2018-06-27 19:10:29',460761978135248896,180,8),(2659,'2018-06-27 19:27:17',459876383431327746,181,8),(2660,'2018-06-27 19:27:20',459876383431327746,181,10),(2661,'2018-06-27 19:27:21',459876383431327746,181,12),(2662,'2018-06-27 19:27:22',131968711312539648,181,9),(2663,'2018-06-27 19:27:22',459876383431327746,181,14),(2664,'2018-06-27 19:27:23',459876383431327746,181,10),(2665,'2018-06-27 19:27:24',274301199841361920,181,6),(2666,'2018-06-27 19:27:26',274301199841361920,181,10),(2667,'2018-06-27 19:27:26',131968711312539648,181,10),(2668,'2018-06-27 19:27:27',274301199841361920,181,6),(2669,'2018-06-27 19:27:29',274301199841361920,181,10),(2670,'2018-06-27 19:27:31',274301199841361920,181,14),(2671,'2018-06-27 19:27:33',390618369545601028,181,10),(2672,'2018-06-27 19:27:34',390618369545601028,181,10),(2673,'2018-06-27 19:27:36',390618369545601028,181,11),(2674,'2018-06-27 19:27:38',390618369545601028,181,9),(2675,'2018-06-27 19:27:40',390618369545601028,181,8),(2676,'2018-06-27 19:27:49',131968711312539648,181,14),(2677,'2018-06-27 19:27:53',131968711312539648,181,10),(2678,'2018-06-27 19:28:44',459881667104997376,181,14),(2679,'2018-06-27 19:28:45',459881667104997376,181,8),(2680,'2018-06-27 19:28:46',459881667104997376,181,12),(2681,'2018-06-27 19:28:47',459881667104997376,181,12),(2682,'2018-06-27 19:28:49',459881667104997376,181,7),(2683,'2018-06-27 19:29:18',457300954660995114,181,11),(2684,'2018-06-27 19:29:21',457300954660995114,181,12),(2685,'2018-06-27 19:36:00',459881667104997376,182,13),(2686,'2018-06-27 19:36:01',459881667104997376,182,6),(2687,'2018-06-27 19:36:03',459881667104997376,182,11),(2688,'2018-06-27 19:51:24',200340393596944384,183,9),(2689,'2018-06-27 19:51:26',200340393596944384,183,10),(2690,'2018-06-27 19:51:26',262771588946984963,183,14),(2691,'2018-06-27 19:51:29',131968711312539648,183,11),(2692,'2018-06-27 19:51:31',459883167160205313,183,10),(2693,'2018-06-27 19:51:32',262771588946984963,183,8),(2694,'2018-06-27 19:51:32',459883167160205313,183,14),(2695,'2018-06-27 19:51:33',433759248800022532,183,11),(2696,'2018-06-27 19:51:33',459883167160205313,183,9),(2697,'2018-06-27 19:51:33',433759248800022532,183,7),(2698,'2018-06-27 19:51:34',433759248800022532,183,8),(2699,'2018-06-27 19:51:34',457300954660995114,183,13),(2700,'2018-06-27 19:51:35',459883167160205313,183,12),(2701,'2018-06-27 19:51:35',262771588946984963,183,8),(2702,'2018-06-27 19:51:36',459883167160205313,183,6),(2703,'2018-06-27 19:51:37',262771588946984963,183,9),(2704,'2018-06-27 19:51:39',457300954660995114,183,10),(2705,'2018-06-27 19:51:40',262771588946984963,183,9),(2706,'2018-06-27 19:51:41',454823752925052930,183,7),(2707,'2018-06-27 19:51:41',457300954660995114,183,9),(2708,'2018-06-27 19:51:41',454823752925052930,183,14),(2709,'2018-06-27 19:51:44',457300954660995114,183,8),(2710,'2018-06-27 19:52:03',163770616581718017,183,7),(2711,'2018-06-27 19:52:06',457300954660995114,183,13),(2712,'2018-06-27 19:52:12',163770616581718017,183,6),(2713,'2018-06-27 19:52:18',163770616581718017,183,11),(2714,'2018-06-27 19:52:26',163770616581718017,183,13),(2715,'2018-06-27 20:00:00',211232684209340426,184,10),(2716,'2018-06-27 20:00:02',262771588946984963,184,14),(2717,'2018-06-27 20:00:02',211232684209340426,184,11),(2718,'2018-06-27 20:00:03',262771588946984963,184,10),(2719,'2018-06-27 20:00:03',211232684209340426,184,11),(2720,'2018-06-27 20:00:05',211232684209340426,184,6),(2721,'2018-06-27 20:00:05',262771588946984963,184,13),(2722,'2018-06-27 20:00:06',433759248800022532,184,6),(2723,'2018-06-27 20:00:06',459883167160205313,184,10),(2724,'2018-06-27 20:00:07',460761978135248896,184,10),(2725,'2018-06-27 20:00:07',211232684209340426,184,13),(2726,'2018-06-27 20:00:07',262771588946984963,184,14),(2727,'2018-06-27 20:00:07',459883167160205313,184,8),(2728,'2018-06-27 20:00:09',459883167160205313,184,11),(2729,'2018-06-27 20:11:52',459883167160205313,185,9),(2730,'2018-06-27 20:11:53',274301199841361920,185,11),(2731,'2018-06-27 20:11:54',274301199841361920,185,12),(2732,'2018-06-27 20:11:54',459883167160205313,185,10),(2733,'2018-06-27 20:11:54',274301199841361920,185,13),(2734,'2018-06-27 20:11:55',274301199841361920,185,11),(2735,'2018-06-27 20:11:55',459883167160205313,185,10),(2736,'2018-06-27 20:11:55',274301199841361920,185,11),(2737,'2018-06-27 20:11:56',454823752925052930,185,12),(2738,'2018-06-27 20:11:57',454823752925052930,185,13),(2739,'2018-06-27 20:11:57',459883167160205313,185,11),(2740,'2018-06-27 20:59:06',262771588946984963,186,14),(2741,'2018-06-27 20:59:06',424563962303086594,186,11),(2742,'2018-06-27 20:59:07',262771588946984963,186,11),(2743,'2018-06-27 20:59:08',424563962303086594,186,11),(2744,'2018-06-27 20:59:09',262771588946984963,186,7),(2745,'2018-06-27 20:59:10',424563962303086594,186,9),(2746,'2018-06-27 20:59:11',460761978135248896,186,12),(2747,'2018-06-27 20:59:11',131968711312539648,186,10),(2748,'2018-06-27 20:59:12',424563962303086594,186,7),(2749,'2018-06-27 20:59:12',262771588946984963,186,7),(2750,'2018-06-27 20:59:13',424563962303086594,186,6),(2751,'2018-06-27 20:59:14',262771588946984963,186,6),(2752,'2018-06-27 20:59:14',131968711312539648,186,6),(2753,'2018-06-27 20:59:14',460761978135248896,186,8),(2754,'2018-06-27 20:59:16',131968711312539648,186,10),(2755,'2018-06-27 20:59:19',460761978135248896,186,6),(2756,'2018-06-27 21:14:40',460761978135248896,187,7),(2757,'2018-06-27 21:14:42',457300954660995114,187,6),(2758,'2018-06-27 21:14:44',424563962303086594,187,11),(2759,'2018-06-27 21:14:44',460761978135248896,187,7),(2760,'2018-06-27 21:14:46',457300954660995114,187,14),(2761,'2018-06-27 21:14:46',424563962303086594,187,6),(2762,'2018-06-27 21:14:48',460761978135248896,187,7),(2763,'2018-06-27 21:14:48',457300954660995114,187,8),(2764,'2018-06-27 21:14:48',424563962303086594,187,13),(2765,'2018-06-27 21:14:49',454823752925052930,187,10),(2766,'2018-06-27 21:14:49',459876383431327746,187,7),(2767,'2018-06-27 21:14:50',454823752925052930,187,7),(2768,'2018-06-27 21:14:50',459876383431327746,187,10),(2769,'2018-06-27 21:14:50',424563962303086594,187,8),(2770,'2018-06-27 21:14:50',460761978135248896,187,11),(2771,'2018-06-27 21:14:51',459876383431327746,187,12),(2772,'2018-06-27 21:34:12',454823752925052930,188,10),(2773,'2018-06-27 21:34:13',454823752925052930,188,7),(2774,'2018-06-27 21:34:14',454823752925052930,188,14),(2775,'2018-06-27 21:34:15',454823752925052930,188,10),(2776,'2018-06-27 21:34:15',457300954660995114,188,12),(2777,'2018-06-27 21:34:15',274301199841361920,188,6),(2778,'2018-06-27 21:34:15',163770616581718017,188,8),(2779,'2018-06-27 21:34:16',274301199841361920,188,13),(2780,'2018-06-27 21:34:17',274301199841361920,188,9),(2781,'2018-06-27 21:34:17',457300954660995114,188,9),(2782,'2018-06-27 21:34:17',274301199841361920,188,8),(2783,'2018-06-27 21:34:19',274301199841361920,188,8),(2784,'2018-06-27 21:34:20',457300954660995114,188,13),(2785,'2018-06-27 21:34:21',211232684209340426,188,10),(2786,'2018-06-27 21:34:21',163770616581718017,188,12),(2787,'2018-06-27 21:34:21',211232684209340426,188,12),(2788,'2018-06-27 21:34:22',211232684209340426,188,12),(2789,'2018-06-27 21:34:22',286105785052954626,188,10),(2790,'2018-06-27 21:34:23',286105785052954626,188,7),(2791,'2018-06-27 21:34:23',211232684209340426,188,6),(2792,'2018-06-27 21:34:24',457300954660995114,188,12),(2793,'2018-06-27 21:34:24',286105785052954626,188,11),(2794,'2018-06-27 21:34:24',211232684209340426,188,10),(2795,'2018-06-27 21:34:26',163770616581718017,188,12),(2796,'2018-06-27 21:34:28',286105785052954626,188,14),(2797,'2018-06-27 21:34:29',163770616581718017,188,10),(2798,'2018-06-27 21:34:31',457300954660995114,188,6),(2799,'2018-06-27 21:34:32',286105785052954626,188,14),(2800,'2018-06-27 22:03:59',200340393596944384,189,11),(2801,'2018-06-27 22:04:00',200340393596944384,189,10),(2802,'2018-06-27 22:04:00',424563962303086594,189,9),(2803,'2018-06-27 22:04:00',200340393596944384,189,11),(2804,'2018-06-27 22:04:00',459881667104997376,189,6),(2805,'2018-06-27 22:04:01',200340393596944384,189,12),(2806,'2018-06-27 22:04:01',459881667104997376,189,9),(2807,'2018-06-27 22:04:02',459881667104997376,189,13),(2808,'2018-06-27 22:04:02',424563962303086594,189,10),(2809,'2018-06-27 22:04:03',459881667104997376,189,8),(2810,'2018-06-27 22:04:03',218498162745278474,189,6),(2811,'2018-06-27 22:04:03',218458041790496768,189,9),(2812,'2018-06-27 22:04:03',459881667104997376,189,7),(2813,'2018-06-27 22:04:05',433759248800022532,189,8),(2814,'2018-06-27 22:04:06',433759248800022532,189,9),(2815,'2018-06-27 22:04:06',433759248800022532,189,6),(2816,'2018-06-27 22:04:06',131968711312539648,189,9),(2817,'2018-06-27 22:04:07',218458041790496768,189,13),(2818,'2018-06-27 22:04:08',218498162745278474,189,14),(2819,'2018-06-27 22:04:10',218458041790496768,189,9),(2820,'2018-06-27 22:04:11',131968711312539648,189,8),(2821,'2018-06-27 22:04:11',454823752925052930,189,7),(2822,'2018-06-27 22:04:12',457300954660995114,189,6),(2823,'2018-06-27 22:04:13',131968711312539648,189,7),(2824,'2018-06-27 22:04:16',218498162745278474,189,6),(2825,'2018-06-27 22:04:17',218458041790496768,189,10),(2826,'2018-06-27 22:04:18',218498162745278474,189,7),(2827,'2018-06-27 22:04:20',218458041790496768,189,14),(2828,'2018-06-27 22:04:22',131968711312539648,189,13),(2829,'2018-06-27 22:10:30',424563962303086594,190,10),(2830,'2018-06-27 22:10:31',459876383431327746,190,12),(2831,'2018-06-27 22:10:32',459876383431327746,190,10),(2832,'2018-06-27 22:10:32',424563962303086594,190,12),(2833,'2018-06-27 22:10:33',459876383431327746,190,9),(2834,'2018-06-27 22:10:34',459876383431327746,190,9),(2835,'2018-06-27 22:10:35',459876383431327746,190,7),(2836,'2018-06-27 22:11:02',163770616581718017,190,11),(2837,'2018-06-27 22:11:04',163770616581718017,190,10),(2838,'2018-06-27 22:11:05',163770616581718017,190,7),(2839,'2018-06-27 22:11:06',163770616581718017,190,10),(2840,'2018-06-27 22:27:26',459876383431327746,191,13),(2841,'2018-06-27 22:27:27',459876383431327746,191,13),(2842,'2018-06-27 22:27:28',459876383431327746,191,11),(2843,'2018-06-27 22:27:30',459876383431327746,191,11),(2844,'2018-06-27 22:27:34',236304169533833216,191,14),(2845,'2018-06-27 22:27:38',236304169533833216,191,13),(2846,'2018-06-27 22:27:39',236304169533833216,191,12),(2847,'2018-06-27 22:27:40',236304169533833216,191,9),(2848,'2018-06-27 22:27:41',236304169533833216,191,7),(2849,'2018-06-27 22:27:52',274301199841361920,191,13),(2850,'2018-06-27 22:28:48',185698541052755968,191,8),(2851,'2018-06-27 22:28:55',185698541052755968,191,6),(2852,'2018-06-27 22:29:09',286105785052954626,191,7),(2853,'2018-06-27 22:29:10',286105785052954626,191,7),(2854,'2018-06-27 22:29:11',286105785052954626,191,10),(2855,'2018-06-27 22:29:12',286105785052954626,191,11),(2856,'2018-06-27 22:29:14',286105785052954626,191,7),(2857,'2018-06-27 22:29:24',185698541052755968,191,10),(2858,'2018-06-27 22:29:26',457300954660995114,191,13),(2859,'2018-06-27 22:29:27',218458041790496768,191,12),(2860,'2018-06-27 22:29:28',457300954660995114,191,9),(2861,'2018-06-27 22:30:14',459876383431327746,192,10),(2862,'2018-06-27 22:30:18',236304169533833216,192,14),(2863,'2018-06-27 22:30:54',185698541052755968,192,11),(2864,'2018-06-27 22:31:02',185698541052755968,192,13),(2865,'2018-06-27 22:31:08',185698541052755968,192,9),(2866,'2018-06-27 22:31:19',429615167492325376,192,13),(2867,'2018-06-27 22:31:27',429615167492325376,192,13),(2868,'2018-06-27 22:31:29',218458041790496768,192,12),(2869,'2018-06-27 22:31:31',457300954660995114,192,9),(2870,'2018-06-27 22:41:38',200340393596944384,193,11),(2871,'2018-06-27 22:41:41',459876383431327746,193,13),(2872,'2018-06-27 22:41:41',286105785052954626,193,10),(2873,'2018-06-27 22:41:42',459876383431327746,193,8),(2874,'2018-06-27 22:41:42',286105785052954626,193,12),(2875,'2018-06-27 22:41:44',459876383431327746,193,8),(2876,'2018-06-27 22:41:47',433759248800022532,193,6),(2877,'2018-06-27 22:41:53',457300954660995114,193,9),(2878,'2018-06-27 22:42:07',274301199841361920,193,10),(2879,'2018-06-27 22:42:19',218458041790496768,193,13),(2880,'2018-06-27 22:42:23',457300954660995114,193,13),(2881,'2018-06-28 00:24:03',200340393596944384,193,7),(2882,'2018-06-28 00:24:07',200340393596944384,193,9),(2883,'2018-06-28 00:24:09',200340393596944384,193,7),(2884,'2018-06-28 00:24:10',200340393596944384,193,9),(2885,'2018-06-28 00:24:11',200340393596944384,193,10),(2886,'2018-06-28 00:24:14',433759248800022532,193,12),(2887,'2018-06-28 00:24:15',433759248800022532,193,10),(2888,'2018-06-28 00:24:16',433759248800022532,193,6),(2889,'2018-06-28 00:24:17',433759248800022532,193,11),(2890,'2018-06-28 00:24:18',433759248800022532,193,10),(2891,'2018-06-28 00:24:21',454823752925052930,193,12),(2892,'2018-06-28 00:24:22',454823752925052930,193,13),(2893,'2018-06-28 00:24:22',454823752925052930,193,10),(2894,'2018-06-28 00:24:23',454823752925052930,193,8),(2895,'2018-06-28 00:24:23',459876383431327746,193,14),(2896,'2018-06-28 00:24:24',454823752925052930,193,14),(2897,'2018-06-28 00:25:02',200340393596944384,194,9),(2898,'2018-06-28 00:25:09',286105785052954626,194,11),(2899,'2018-06-28 00:25:09',454823752925052930,194,8),(2900,'2018-06-28 00:25:09',457300954660995114,194,10),(2901,'2018-06-28 00:25:10',286105785052954626,194,14),(2902,'2018-06-28 00:25:11',433759248800022532,194,6),(2903,'2018-06-28 00:25:11',286105785052954626,194,13),(2904,'2018-06-28 00:25:12',457300954660995114,194,13),(2905,'2018-06-28 00:25:14',286105785052954626,194,11),(2906,'2018-06-28 00:25:21',457300954660995114,194,11),(2907,'2018-06-28 00:25:48',457300954660995114,194,13),(2908,'2018-06-28 00:28:39',218498162745278474,194,10),(2909,'2018-06-28 00:28:42',218498162745278474,194,11),(2910,'2018-06-28 00:28:45',218498162745278474,194,13),(2911,'2018-06-28 00:28:58',218498162745278474,194,10),(2912,'2018-06-28 00:31:24',131968711312539648,194,10),(2913,'2018-06-28 00:31:28',131968711312539648,194,14),(2914,'2018-06-28 00:31:43',131968711312539648,194,12),(2915,'2018-06-28 00:31:52',131968711312539648,194,11),(2916,'2018-06-28 00:32:28',200340393596944384,194,6),(2917,'2018-06-28 00:33:50',163770616581718017,194,7),(2918,'2018-06-28 00:33:55',163770616581718017,194,6),(2919,'2018-06-28 00:33:58',163770616581718017,194,10),(2920,'2018-06-28 00:34:27',163770616581718017,194,12),(2921,'2018-06-28 01:14:35',286105785052954626,195,12),(2922,'2018-06-28 01:27:39',163770616581718017,195,10),(2923,'2018-06-28 01:29:44',163770616581718017,195,6),(2924,'2018-06-28 01:29:51',200340393596944384,195,10),(2925,'2018-06-28 01:29:58',163770616581718017,195,14),(2926,'2018-06-28 01:30:03',163770616581718017,195,13),(2927,'2018-06-28 01:30:04',200340393596944384,195,8),(2928,'2018-06-28 01:30:08',163770616581718017,195,6),(2929,'2018-06-28 01:30:08',200340393596944384,195,9),(2930,'2018-06-28 01:30:09',218498162745278474,195,8),(2931,'2018-06-28 01:30:13',163770616581718017,195,14),(2932,'2018-06-28 01:30:14',457300954660995114,195,10),(2933,'2018-06-28 01:30:15',218498162745278474,195,10),(2934,'2018-06-28 01:30:17',457300954660995114,195,11),(2935,'2018-06-28 01:42:29',286105785052954626,196,7),(2936,'2018-06-28 01:42:33',286105785052954626,196,10),(2937,'2018-06-28 01:42:45',286105785052954626,196,10),(2938,'2018-06-28 01:49:00',200340393596944384,196,7),(2939,'2018-06-28 01:49:10',433759248800022532,196,13),(2940,'2018-06-28 01:49:14',433759248800022532,196,14),(2941,'2018-06-28 01:49:16',433759248800022532,196,10),(2942,'2018-06-28 01:49:18',433759248800022532,196,10),(2943,'2018-06-28 01:49:21',457300954660995114,196,14),(2944,'2018-06-28 01:49:24',457300954660995114,196,10),(2945,'2018-06-28 01:49:29',457300954660995114,196,12),(2946,'2018-06-28 01:49:30',454823752925052930,196,9),(2947,'2018-06-28 01:49:31',454823752925052930,196,7),(2948,'2018-06-28 01:49:32',454823752925052930,196,12),(2949,'2018-06-28 01:49:33',454823752925052930,196,12),(2950,'2018-06-28 01:51:20',218498162745278474,196,8),(2951,'2018-06-28 01:51:22',218498162745278474,196,12),(2952,'2018-06-28 01:51:24',218498162745278474,196,14),(2953,'2018-06-28 01:51:27',218498162745278474,196,8),(2954,'2018-06-28 01:55:20',286105785052954626,197,7),(2955,'2018-06-28 01:55:39',286105785052954626,197,10),(2956,'2018-06-28 02:23:32',200340393596944384,197,12),(2957,'2018-06-28 02:23:34',200340393596944384,197,13),(2958,'2018-06-28 02:23:45',433759248800022532,197,12),(2959,'2018-06-28 02:23:52',218498162745278474,197,6),(2960,'2018-06-28 02:23:54',218498162745278474,197,11),(2961,'2018-06-28 02:23:56',454823752925052930,197,10),(2962,'2018-06-28 02:23:56',218498162745278474,197,11),(2963,'2018-06-28 02:23:57',454823752925052930,197,9),(2964,'2018-06-28 02:27:34',459876383431327746,197,10),(2965,'2018-06-28 02:27:35',459876383431327746,197,14),(2966,'2018-06-28 02:27:37',459876383431327746,197,10),(2967,'2018-06-28 02:27:38',459876383431327746,197,12),(2968,'2018-06-28 02:27:39',459876383431327746,197,10),(2969,'2018-06-28 02:33:26',163770616581718017,197,10),(2970,'2018-06-28 02:33:29',163770616581718017,197,12),(2971,'2018-06-28 02:33:31',163770616581718017,197,9),(2972,'2018-06-28 02:33:35',163770616581718017,197,6),(2973,'2018-06-28 02:36:44',433759248800022532,197,12),(2974,'2018-06-28 02:36:51',454823752925052930,197,8),(2975,'2018-06-28 02:37:01',218498162745278474,197,10),(2976,'2018-06-28 02:37:05',218498162745278474,197,11),(2977,'2018-06-28 02:37:43',163770616581718017,197,10),(2978,'2018-06-28 02:37:47',163770616581718017,197,12),(2979,'2018-06-28 02:38:23',163770616581718017,197,10),(2980,'2018-06-28 02:38:28',163770616581718017,197,10),(2981,'2018-06-28 02:38:52',457300954660995114,197,10),(2982,'2018-06-28 02:55:08',185698541052755968,198,11),(2983,'2018-06-28 02:55:11',185698541052755968,198,6),(2984,'2018-06-28 02:55:15',185698541052755968,198,13),(2985,'2018-06-28 02:55:19',185698541052755968,198,13),(2986,'2018-06-28 02:55:23',185698541052755968,198,9),(2987,'2018-06-28 02:56:26',200340393596944384,198,11),(2988,'2018-06-28 02:57:02',185698541052755968,198,10),(2989,'2018-06-28 02:57:11',457300954660995114,198,14),(2990,'2018-06-28 02:57:14',460761978135248896,198,6),(2991,'2018-06-28 02:57:17',460761978135248896,198,8),(2992,'2018-06-28 02:57:17',457300954660995114,198,11),(2993,'2018-06-28 02:57:20',460761978135248896,198,6),(2994,'2018-06-28 02:57:22',457300954660995114,198,6),(2995,'2018-06-28 02:57:25',460761978135248896,198,6),(2996,'2018-06-28 03:12:18',460761978135248896,199,9),(2997,'2018-06-28 03:12:37',460761978135248896,199,14),(2998,'2018-06-28 03:12:41',460761978135248896,199,10),(2999,'2018-06-28 03:12:45',460761978135248896,199,7),(3000,'2018-06-28 03:12:49',460761978135248896,199,11),(3001,'2018-06-28 03:12:53',457300954660995114,199,11),(3002,'2018-06-28 03:12:57',457300954660995114,199,7),(3003,'2018-06-28 03:13:25',460761978135248896,199,14),(3004,'2018-06-28 03:19:29',185698541052755968,199,10),(3005,'2018-06-28 03:19:29',185698541052755968,199,14),(3006,'2018-06-28 03:19:30',185698541052755968,199,10),(3007,'2018-06-28 03:19:30',185698541052755968,199,9),(3008,'2018-06-28 03:19:30',185698541052755968,199,10),(3009,'2018-06-28 03:21:08',218498162745278474,199,7),(3010,'2018-06-28 03:22:06',460761978135248896,199,13),(3011,'2018-06-28 03:30:31',459876383431327746,200,9),(3012,'2018-06-28 03:30:32',459876383431327746,200,10),(3013,'2018-06-28 03:30:33',459876383431327746,200,14),(3014,'2018-06-28 03:30:35',459876383431327746,200,14),(3015,'2018-06-28 03:30:37',459876383431327746,200,10),(3016,'2018-06-28 03:31:05',200340393596944384,200,7),(3017,'2018-06-28 03:31:06',200340393596944384,200,6),(3018,'2018-06-28 03:31:07',200340393596944384,200,8),(3019,'2018-06-28 03:31:18',433759248800022532,200,6),(3020,'2018-06-28 03:31:19',433759248800022532,200,7),(3021,'2018-06-28 03:58:38',200340393596944384,201,11),(3022,'2018-06-28 03:58:53',433759248800022532,201,10),(3023,'2018-06-28 03:58:55',433759248800022532,201,14),(3024,'2018-06-28 03:58:56',433759248800022532,201,11),(3025,'2018-06-28 03:59:00',460761978135248896,201,9),(3026,'2018-06-28 03:59:00',433759248800022532,201,12),(3027,'2018-06-28 03:59:01',433759248800022532,201,10),(3028,'2018-06-28 03:59:03',218498162745278474,201,7),(3029,'2018-06-28 03:59:04',460761978135248896,201,14),(3030,'2018-06-28 03:59:05',218498162745278474,201,6),(3031,'2018-06-28 03:59:07',218498162745278474,201,7),(3032,'2018-06-28 03:59:10',454823752925052930,201,6),(3033,'2018-06-28 03:59:11',454823752925052930,201,8),(3034,'2018-06-28 03:59:12',454823752925052930,201,10),(3035,'2018-06-28 03:59:13',454823752925052930,201,7),(3036,'2018-06-28 03:59:14',460761978135248896,201,6),(3037,'2018-06-28 03:59:16',454823752925052930,201,10),(3038,'2018-06-28 03:59:22',460761978135248896,201,11),(3039,'2018-06-28 03:59:28',460761978135248896,201,6),(3040,'2018-06-28 04:00:25',457300954660995114,201,6),(3041,'2018-06-28 04:00:29',457300954660995114,201,13),(3042,'2018-06-28 04:00:54',388505302292627456,201,12),(3043,'2018-06-28 04:23:28',459883167160205313,202,10),(3044,'2018-06-28 04:23:29',459883167160205313,202,14),(3045,'2018-06-28 04:23:31',459883167160205313,202,8),(3046,'2018-06-28 04:23:32',459883167160205313,202,14),(3047,'2018-06-28 04:23:33',459883167160205313,202,12),(3048,'2018-06-28 04:23:51',429615167492325376,202,10),(3049,'2018-06-28 04:23:57',429615167492325376,202,10),(3050,'2018-06-28 04:24:03',429615167492325376,202,9),(3051,'2018-06-28 04:24:10',429615167492325376,202,11),(3052,'2018-06-28 04:33:28',429615167492325376,203,8),(3053,'2018-06-28 04:33:35',429615167492325376,203,6),(3054,'2018-06-28 04:33:42',429615167492325376,203,13),(3055,'2018-06-28 04:33:48',459883167160205313,203,13),(3056,'2018-06-28 04:33:50',459883167160205313,203,14),(3057,'2018-06-28 04:33:51',459883167160205313,203,9),(3058,'2018-06-28 04:33:53',459883167160205313,203,8),(3059,'2018-06-28 04:33:55',459883167160205313,203,10),(3060,'2018-06-28 04:33:56',429615167492325376,203,8),(3061,'2018-06-28 04:34:08',429615167492325376,203,12),(3062,'2018-06-28 04:35:46',460761978135248896,203,7),(3063,'2018-06-28 04:35:53',460761978135248896,203,10),(3064,'2018-06-28 04:37:03',429615167492325376,203,10),(3065,'2018-06-28 04:38:22',459883167160205313,203,11),(3066,'2018-06-28 04:38:25',459883167160205313,203,6),(3067,'2018-06-28 04:38:41',429615167492325376,203,10),(3068,'2018-06-28 04:38:48',200340393596944384,203,10),(3069,'2018-06-28 04:38:49',200340393596944384,203,11),(3070,'2018-06-28 04:38:51',200340393596944384,203,6),(3071,'2018-06-28 04:39:12',433759248800022532,203,10),(3072,'2018-06-28 04:39:20',454823752925052930,203,6),(3073,'2018-06-28 04:39:20',454823752925052930,203,10),(3074,'2018-06-28 04:40:38',429615167492325376,203,10),(3075,'2018-06-28 04:40:53',459883167160205313,203,6),(3076,'2018-06-28 04:42:37',429615167492325376,203,8),(3077,'2018-06-28 04:43:10',204933415252787202,203,7),(3078,'2018-06-28 04:43:14',204933415252787202,203,10),(3079,'2018-06-28 04:43:18',204933415252787202,203,8),(3080,'2018-06-28 04:43:22',204933415252787202,203,12),(3081,'2018-06-28 04:43:26',204933415252787202,203,12),(3082,'2018-06-28 04:43:29',460761978135248896,203,8),(3083,'2018-06-28 05:27:03',460761978135248896,204,14),(3084,'2018-06-28 05:27:06',460761978135248896,204,10),(3085,'2018-06-28 05:27:10',460761978135248896,204,7),(3086,'2018-06-28 05:27:11',457300954660995114,204,10),(3087,'2018-06-28 05:27:14',460761978135248896,204,13),(3088,'2018-06-28 05:27:15',457300954660995114,204,6),(3089,'2018-06-28 05:27:19',460761978135248896,204,12),(3090,'2018-06-28 05:27:20',457300954660995114,204,6),(3091,'2018-06-28 05:27:42',457300954660995114,204,10),(3092,'2018-06-28 05:28:55',460761978135248896,204,14),(3093,'2018-06-28 05:30:43',200340393596944384,204,13),(3094,'2018-06-28 06:14:10',200340393596944384,205,13),(3095,'2018-06-28 06:14:10',200340393596944384,205,14),(3096,'2018-06-28 06:14:11',200340393596944384,205,12),(3097,'2018-06-28 06:14:11',200340393596944384,205,11),(3098,'2018-06-28 06:14:12',200340393596944384,205,14),(3099,'2018-06-28 06:14:18',460761978135248896,205,10),(3100,'2018-06-28 06:14:21',433759248800022532,205,9),(3101,'2018-06-28 06:14:21',433759248800022532,205,11),(3102,'2018-06-28 06:14:22',433759248800022532,205,14),(3103,'2018-06-28 06:21:48',429615167492325376,206,7),(3104,'2018-06-28 06:21:57',429615167492325376,206,11),(3105,'2018-06-28 06:22:02',429615167492325376,206,6),(3106,'2018-06-28 06:22:18',429615167492325376,206,12),(3107,'2018-06-28 06:23:13',429615167492325376,206,13),(3108,'2018-06-28 06:23:31',429615167492325376,206,10),(3109,'2018-06-28 06:29:39',204933415252787202,206,13),(3110,'2018-06-28 06:29:44',204933415252787202,206,9),(3111,'2018-06-28 06:29:52',204933415252787202,206,10),(3112,'2018-06-28 06:29:59',204933415252787202,206,7),(3113,'2018-06-28 06:30:04',204933415252787202,206,10),(3114,'2018-06-28 06:32:39',429615167492325376,206,13),(3115,'2018-06-28 06:37:47',204933415252787202,206,6),(3116,'2018-06-28 06:38:02',204933415252787202,206,13),(3117,'2018-06-28 06:38:12',204933415252787202,206,10),(3118,'2018-06-28 06:39:21',204933415252787202,206,9),(3119,'2018-06-28 06:43:44',200340393596944384,206,10),(3120,'2018-06-28 06:43:45',200340393596944384,206,9),(3121,'2018-06-28 06:44:02',433759248800022532,206,6),(3122,'2018-06-28 06:44:04',433759248800022532,206,10),(3123,'2018-06-28 06:44:06',433759248800022532,206,8),(3124,'2018-06-28 06:44:07',433759248800022532,206,10),(3125,'2018-06-28 06:44:08',433759248800022532,206,10),(3126,'2018-06-28 06:44:17',454823752925052930,206,7),(3127,'2018-06-28 06:44:17',454823752925052930,206,10),(3128,'2018-06-28 06:44:18',454823752925052930,206,14),(3129,'2018-06-28 06:44:20',454823752925052930,206,12),(3130,'2018-06-28 06:44:20',454823752925052930,206,8),(3131,'2018-06-28 06:45:57',200340393596944384,206,10),(3132,'2018-06-28 06:47:57',460761978135248896,206,8),(3133,'2018-06-28 06:50:31',454823752925052930,207,9),(3134,'2018-06-28 06:50:33',454823752925052930,207,14),(3135,'2018-06-28 06:50:39',429615167492325376,207,9),(3136,'2018-06-28 06:50:42',454823752925052930,207,6),(3137,'2018-06-28 06:50:48',429615167492325376,207,7),(3138,'2018-06-28 06:50:53',454823752925052930,207,14),(3139,'2018-06-28 06:51:03',429615167492325376,207,9),(3140,'2018-06-28 06:51:23',433759248800022532,207,10),(3141,'2018-06-28 06:51:33',433759248800022532,207,11),(3142,'2018-06-28 06:51:38',429615167492325376,207,10),(3143,'2018-06-28 06:51:48',429615167492325376,207,13),(3144,'2018-06-28 06:53:32',429615167492325376,207,10),(3145,'2018-06-28 07:12:20',148942504077557760,208,9),(3146,'2018-06-28 07:12:22',148942504077557760,208,12),(3147,'2018-06-28 07:12:24',148942504077557760,208,14),(3148,'2018-06-28 07:12:25',148942504077557760,208,11),(3149,'2018-06-28 07:12:26',148942504077557760,208,10),(3150,'2018-06-28 07:15:07',148942504077557760,208,9),(3151,'2018-06-28 07:19:26',148942504077557760,208,10),(3152,'2018-06-28 07:19:28',148942504077557760,208,12),(3153,'2018-06-28 07:19:35',148942504077557760,208,9),(3154,'2018-06-28 07:23:25',461792445668261888,208,8),(3155,'2018-06-28 07:24:26',461792445668261888,208,10),(3156,'2018-06-28 07:24:30',461792445668261888,208,10),(3157,'2018-06-28 07:29:51',148942504077557760,208,9),(3158,'2018-06-28 07:29:52',148942504077557760,208,14),(3159,'2018-06-28 07:29:54',148942504077557760,208,10),(3160,'2018-06-28 07:29:56',148942504077557760,208,7),(3161,'2018-06-28 07:30:03',148942504077557760,208,9),(3162,'2018-06-28 07:34:09',148942504077557760,208,11),(3163,'2018-06-28 07:34:58',148942504077557760,208,9),(3164,'2018-06-28 07:35:00',148942504077557760,208,6),(3165,'2018-06-28 07:37:35',148942504077557760,208,13),(3166,'2018-06-28 07:40:55',148942504077557760,208,11),(3167,'2018-06-28 07:41:29',148942504077557760,208,8),(3168,'2018-06-28 07:48:54',148942504077557760,208,10),(3169,'2018-06-28 07:48:55',148942504077557760,208,12),(3170,'2018-06-28 07:48:56',148942504077557760,208,10),(3171,'2018-06-28 07:48:57',148942504077557760,208,6),(3172,'2018-06-28 08:14:40',131968711312539648,209,8),(3173,'2018-06-28 08:14:42',131968711312539648,209,10),(3174,'2018-06-28 08:14:43',131968711312539648,209,12),(3175,'2018-06-28 08:14:44',131968711312539648,209,8),(3176,'2018-06-28 08:14:46',131968711312539648,209,13),(3177,'2018-06-28 08:15:13',457300954660995114,209,10),(3178,'2018-06-28 08:15:17',457300954660995114,209,11),(3179,'2018-06-28 08:15:22',457300954660995114,209,14),(3180,'2018-06-28 08:15:26',457300954660995114,209,10),(3181,'2018-06-28 08:33:35',460761978135248896,210,10),(3182,'2018-06-28 08:33:39',460761978135248896,210,14),(3183,'2018-06-28 08:33:42',460761978135248896,210,8),(3184,'2018-06-28 08:33:47',131968711312539648,210,6),(3185,'2018-06-28 08:33:47',460761978135248896,210,10),(3186,'2018-06-28 08:33:50',185698541052755968,210,10),(3187,'2018-06-28 08:33:50',131968711312539648,210,12),(3188,'2018-06-28 08:33:50',460761978135248896,210,12),(3189,'2018-06-28 08:33:50',185698541052755968,210,7),(3190,'2018-06-28 08:33:51',185698541052755968,210,6),(3191,'2018-06-28 08:55:04',274301199841361920,211,11),(3192,'2018-06-28 08:55:05',274301199841361920,211,12),(3193,'2018-06-28 08:55:05',274301199841361920,211,11),(3194,'2018-06-28 08:55:06',274301199841361920,211,10),(3195,'2018-06-28 08:55:07',274301199841361920,211,13),(3196,'2018-06-28 08:55:26',460761978135248896,211,7),(3197,'2018-06-28 08:55:37',457300954660995114,211,13),(3198,'2018-06-28 08:55:40',457300954660995114,211,14),(3199,'2018-06-28 08:55:41',460761978135248896,211,14),(3200,'2018-06-28 08:55:43',457300954660995114,211,6),(3201,'2018-06-28 08:55:47',457300954660995114,211,11),(3202,'2018-06-28 08:55:51',334750493085794304,211,10),(3203,'2018-06-28 08:55:53',460761978135248896,211,10),(3204,'2018-06-28 08:55:56',334750493085794304,211,11),(3205,'2018-06-28 08:55:56',334750493085794304,211,14),(3206,'2018-06-28 08:55:57',334750493085794304,211,10),(3207,'2018-06-28 08:58:43',334750493085794304,211,8),(3208,'2018-06-28 08:59:22',274301199841361920,211,12),(3209,'2018-06-28 09:03:32',424563962303086594,211,13),(3210,'2018-06-28 09:03:38',424563962303086594,211,10),(3211,'2018-06-28 09:25:10',274301199841361920,212,10),(3212,'2018-06-28 09:29:06',424563962303086594,212,11),(3213,'2018-06-28 09:29:16',424563962303086594,212,10),(3214,'2018-06-28 09:29:24',424563962303086594,212,9),(3215,'2018-06-28 09:29:32',424563962303086594,212,10),(3216,'2018-06-28 09:29:53',424563962303086594,212,13),(3217,'2018-06-28 09:31:01',424563962303086594,212,7),(3218,'2018-06-28 09:44:25',262771588946984963,212,7),(3219,'2018-06-28 09:44:28',262771588946984963,212,14),(3220,'2018-06-28 09:44:30',262771588946984963,212,7),(3221,'2018-06-28 09:44:32',262771588946984963,212,8),(3222,'2018-06-28 09:44:35',262771588946984963,212,11),(3223,'2018-06-28 09:46:18',457300954660995114,212,10),(3224,'2018-06-28 09:47:01',262771588946984963,212,9),(3225,'2018-06-28 09:48:40',262771588946984963,212,14),(3226,'2018-06-28 09:49:38',460761978135248896,212,10),(3227,'2018-06-28 09:50:43',274301199841361920,213,7),(3228,'2018-06-28 09:50:59',262771588946984963,213,12),(3229,'2018-06-28 09:51:53',211232684209340426,213,11),(3230,'2018-06-28 09:51:56',211232684209340426,213,6),(3231,'2018-06-28 09:51:58',211232684209340426,213,6),(3232,'2018-06-28 09:51:59',211232684209340426,213,6),(3233,'2018-06-28 09:52:01',211232684209340426,213,9),(3234,'2018-06-28 09:52:40',262771588946984963,213,14),(3235,'2018-06-28 09:54:40',262771588946984963,213,6),(3236,'2018-06-28 09:56:42',262771588946984963,213,11),(3237,'2018-06-28 09:58:40',262771588946984963,213,14),(3238,'2018-06-28 10:00:41',262771588946984963,213,10),(3239,'2018-06-28 10:02:40',262771588946984963,213,7),(3240,'2018-06-28 10:02:40',131968711312539648,213,11),(3241,'2018-06-28 10:02:45',131968711312539648,213,6),(3242,'2018-06-28 10:02:48',131968711312539648,213,14),(3243,'2018-06-28 10:13:13',262771588946984963,214,14),(3244,'2018-06-28 10:13:17',262771588946984963,214,10),(3245,'2018-06-28 10:15:01',274301199841361920,214,7),(3246,'2018-06-28 10:15:03',274301199841361920,214,11),(3247,'2018-06-28 10:15:05',274301199841361920,214,6),(3248,'2018-06-28 10:16:14',131968711312539648,214,10),(3249,'2018-06-28 10:16:16',131968711312539648,214,8),(3250,'2018-06-28 10:16:19',131968711312539648,214,14),(3251,'2018-06-28 10:16:21',131968711312539648,214,12),(3252,'2018-06-28 10:16:23',131968711312539648,214,10),(3253,'2018-06-28 10:16:43',262771588946984963,214,12),(3254,'2018-06-28 10:16:47',457300954660995114,214,12),(3255,'2018-06-28 10:17:16',131968711312539648,214,7),(3256,'2018-06-28 10:18:47',131968711312539648,214,10),(3257,'2018-06-28 10:21:01',274301199841361920,214,8),(3258,'2018-06-28 10:40:29',185698541052755968,215,10),(3259,'2018-06-28 10:40:31',185698541052755968,215,10),(3260,'2018-06-28 10:40:33',185698541052755968,215,13),(3261,'2018-06-28 10:40:36',185698541052755968,215,10),(3262,'2018-06-28 10:40:40',185698541052755968,215,13),(3263,'2018-06-28 10:40:43',185698541052755968,215,14),(3264,'2018-06-28 10:43:19',274301199841361920,215,10),(3265,'2018-06-28 10:45:41',424563962303086594,215,14),(3266,'2018-06-28 10:45:49',424563962303086594,215,11),(3267,'2018-06-28 10:46:06',424563962303086594,215,13),(3268,'2018-06-28 11:12:41',204933415252787202,215,11),(3269,'2018-06-28 11:12:44',204933415252787202,215,12),(3270,'2018-06-28 11:12:48',204933415252787202,215,14),(3271,'2018-06-28 11:13:09',204933415252787202,215,12),(3272,'2018-06-28 11:13:13',204933415252787202,215,6),(3273,'2018-06-28 11:20:14',424563962303086594,215,8),(3274,'2018-06-28 11:22:38',274301199841361920,215,9),(3275,'2018-06-28 11:22:43',274301199841361920,215,9),(3276,'2018-06-28 11:29:34',262771588946984963,215,11),(3277,'2018-06-28 11:29:36',262771588946984963,215,10),(3278,'2018-06-28 11:33:20',142612779377885185,215,12),(3279,'2018-06-28 11:33:24',142612779377885185,215,12),(3280,'2018-06-28 11:33:26',142612779377885185,215,6),(3281,'2018-06-28 11:33:28',142612779377885185,215,13),(3282,'2018-06-28 11:41:12',142612779377885185,216,11),(3283,'2018-06-28 11:44:04',148942504077557760,216,11),(3284,'2018-06-28 11:59:35',204933415252787202,216,11),(3285,'2018-06-28 11:59:59',204933415252787202,216,8),(3286,'2018-06-28 12:00:01',204933415252787202,216,11),(3287,'2018-06-28 12:00:01',142612779377885185,216,9),(3288,'2018-06-28 12:00:02',204933415252787202,216,14),(3289,'2018-06-28 12:00:04',204933415252787202,216,10),(3290,'2018-06-28 12:00:14',142612779377885185,216,6),(3291,'2018-06-28 12:00:17',142612779377885185,216,10),(3292,'2018-06-28 12:00:19',142612779377885185,216,10),(3293,'2018-06-28 12:00:22',142612779377885185,216,11),(3294,'2018-06-28 12:02:56',274301199841361920,216,6),(3295,'2018-06-28 12:03:00',274301199841361920,216,13),(3296,'2018-06-28 12:32:15',274301199841361920,217,9),(3297,'2018-06-28 12:32:16',274301199841361920,217,9),(3298,'2018-06-28 12:32:17',274301199841361920,217,8),(3299,'2018-06-28 12:32:18',274301199841361920,217,10),(3300,'2018-06-28 12:32:19',274301199841361920,217,13),(3301,'2018-06-28 12:33:45',148942504077557760,217,13),(3302,'2018-06-28 12:34:49',148942504077557760,217,14),(3303,'2018-06-28 12:35:04',148942504077557760,217,10),(3304,'2018-06-28 12:35:09',204933415252787202,217,14),(3305,'2018-06-28 12:35:11',204933415252787202,217,7),(3306,'2018-06-28 12:35:11',286105785052954626,217,6),(3307,'2018-06-28 12:35:14',204933415252787202,217,8),(3308,'2018-06-28 12:35:14',286105785052954626,217,12),(3309,'2018-06-28 12:35:17',204933415252787202,217,9),(3310,'2018-06-28 12:46:03',185698541052755968,218,7),(3311,'2018-06-28 12:46:05',185698541052755968,218,10),(3312,'2018-06-28 12:46:07',185698541052755968,218,9),(3313,'2018-06-28 12:46:10',185698541052755968,218,9),(3314,'2018-06-28 12:46:12',185698541052755968,218,11),(3315,'2018-06-28 12:46:44',204933415252787202,218,7),(3316,'2018-06-28 12:46:47',204933415252787202,218,13),(3317,'2018-06-28 12:46:54',204933415252787202,218,9),(3318,'2018-06-28 12:47:07',204933415252787202,218,10),(3319,'2018-06-28 12:47:19',204933415252787202,218,6),(3320,'2018-06-28 12:49:16',274301199841361920,218,14),(3321,'2018-06-28 12:49:24',185698541052755968,218,14),(3322,'2018-06-28 12:49:26',185698541052755968,218,10),(3323,'2018-06-28 12:57:04',142612779377885185,219,7),(3324,'2018-06-28 12:57:07',142612779377885185,219,12),(3325,'2018-06-28 12:57:09',142612779377885185,219,7),(3326,'2018-06-28 12:57:13',142612779377885185,219,6),(3327,'2018-06-28 12:57:15',142612779377885185,219,7),(3328,'2018-06-28 13:00:37',204933415252787202,219,6),(3329,'2018-06-28 13:00:40',204933415252787202,219,9),(3330,'2018-06-28 13:01:01',142612779377885185,219,9),(3331,'2018-06-28 13:01:04',142612779377885185,219,9),(3332,'2018-06-28 13:05:40',286105785052954626,219,13),(3333,'2018-06-28 13:05:41',286105785052954626,219,12),(3334,'2018-06-28 13:05:42',286105785052954626,219,8),(3335,'2018-06-28 13:05:43',286105785052954626,219,12),(3336,'2018-06-28 13:05:44',286105785052954626,219,14),(3337,'2018-06-28 13:06:16',274301199841361920,219,7),(3338,'2018-06-28 13:06:18',274301199841361920,219,13),(3339,'2018-06-28 13:08:44',286105785052954626,219,10),(3340,'2018-06-28 13:08:57',286105785052954626,219,8),(3341,'2018-06-28 13:15:15',185698541052755968,219,14),(3342,'2018-06-28 13:15:17',185698541052755968,219,7),(3343,'2018-06-28 13:15:19',185698541052755968,219,11),(3344,'2018-06-28 13:15:22',185698541052755968,219,14),(3345,'2018-06-28 13:15:24',185698541052755968,219,14),(3346,'2018-06-28 13:16:40',424563962303086594,219,14),(3347,'2018-06-28 13:16:46',424563962303086594,219,10),(3348,'2018-06-28 13:56:19',201102155896193024,220,10),(3349,'2018-06-28 13:56:20',201102155896193024,220,13),(3350,'2018-06-28 13:56:21',201102155896193024,220,13),(3351,'2018-06-28 13:56:22',201102155896193024,220,13),(3352,'2018-06-28 13:56:23',201102155896193024,220,11),(3353,'2018-06-28 13:57:57',262771588946984963,220,11),(3354,'2018-06-28 13:58:01',262771588946984963,220,6),(3355,'2018-06-28 13:58:01',459873273308643328,220,6),(3356,'2018-06-28 13:58:02',262771588946984963,220,9),(3357,'2018-06-28 13:58:03',459873273308643328,220,10),(3358,'2018-06-28 13:58:03',142612779377885185,220,7),(3359,'2018-06-28 13:58:04',142612779377885185,220,13),(3360,'2018-06-28 13:58:04',459873273308643328,220,6),(3361,'2018-06-28 13:58:05',142612779377885185,220,10),(3362,'2018-06-28 13:58:05',459873273308643328,220,14),(3363,'2018-06-28 13:58:05',262771588946984963,220,7),(3364,'2018-06-28 13:58:07',459873273308643328,220,7),(3365,'2018-06-28 13:58:07',262771588946984963,220,10),(3366,'2018-06-28 13:59:59',201102155896193024,220,13),(3367,'2018-06-28 14:00:02',201102155896193024,220,10),(3368,'2018-06-28 14:01:06',459873273308643328,220,11),(3369,'2018-06-28 14:01:16',459873273308643328,220,6),(3370,'2018-06-28 14:02:20',262771588946984963,220,10),(3371,'2018-06-28 14:02:32',262771588946984963,220,7),(3372,'2018-06-28 14:02:40',459873273308643328,220,13),(3373,'2018-06-28 14:02:48',262771588946984963,220,12),(3374,'2018-06-28 14:16:42',201102155896193024,221,13),(3375,'2018-06-28 14:16:58',459879057295671296,221,11),(3376,'2018-06-28 14:17:02',459879057295671296,221,10),(3377,'2018-06-28 14:17:04',459879057295671296,221,10),(3378,'2018-06-28 14:17:06',459879057295671296,221,6),(3379,'2018-06-28 14:17:08',459879057295671296,221,9),(3380,'2018-06-28 14:17:18',265907268942299136,221,7),(3381,'2018-06-28 14:18:18',274301199841361920,221,9),(3382,'2018-06-28 14:18:22',274301199841361920,221,13),(3383,'2018-06-28 14:18:26',274301199841361920,221,6),(3384,'2018-06-28 14:18:29',274301199841361920,221,12),(3385,'2018-06-28 14:18:33',274301199841361920,221,12),(3386,'2018-06-28 14:19:20',274301199841361920,221,12),(3387,'2018-06-28 14:19:47',459879057295671296,221,10),(3388,'2018-06-28 15:07:36',236304169533833216,222,8),(3389,'2018-06-28 15:07:37',236304169533833216,222,6),(3390,'2018-06-28 15:07:38',201102155896193024,222,12),(3391,'2018-06-28 15:07:38',236304169533833216,222,9),(3392,'2018-06-28 15:07:38',274301199841361920,222,14),(3393,'2018-06-28 15:07:39',201102155896193024,222,12),(3394,'2018-06-28 15:07:39',236304169533833216,222,11),(3395,'2018-06-28 15:07:39',236304169533833216,222,9),(3396,'2018-06-28 15:07:41',274301199841361920,222,6),(3397,'2018-06-28 15:07:42',142612779377885185,222,12),(3398,'2018-06-28 15:07:45',142612779377885185,222,6),(3399,'2018-06-28 15:07:45',433759248800022532,222,9),(3400,'2018-06-28 15:07:45',433759248800022532,222,10),(3401,'2018-06-28 15:07:46',459876383431327746,222,8),(3402,'2018-06-28 15:37:29',200340393596944384,223,10),(3403,'2018-06-28 15:37:30',200340393596944384,223,11),(3404,'2018-06-28 15:37:30',201102155896193024,223,10),(3405,'2018-06-28 15:37:32',200340393596944384,223,10),(3406,'2018-06-28 15:37:32',201102155896193024,223,8),(3407,'2018-06-28 15:37:33',200340393596944384,223,8),(3408,'2018-06-28 15:37:34',329153903557869569,223,8),(3409,'2018-06-28 15:37:34',200340393596944384,223,7),(3410,'2018-06-28 15:37:35',236304169533833216,223,6),(3411,'2018-06-28 15:37:35',236304169533833216,223,9),(3412,'2018-06-28 15:37:36',236304169533833216,223,8),(3413,'2018-06-28 15:37:36',236304169533833216,223,10),(3414,'2018-06-28 15:46:49',459881667104997376,224,8),(3415,'2018-06-28 15:46:50',459881667104997376,224,14),(3416,'2018-06-28 15:46:51',459881667104997376,224,8),(3417,'2018-06-28 15:46:52',459881667104997376,224,13),(3418,'2018-06-28 15:46:52',236304169533833216,224,7),(3419,'2018-06-28 15:46:53',459881667104997376,224,10),(3420,'2018-06-28 15:47:03',459879057295671296,224,12),(3421,'2018-06-28 15:47:04',459879057295671296,224,8),(3422,'2018-06-28 15:47:05',459879057295671296,224,12),(3423,'2018-06-28 15:47:07',459879057295671296,224,10),(3424,'2018-06-28 15:47:08',459879057295671296,224,9),(3425,'2018-06-28 15:47:13',443150342725566484,224,13),(3426,'2018-06-28 15:47:16',443150342725566484,224,10),(3427,'2018-06-28 15:47:18',443150342725566484,224,10),(3428,'2018-06-28 15:47:20',443150342725566484,224,9),(3429,'2018-06-28 15:47:21',201102155896193024,224,11),(3430,'2018-06-28 15:47:23',443150342725566484,224,8),(3431,'2018-06-28 15:47:38',274301199841361920,224,10),(3432,'2018-06-28 15:48:05',142612779377885185,224,12),(3433,'2018-06-28 15:48:12',142612779377885185,224,8),(3434,'2018-06-28 15:48:16',142612779377885185,224,6),(3435,'2018-06-28 15:48:37',454823752925052930,224,14),(3436,'2018-06-28 15:48:39',454823752925052930,224,10),(3437,'2018-06-28 15:48:40',454823752925052930,224,14),(3438,'2018-06-28 15:48:40',454823752925052930,224,14),(3439,'2018-06-28 15:48:41',454823752925052930,224,7),(3440,'2018-06-28 15:48:42',142612779377885185,224,11),(3441,'2018-06-28 16:10:22',459876383431327746,225,14),(3442,'2018-06-28 16:10:22',236304169533833216,225,7),(3443,'2018-06-28 16:10:23',459876383431327746,225,7),(3444,'2018-06-28 16:10:24',459876383431327746,225,8),(3445,'2018-06-28 16:10:25',459876383431327746,225,11),(3446,'2018-06-28 16:10:26',459876383431327746,225,9),(3447,'2018-06-28 16:10:30',459881667104997376,225,11),(3448,'2018-06-28 16:10:31',459881667104997376,225,11),(3449,'2018-06-28 16:10:32',262771588946984963,225,10),(3450,'2018-06-28 16:10:32',459881667104997376,225,11),(3451,'2018-06-28 16:10:33',274301199841361920,225,9),(3452,'2018-06-28 16:10:33',459881667104997376,225,14),(3453,'2018-06-28 16:23:58',262771588946984963,226,9),(3454,'2018-06-28 16:24:00',262771588946984963,226,9),(3455,'2018-06-28 16:24:00',201102155896193024,226,14),(3456,'2018-06-28 16:24:01',236304169533833216,226,14),(3457,'2018-06-28 16:24:04',262771588946984963,226,9),(3458,'2018-06-28 16:24:07',459876383431327746,226,7),(3459,'2018-06-28 16:24:12',459876383431327746,226,10),(3460,'2018-06-28 16:24:15',459876383431327746,226,6),(3461,'2018-06-28 16:24:16',459876383431327746,226,14),(3462,'2018-06-28 16:24:23',443150342725566484,226,10),(3463,'2018-06-28 16:24:25',443150342725566484,226,12),(3464,'2018-06-28 16:24:26',459881667104997376,226,14),(3465,'2018-06-28 16:24:27',443150342725566484,226,12),(3466,'2018-06-28 16:24:28',459881667104997376,226,10),(3467,'2018-06-28 16:24:30',443150342725566484,226,13),(3468,'2018-06-28 16:24:35',443150342725566484,226,10),(3469,'2018-06-28 16:24:39',443150342725566484,226,14),(3470,'2018-06-28 16:25:20',429615167492325376,226,10),(3471,'2018-06-28 16:25:27',429615167492325376,226,10),(3472,'2018-06-28 16:25:32',429615167492325376,226,9),(3473,'2018-06-28 16:51:18',236304169533833216,227,7),(3474,'2018-06-28 16:51:19',201102155896193024,227,10),(3475,'2018-06-28 16:51:21',454823752925052930,227,10),(3476,'2018-06-28 16:51:22',454823752925052930,227,6),(3477,'2018-06-28 16:51:23',454823752925052930,227,8),(3478,'2018-06-28 16:51:23',454823752925052930,227,9),(3479,'2018-06-28 16:51:24',454823752925052930,227,6),(3480,'2018-06-28 16:51:31',459881667104997376,227,12),(3481,'2018-06-28 16:51:32',433759248800022532,227,12),(3482,'2018-06-28 16:51:33',433759248800022532,227,13),(3483,'2018-06-28 16:51:33',433759248800022532,227,7),(3484,'2018-06-28 16:51:35',433759248800022532,227,11),(3485,'2018-06-28 16:51:36',433759248800022532,227,14),(3486,'2018-06-28 16:51:38',459879057295671296,227,14),(3487,'2018-06-28 16:51:39',459879057295671296,227,12),(3488,'2018-06-28 16:51:41',459879057295671296,227,10),(3489,'2018-06-28 16:51:41',443150342725566484,227,6),(3490,'2018-06-28 16:51:42',459879057295671296,227,12),(3491,'2018-06-28 17:05:00',424563962303086594,228,7),(3492,'2018-06-28 17:05:02',454823752925052930,228,9),(3493,'2018-06-28 17:05:03',459879057295671296,228,10),(3494,'2018-06-28 17:05:04',459879057295671296,228,12),(3495,'2018-06-28 17:05:05',424563962303086594,228,8),(3496,'2018-06-28 17:05:06',433759248800022532,228,9),(3497,'2018-06-28 17:05:08',433759248800022532,228,8),(3498,'2018-06-28 17:05:10',424563962303086594,228,14),(3499,'2018-06-28 17:05:11',443150342725566484,228,11),(3500,'2018-06-28 17:05:15',424563962303086594,228,10),(3501,'2018-06-28 17:05:18',459876383431327746,228,14),(3502,'2018-06-28 17:05:20',459876383431327746,228,7),(3503,'2018-06-28 17:05:21',459876383431327746,228,9),(3504,'2018-06-28 17:05:22',424563962303086594,228,6),(3505,'2018-06-28 17:05:27',200340393596944384,228,11),(3506,'2018-06-28 17:05:28',200340393596944384,228,11),(3507,'2018-06-28 17:05:29',200340393596944384,228,14),(3508,'2018-06-28 17:05:30',200340393596944384,228,13),(3509,'2018-06-28 17:05:41',218498162745278474,228,10),(3510,'2018-06-28 17:05:45',218498162745278474,228,10),(3511,'2018-06-28 17:05:49',218498162745278474,228,10),(3512,'2018-06-28 17:05:54',218498162745278474,228,7),(3513,'2018-06-28 17:05:59',218498162745278474,228,8),(3514,'2018-06-28 17:07:38',459881667104997376,228,6),(3515,'2018-06-28 17:07:40',459881667104997376,228,13),(3516,'2018-06-28 17:13:26',236304169533833216,229,9),(3517,'2018-06-28 17:13:38',201102155896193024,229,6),(3518,'2018-06-28 17:14:03',274301199841361920,229,13),(3519,'2018-06-28 17:14:04',274301199841361920,229,8),(3520,'2018-06-28 17:14:05',274301199841361920,229,6),(3521,'2018-06-28 17:15:35',142612779377885185,229,10),(3522,'2018-06-28 17:15:38',142612779377885185,229,7),(3523,'2018-06-28 17:15:50',142612779377885185,229,9),(3524,'2018-06-28 17:15:53',142612779377885185,229,10),(3525,'2018-06-28 17:15:56',142612779377885185,229,9),(3526,'2018-06-28 18:39:05',433759248800022532,229,7),(3527,'2018-06-28 18:39:09',433759248800022532,229,13),(3528,'2018-06-28 18:39:10',433759248800022532,229,12),(3529,'2018-06-28 18:39:11',433759248800022532,229,10),(3530,'2018-06-28 18:39:11',142612779377885185,229,11),(3531,'2018-06-28 18:39:12',433759248800022532,229,9),(3532,'2018-06-28 18:39:14',142612779377885185,229,11),(3533,'2018-06-28 18:39:15',274301199841361920,229,6),(3534,'2018-06-28 18:39:15',201102155896193024,229,12),(3535,'2018-06-28 18:39:16',274301199841361920,229,9),(3536,'2018-06-28 18:39:16',201102155896193024,229,10),(3537,'2018-06-28 18:39:17',274301199841361920,229,10),(3538,'2018-06-28 18:39:17',142612779377885185,229,11),(3539,'2018-06-28 18:39:17',201102155896193024,229,12),(3540,'2018-06-28 18:39:18',201102155896193024,229,7),(3541,'2018-06-28 18:39:18',274301199841361920,229,6),(3542,'2018-06-28 18:39:19',274301199841361920,229,14),(3543,'2018-06-28 18:39:19',142612779377885185,229,12),(3544,'2018-06-28 19:20:19',200340393596944384,230,8),(3545,'2018-06-28 19:20:19',200340393596944384,230,10),(3546,'2018-06-28 19:20:20',459879057295671296,230,8),(3547,'2018-06-28 19:20:20',200340393596944384,230,11),(3548,'2018-06-28 19:20:21',459879057295671296,230,6),(3549,'2018-06-28 19:20:21',200340393596944384,230,9),(3550,'2018-06-28 19:20:21',459879057295671296,230,10),(3551,'2018-06-28 19:20:22',200340393596944384,230,9),(3552,'2018-06-28 19:20:22',459879057295671296,230,7),(3553,'2018-06-28 19:20:23',459879057295671296,230,8),(3554,'2018-06-28 19:20:24',131968711312539648,230,14),(3555,'2018-06-28 19:20:24',433759248800022532,230,6),(3556,'2018-06-28 19:20:24',283395529449406464,230,9),(3557,'2018-06-28 19:20:25',433759248800022532,230,8),(3558,'2018-06-28 19:20:25',131968711312539648,230,13),(3559,'2018-06-28 19:20:27',283395529449406464,230,9),(3560,'2018-06-28 19:20:28',131968711312539648,230,12),(3561,'2018-06-28 19:20:28',457300954660995114,230,13),(3562,'2018-06-28 19:20:29',131968711312539648,230,13),(3563,'2018-06-28 19:20:29',454823752925052930,230,8),(3564,'2018-06-28 19:20:30',201102155896193024,230,6),(3565,'2018-06-28 19:20:30',454823752925052930,230,8),(3566,'2018-06-28 19:20:30',454823752925052930,230,8),(3567,'2018-06-28 19:20:31',201102155896193024,230,6),(3568,'2018-06-28 19:20:31',454823752925052930,230,14),(3569,'2018-06-28 19:20:31',131968711312539648,230,9),(3570,'2018-06-28 19:20:32',454823752925052930,230,14),(3571,'2018-06-28 19:20:32',283395529449406464,230,9),(3572,'2018-06-28 19:20:32',457300954660995114,230,13),(3573,'2018-06-28 19:55:01',131968711312539648,231,14),(3574,'2018-06-28 19:55:02',283395529449406464,231,10),(3575,'2018-06-28 19:55:02',131968711312539648,231,11),(3576,'2018-06-28 19:55:03',283395529449406464,231,11),(3577,'2018-06-28 19:55:03',200340393596944384,231,10),(3578,'2018-06-28 19:55:03',283395529449406464,231,8),(3579,'2018-06-28 19:55:04',131968711312539648,231,9),(3580,'2018-06-28 19:55:04',200340393596944384,231,11),(3581,'2018-06-28 19:55:04',283395529449406464,231,12),(3582,'2018-06-28 19:55:04',200340393596944384,231,13),(3583,'2018-06-28 19:55:05',283395529449406464,231,10),(3584,'2018-06-28 19:55:05',200340393596944384,231,13),(3585,'2018-06-28 19:55:05',200340393596944384,231,8),(3586,'2018-06-28 19:55:05',131968711312539648,231,6),(3587,'2018-06-28 19:55:06',457300954660995114,231,9),(3588,'2018-06-28 19:55:06',131968711312539648,231,10),(3589,'2018-06-28 19:55:07',433759248800022532,231,10),(3590,'2018-06-28 19:55:08',457300954660995114,231,6),(3591,'2018-06-28 19:55:11',457300954660995114,231,8),(3592,'2018-06-28 19:55:13',390618369545601028,231,9),(3593,'2018-06-28 19:55:13',457300954660995114,231,8),(3594,'2018-06-28 19:55:13',454823752925052930,231,13),(3595,'2018-06-28 19:55:14',454823752925052930,231,7),(3596,'2018-06-28 19:55:15',390618369545601028,231,14),(3597,'2018-06-28 20:09:05',124512152466882560,232,11),(3598,'2018-06-28 20:09:06',459881667104997376,232,14),(3599,'2018-06-28 20:09:07',459881667104997376,232,12),(3600,'2018-06-28 20:09:08',459881667104997376,232,6),(3601,'2018-06-28 20:09:09',124512152466882560,232,9),(3602,'2018-06-28 20:09:10',459881667104997376,232,7),(3603,'2018-06-28 20:09:10',390618369545601028,232,10),(3604,'2018-06-28 20:09:11',459881667104997376,232,8),(3605,'2018-06-28 20:09:11',124512152466882560,232,10),(3606,'2018-06-28 20:09:12',124512152466882560,232,8),(3607,'2018-06-28 20:09:12',390618369545601028,232,10),(3608,'2018-06-28 20:09:13',200340393596944384,232,14),(3609,'2018-06-28 20:09:13',200340393596944384,232,7),(3610,'2018-06-28 20:09:13',200340393596944384,232,7),(3611,'2018-06-28 20:09:14',274301199841361920,232,8),(3612,'2018-06-28 20:09:14',286105785052954626,232,10),(3613,'2018-06-28 20:09:15',124512152466882560,232,9),(3614,'2018-06-28 20:09:15',286105785052954626,232,7),(3615,'2018-06-28 20:09:15',390618369545601028,232,10),(3616,'2018-06-28 20:09:16',286105785052954626,232,9),(3617,'2018-06-28 20:09:16',201102155896193024,232,9),(3618,'2018-06-28 20:09:16',274301199841361920,232,10),(3619,'2018-06-28 20:20:00',283395529449406464,233,7),(3620,'2018-06-28 20:20:00',424563962303086594,233,6),(3621,'2018-06-28 20:20:01',457300954660995114,233,10),(3622,'2018-06-28 20:20:03',424563962303086594,233,7),(3623,'2018-06-28 20:20:04',424563962303086594,233,10),(3624,'2018-06-28 20:20:05',142612779377885185,233,10),(3625,'2018-06-28 20:20:06',286105785052954626,233,13),(3626,'2018-06-28 20:20:06',201102155896193024,233,8),(3627,'2018-06-28 20:20:07',286105785052954626,233,12),(3628,'2018-06-28 20:20:07',201102155896193024,233,8),(3629,'2018-06-28 20:20:08',424563962303086594,233,9),(3630,'2018-06-28 20:20:08',390618369545601028,233,10),(3631,'2018-06-28 20:32:53',286105785052954626,234,8),(3632,'2018-06-28 20:32:54',286105785052954626,234,6),(3633,'2018-06-28 20:32:54',142612779377885185,234,7),(3634,'2018-06-28 20:32:55',286105785052954626,234,9),(3635,'2018-06-28 20:32:55',286105785052954626,234,12),(3636,'2018-06-28 20:32:56',286105785052954626,234,10),(3637,'2018-06-28 20:32:58',142612779377885185,234,12),(3638,'2018-06-28 20:33:02',459881667104997376,234,10),(3639,'2018-06-28 20:33:03',236304169533833216,234,13),(3640,'2018-06-28 20:33:03',459881667104997376,234,10),(3641,'2018-06-28 20:39:14',201102155896193024,235,6),(3642,'2018-06-28 20:39:15',286105785052954626,235,6),(3643,'2018-06-28 20:39:15',201102155896193024,235,13),(3644,'2018-06-28 20:39:16',286105785052954626,235,13),(3645,'2018-06-28 20:39:17',429615167492325376,235,6),(3646,'2018-06-28 20:39:18',457300954660995114,235,6),(3647,'2018-06-28 20:39:21',459876383431327746,235,10),(3648,'2018-06-28 20:39:21',459876383431327746,235,8),(3649,'2018-06-28 20:39:22',459876383431327746,235,8),(3650,'2018-06-28 20:39:22',459876383431327746,235,8),(3651,'2018-06-28 20:39:22',459876383431327746,235,7),(3652,'2018-06-28 20:39:23',429615167492325376,235,13),(3653,'2018-06-28 20:39:24',236304169533833216,235,7),(3654,'2018-06-28 20:39:24',236304169533833216,235,12),(3655,'2018-06-28 20:39:25',236304169533833216,235,13),(3656,'2018-06-28 20:39:25',236304169533833216,235,10),(3657,'2018-06-28 20:39:26',459881667104997376,235,7),(3658,'2018-06-28 20:39:27',325565391478718464,235,10),(3659,'2018-06-28 20:39:28',236304169533833216,235,12),(3660,'2018-06-28 20:39:28',459881667104997376,235,7),(3661,'2018-06-28 20:39:28',459881667104997376,235,13),(3662,'2018-06-28 20:39:29',459881667104997376,235,11),(3663,'2018-06-28 20:39:30',325565391478718464,235,10),(3664,'2018-06-28 20:39:33',325565391478718464,235,6),(3665,'2018-06-28 20:39:33',429615167492325376,235,9),(3666,'2018-06-28 20:39:39',325565391478718464,235,9),(3667,'2018-06-28 20:39:40',429615167492325376,235,11),(3668,'2018-06-28 20:39:41',325565391478718464,235,11),(3669,'2018-06-28 20:52:27',274301199841361920,236,13),(3670,'2018-06-28 20:52:28',274301199841361920,236,10),(3671,'2018-06-28 20:52:28',274301199841361920,236,13),(3672,'2018-06-28 20:52:28',131968711312539648,236,13),(3673,'2018-06-28 20:52:28',200340393596944384,236,11),(3674,'2018-06-28 20:52:29',325565391478718464,236,10),(3675,'2018-06-28 20:52:29',274301199841361920,236,11),(3676,'2018-06-28 20:52:29',124512152466882560,236,9),(3677,'2018-06-28 20:52:29',325565391478718464,236,8),(3678,'2018-06-28 20:52:29',200340393596944384,236,10),(3679,'2018-06-28 20:52:29',424563962303086594,236,14),(3680,'2018-06-28 21:11:25',283671323639676929,237,9),(3681,'2018-06-28 21:11:26',459881667104997376,237,6),(3682,'2018-06-28 21:11:27',459881667104997376,237,9),(3683,'2018-06-28 21:11:28',459881667104997376,237,11),(3684,'2018-06-28 21:11:29',459881667104997376,237,11),(3685,'2018-06-28 21:11:29',459881667104997376,237,14),(3686,'2018-06-28 21:11:30',283671323639676929,237,8),(3687,'2018-06-28 21:11:36',201102155896193024,237,11),(3688,'2018-06-28 21:11:37',201102155896193024,237,12),(3689,'2018-06-28 21:11:40',283671323639676929,237,11),(3690,'2018-06-28 21:11:49',283671323639676929,237,11),(3691,'2018-06-28 21:12:07',283671323639676929,237,11),(3692,'2018-06-28 21:12:08',424563962303086594,237,10),(3693,'2018-06-28 21:12:16',424563962303086594,237,10),(3694,'2018-06-28 21:12:16',124512152466882560,237,10),(3695,'2018-06-28 21:12:18',124512152466882560,237,13),(3696,'2018-06-28 21:12:20',424563962303086594,237,12),(3697,'2018-06-28 21:12:21',124512152466882560,237,8),(3698,'2018-06-28 21:12:23',424563962303086594,237,8),(3699,'2018-06-28 21:12:25',124512152466882560,237,14),(3700,'2018-06-28 21:12:26',424563962303086594,237,10),(3701,'2018-06-28 21:12:28',457300954660995114,237,12),(3702,'2018-06-28 21:12:43',124512152466882560,237,14),(3703,'2018-06-28 21:34:27',262771588946984963,238,9),(3704,'2018-06-28 21:34:29',262771588946984963,238,12),(3705,'2018-06-28 21:34:30',262771588946984963,238,7),(3706,'2018-06-28 21:34:31',262771588946984963,238,9),(3707,'2018-06-28 21:34:33',262771588946984963,238,12),(3708,'2018-06-28 21:34:47',262771588946984963,238,14),(3709,'2018-06-28 21:35:10',454823752925052930,238,10),(3710,'2018-06-28 21:35:10',454823752925052930,238,9),(3711,'2018-06-28 21:35:11',454823752925052930,238,6),(3712,'2018-06-28 21:35:12',454823752925052930,238,13),(3713,'2018-06-28 21:35:12',454823752925052930,238,13),(3714,'2018-06-28 21:35:18',433759248800022532,238,10),(3715,'2018-06-28 21:35:19',433759248800022532,238,7),(3716,'2018-06-28 21:35:20',433759248800022532,238,9),(3717,'2018-06-28 21:35:20',433759248800022532,238,10),(3718,'2018-06-28 21:35:21',433759248800022532,238,14),(3719,'2018-06-28 21:35:28',200340393596944384,238,6),(3720,'2018-06-28 21:35:28',200340393596944384,238,14),(3721,'2018-06-28 21:35:29',200340393596944384,238,10),(3722,'2018-06-28 21:35:30',200340393596944384,238,8),(3723,'2018-06-28 21:35:31',200340393596944384,238,10),(3724,'2018-06-28 21:36:19',218498162745278474,238,11),(3725,'2018-06-28 21:36:21',218498162745278474,238,11),(3726,'2018-06-28 21:36:22',218498162745278474,238,11),(3727,'2018-06-28 21:36:23',218498162745278474,238,14),(3728,'2018-06-28 21:36:25',218498162745278474,238,13),(3729,'2018-06-28 22:07:40',201102155896193024,239,10),(3730,'2018-06-28 22:07:41',424563962303086594,239,6),(3731,'2018-06-28 22:07:41',201102155896193024,239,10),(3732,'2018-06-28 22:07:42',201102155896193024,239,13),(3733,'2018-06-28 22:07:42',201102155896193024,239,10),(3734,'2018-06-28 22:07:43',201102155896193024,239,10),(3735,'2018-06-28 22:07:43',424563962303086594,239,11),(3736,'2018-06-28 22:07:45',424563962303086594,239,14),(3737,'2018-06-28 22:19:08',424563962303086594,240,11),(3738,'2018-06-28 22:19:10',286105785052954626,240,7),(3739,'2018-06-28 22:19:10',201102155896193024,240,10),(3740,'2018-06-28 22:19:10',286105785052954626,240,12),(3741,'2018-06-28 22:19:11',424563962303086594,240,10),(3742,'2018-06-28 22:19:11',286105785052954626,240,12),(3743,'2018-06-28 22:19:12',286105785052954626,240,12),(3744,'2018-06-28 22:19:13',459876383431327746,240,9),(3745,'2018-06-28 22:19:14',459876383431327746,240,10),(3746,'2018-06-28 22:19:14',200340393596944384,240,6),(3747,'2018-06-28 22:19:14',459876383431327746,240,6),(3748,'2018-06-28 22:19:15',459876383431327746,240,14),(3749,'2018-06-28 22:19:15',286105785052954626,240,11),(3750,'2018-06-28 22:19:16',459876383431327746,240,13),(3751,'2018-06-28 22:19:18',459881667104997376,240,8),(3752,'2018-06-28 22:19:18',459881667104997376,240,7),(3753,'2018-06-28 22:19:19',459881667104997376,240,6),(3754,'2018-06-28 22:19:23',459879057295671296,240,14),(3755,'2018-06-28 22:19:24',459879057295671296,240,13),(3756,'2018-06-28 22:19:25',459879057295671296,240,11),(3757,'2018-06-28 22:19:26',459879057295671296,240,7),(3758,'2018-06-28 22:19:26',459879057295671296,240,7),(3759,'2018-06-28 22:19:31',218498162745278474,240,10),(3760,'2018-06-28 22:19:34',424563962303086594,240,9),(3761,'2018-06-28 22:19:39',218498162745278474,240,11),(3762,'2018-06-28 22:19:41',424563962303086594,240,12),(3763,'2018-06-28 22:19:43',218498162745278474,240,9),(3764,'2018-06-28 22:19:45',424563962303086594,240,9),(3765,'2018-06-28 23:21:44',163770616581718017,241,0),(3766,'2018-06-28 23:25:08',163770616581718017,241,6),(3767,'2018-06-28 23:25:42',163770616581718017,241,13),(3768,'2018-06-28 23:25:46',163770616581718017,241,6),(3769,'2018-06-28 23:25:48',163770616581718017,241,10),(3770,'2018-06-28 23:25:55',163770616581718017,241,8),(3771,'2018-06-28 23:26:21',283395529449406464,241,12),(3772,'2018-06-28 23:26:29',283395529449406464,241,9),(3773,'2018-06-28 23:26:33',283395529449406464,241,10),(3774,'2018-06-28 23:26:37',283395529449406464,241,9),(3775,'2018-06-28 23:26:42',283395529449406464,241,10),(3776,'2018-06-28 23:27:03',433759248800022532,241,14),(3777,'2018-06-28 23:27:06',433759248800022532,241,14),(3778,'2018-06-28 23:27:08',433759248800022532,241,7),(3779,'2018-06-28 23:27:10',433759248800022532,241,10),(3780,'2018-06-28 23:27:11',433759248800022532,241,12),(3781,'2018-06-28 23:27:19',438094660712267778,241,8),(3782,'2018-06-28 23:27:19',218498162745278474,241,6),(3783,'2018-06-28 23:27:20',218498162745278474,241,11),(3784,'2018-06-28 23:27:26',218498162745278474,241,11),(3785,'2018-06-28 23:27:40',438094660712267778,241,9),(3786,'2018-06-28 23:27:44',424563962303086594,241,10),(3787,'2018-06-28 23:27:48',424563962303086594,241,6),(3788,'2018-06-28 23:27:49',438094660712267778,241,7),(3789,'2018-06-28 23:27:52',424563962303086594,241,9),(3790,'2018-06-28 23:27:52',454823752925052930,241,12),(3791,'2018-06-28 23:27:54',454823752925052930,241,9),(3792,'2018-06-28 23:27:55',438094660712267778,241,6),(3793,'2018-06-28 23:27:56',424563962303086594,241,12),(3794,'2018-06-28 23:27:57',454823752925052930,241,9),(3795,'2018-06-28 23:27:58',454823752925052930,241,10),(3796,'2018-06-28 23:28:06',438094660712267778,241,14),(3797,'2018-06-28 23:28:06',424563962303086594,241,10),(3798,'2018-06-28 23:28:06',454823752925052930,241,6),(3799,'2018-06-28 23:28:17',460761978135248896,241,10),(3800,'2018-06-28 23:28:24',460761978135248896,241,11),(3801,'2018-06-28 23:28:29',460761978135248896,241,6),(3802,'2018-06-28 23:28:33',460761978135248896,241,12),(3803,'2018-06-28 23:28:36',460761978135248896,241,10),(3804,'2018-06-28 23:28:41',457300954660995114,241,6),(3805,'2018-06-28 23:28:41',460761978135248896,241,10),(3806,'2018-06-28 23:28:43',283395529449406464,241,12),(3807,'2018-06-28 23:28:51',457300954660995114,241,8),(3808,'2018-06-28 23:28:55',457300954660995114,241,10),(3809,'2018-06-28 23:28:57',438094660712267778,241,6),(3810,'2018-06-28 23:28:59',457300954660995114,241,6),(3811,'2018-06-28 23:29:19',163770616581718017,241,10),(3812,'2018-06-29 00:15:36',433759248800022532,242,11),(3813,'2018-06-29 00:15:39',457300954660995114,242,10),(3814,'2018-06-29 00:15:41',433759248800022532,242,6),(3815,'2018-06-29 00:15:43',433759248800022532,242,12),(3816,'2018-06-29 00:15:44',460761978135248896,242,12),(3817,'2018-06-29 00:15:45',433759248800022532,242,9),(3818,'2018-06-29 00:15:47',286105785052954626,242,10),(3819,'2018-06-29 00:15:51',460761978135248896,242,10),(3820,'2018-06-29 00:15:51',433759248800022532,242,7),(3821,'2018-06-29 00:15:52',286105785052954626,242,8),(3822,'2018-06-29 00:15:53',286105785052954626,242,8),(3823,'2018-06-29 00:15:58',218498162745278474,242,10),(3824,'2018-06-29 00:16:01',457300954660995114,242,13),(3825,'2018-06-29 00:16:02',218498162745278474,242,10),(3826,'2018-06-29 00:16:03',286105785052954626,242,10),(3827,'2018-06-29 00:16:05',286105785052954626,242,6),(3828,'2018-06-29 00:16:05',218498162745278474,242,13),(3829,'2018-06-29 00:16:06',457300954660995114,242,7),(3830,'2018-06-29 00:16:09',454823752925052930,242,13),(3831,'2018-06-29 00:16:11',454823752925052930,242,7),(3832,'2018-06-29 00:16:12',454823752925052930,242,8),(3833,'2018-06-29 00:16:13',454823752925052930,242,8),(3834,'2018-06-29 00:16:15',454823752925052930,242,6),(3835,'2018-06-29 00:16:29',457300954660995114,242,8),(3836,'2018-06-29 00:16:33',457300954660995114,242,10),(3837,'2018-06-29 00:16:41',200340393596944384,242,9),(3838,'2018-06-29 00:43:52',283395529449406464,243,9),(3839,'2018-06-29 00:43:59',131968711312539648,243,14),(3840,'2018-06-29 00:44:01',131968711312539648,243,11),(3841,'2018-06-29 00:44:02',457300954660995114,243,10),(3842,'2018-06-29 00:44:02',131968711312539648,243,11),(3843,'2018-06-29 00:44:04',131968711312539648,243,10),(3844,'2018-06-29 00:44:06',131968711312539648,243,10),(3845,'2018-06-29 00:44:07',457300954660995114,243,12),(3846,'2018-06-29 00:44:13',457300954660995114,243,12),(3847,'2018-06-29 00:44:27',283395529449406464,243,14),(3848,'2018-06-29 00:44:40',460761978135248896,243,13),(3849,'2018-06-29 00:44:56',460761978135248896,243,13),(3850,'2018-06-29 00:45:20',200340393596944384,243,10),(3851,'2018-06-29 00:45:25',131968711312539648,243,8),(3852,'2018-06-29 00:45:26',148942504077557760,243,13),(3853,'2018-06-29 00:45:28',200340393596944384,243,7),(3854,'2018-06-29 00:45:31',124137587773276160,243,8),(3855,'2018-06-29 00:45:33',200340393596944384,243,10),(3856,'2018-06-29 00:45:42',218498162745278474,243,11),(3857,'2018-06-29 00:45:43',124137587773276160,243,8),(3858,'2018-06-29 00:45:45',200340393596944384,243,8),(3859,'2018-06-29 00:46:08',283395529449406464,243,14),(3860,'2018-06-29 00:46:13',124137587773276160,243,12),(3861,'2018-06-29 00:46:27',220272827327053824,243,10),(3862,'2018-06-29 00:46:27',124137587773276160,243,13),(3863,'2018-06-29 00:46:30',283395529449406464,243,10),(3864,'2018-06-29 00:46:34',124137587773276160,243,12),(3865,'2018-06-29 00:47:00',131968711312539648,243,10),(3866,'2018-06-29 00:47:06',283395529449406464,243,13),(3867,'2018-06-29 00:47:07',283395529449406464,243,8),(3868,'2018-06-29 00:47:09',124137587773276160,243,11),(3869,'2018-06-29 00:59:40',438094660712267778,244,6),(3870,'2018-06-29 00:59:46',438094660712267778,244,7),(3871,'2018-06-29 00:59:51',438094660712267778,244,6),(3872,'2018-06-29 01:00:01',148942504077557760,244,12),(3873,'2018-06-29 01:00:13',438094660712267778,244,6),(3874,'2018-06-29 01:00:13',148942504077557760,244,14),(3875,'2018-06-29 01:00:22',429615167492325376,244,14),(3876,'2018-06-29 01:00:27',438094660712267778,244,9),(3877,'2018-06-29 01:00:29',429615167492325376,244,8),(3878,'2018-06-29 01:00:34',429615167492325376,244,13),(3879,'2018-06-29 01:00:34',283395529449406464,244,10),(3880,'2018-06-29 01:00:42',429615167492325376,244,9),(3881,'2018-06-29 01:00:53',429615167492325376,244,12),(3882,'2018-06-29 01:00:59',429615167492325376,244,11),(3883,'2018-06-29 01:01:03',185698541052755968,244,10),(3884,'2018-06-29 01:01:05',185698541052755968,244,6),(3885,'2018-06-29 01:01:07',185698541052755968,244,12),(3886,'2018-06-29 01:01:09',185698541052755968,244,7),(3887,'2018-06-29 01:42:38',438094660712267778,245,10),(3888,'2018-06-29 01:42:45',429615167492325376,245,10),(3889,'2018-06-29 01:42:45',438094660712267778,245,11),(3890,'2018-06-29 01:43:06',438094660712267778,245,13),(3891,'2018-06-29 01:43:17',429615167492325376,245,9),(3892,'2018-06-29 01:43:23',124137587773276160,245,14),(3893,'2018-06-29 01:43:29',460761978135248896,245,8),(3894,'2018-06-29 01:43:33',460761978135248896,245,7),(3895,'2018-06-29 01:43:37',124137587773276160,245,7),(3896,'2018-06-29 01:43:40',429615167492325376,245,12),(3897,'2018-06-29 01:43:42',124137587773276160,245,7),(3898,'2018-06-29 01:43:49',429615167492325376,245,12),(3899,'2018-06-29 01:43:55',218498162745278474,245,8),(3900,'2018-06-29 01:43:58',218498162745278474,245,14),(3901,'2018-06-29 01:44:12',429615167492325376,245,9),(3902,'2018-06-29 01:45:10',200340393596944384,245,13),(3903,'2018-06-29 01:59:45',201102155896193024,245,12),(3904,'2018-06-29 01:59:48',201102155896193024,245,8),(3905,'2018-06-29 01:59:49',201102155896193024,245,12),(3906,'2018-06-29 01:59:49',201102155896193024,245,12),(3907,'2018-06-29 01:59:51',201102155896193024,245,14),(3908,'2018-06-29 02:00:08',459876383431327746,245,11),(3909,'2018-06-29 02:00:10',459876383431327746,245,8),(3910,'2018-06-29 02:00:11',459876383431327746,245,10),(3911,'2018-06-29 02:00:12',459876383431327746,245,7),(3912,'2018-06-29 02:00:13',459876383431327746,245,6),(3913,'2018-06-29 02:00:31',459881667104997376,245,13),(3914,'2018-06-29 02:00:32',459881667104997376,245,13),(3915,'2018-06-29 02:00:34',459881667104997376,245,6),(3916,'2018-06-29 02:00:34',459881667104997376,245,7),(3917,'2018-06-29 02:00:35',459881667104997376,245,14),(3918,'2018-06-29 02:01:10',433759248800022532,245,10),(3919,'2018-06-29 02:01:11',433759248800022532,245,10),(3920,'2018-06-29 02:01:12',433759248800022532,245,6),(3921,'2018-06-29 02:01:24',433759248800022532,245,6),(3922,'2018-06-29 02:01:26',433759248800022532,245,9),(3923,'2018-06-29 02:01:46',429615167492325376,245,7),(3924,'2018-06-29 02:02:17',438094660712267778,245,9),(3925,'2018-06-29 02:02:57',201102155896193024,245,10),(3926,'2018-06-29 02:02:58',201102155896193024,245,14),(3927,'2018-06-29 02:03:12',443150342725566484,245,7),(3928,'2018-06-29 04:11:02',200340393596944384,246,11),(3929,'2018-06-29 04:11:04',200340393596944384,246,7),(3930,'2018-06-29 04:11:06',200340393596944384,246,14),(3931,'2018-06-29 04:11:06',457300954660995114,246,7),(3932,'2018-06-29 04:11:08',200340393596944384,246,8),(3933,'2018-06-29 04:11:08',460761978135248896,246,14),(3934,'2018-06-29 04:11:09',457300954660995114,246,11),(3935,'2018-06-29 04:11:09',200340393596944384,246,6),(3936,'2018-06-29 04:11:11',460761978135248896,246,7),(3937,'2018-06-29 04:11:12',457300954660995114,246,13),(3938,'2018-06-29 04:11:13',185698541052755968,246,10),(3939,'2018-06-29 04:11:14',185698541052755968,246,8),(3940,'2018-06-29 04:11:14',460761978135248896,246,8),(3941,'2018-06-29 04:11:14',185698541052755968,246,14),(3942,'2018-06-29 04:11:15',185698541052755968,246,12),(3943,'2018-06-29 04:11:17',185698541052755968,246,10),(3944,'2018-06-29 04:11:18',460761978135248896,246,9),(3945,'2018-06-29 04:11:51',457300954660995114,246,10),(3946,'2018-06-29 04:29:24',200340393596944384,247,13),(3947,'2018-06-29 04:29:27',200340393596944384,247,8),(3948,'2018-06-29 04:29:28',201102155896193024,247,10),(3949,'2018-06-29 04:29:28',200340393596944384,247,8),(3950,'2018-06-29 04:29:29',201102155896193024,247,14),(3951,'2018-06-29 04:29:29',460761978135248896,247,9),(3952,'2018-06-29 04:29:29',201102155896193024,247,7),(3953,'2018-06-29 04:29:30',200340393596944384,247,9),(3954,'2018-06-29 04:29:30',201102155896193024,247,6),(3955,'2018-06-29 04:29:31',201102155896193024,247,13),(3956,'2018-06-29 04:29:31',200340393596944384,247,7),(3957,'2018-06-29 04:29:32',460761978135248896,247,11),(3958,'2018-06-29 04:29:33',457300954660995114,247,10),(3959,'2018-06-29 04:29:34',433759248800022532,247,13),(3960,'2018-06-29 04:29:34',433759248800022532,247,12),(3961,'2018-06-29 04:29:35',459876383431327746,247,10),(3962,'2018-06-29 04:29:35',457300954660995114,247,6),(3963,'2018-06-29 04:29:35',433759248800022532,247,12),(3964,'2018-06-29 04:29:36',459876383431327746,247,10),(3965,'2018-06-29 04:29:36',460761978135248896,247,6),(3966,'2018-06-29 04:29:36',459876383431327746,247,6),(3967,'2018-06-29 04:29:38',459876383431327746,247,8),(3968,'2018-06-29 04:29:38',433759248800022532,247,13),(3969,'2018-06-29 04:29:38',433759248800022532,247,9),(3970,'2018-06-29 04:29:39',457300954660995114,247,13),(3971,'2018-06-29 04:58:52',460761978135248896,248,12),(3972,'2018-06-29 04:58:54',200340393596944384,248,10),(3973,'2018-06-29 04:58:55',460761978135248896,248,9),(3974,'2018-06-29 04:58:56',200340393596944384,248,6),(3975,'2018-06-29 04:58:58',457300954660995114,248,7),(3976,'2018-06-29 04:58:58',460761978135248896,248,7),(3977,'2018-06-29 04:59:00',185698541052755968,248,8),(3978,'2018-06-29 04:59:00',200340393596944384,248,7),(3979,'2018-06-29 04:59:01',388505302292627456,248,8),(3980,'2018-06-29 04:59:01',457300954660995114,248,7),(3981,'2018-06-29 04:59:03',460761978135248896,248,13),(3982,'2018-06-29 04:59:03',185698541052755968,248,13),(3983,'2018-06-29 04:59:05',185698541052755968,248,10),(3984,'2018-06-29 04:59:08',185698541052755968,248,12),(3985,'2018-06-29 04:59:10',185698541052755968,248,10),(3986,'2018-06-29 04:59:10',200340393596944384,248,14),(3987,'2018-06-29 04:59:12',200340393596944384,248,14),(3988,'2018-06-29 04:59:13',388505302292627456,248,13),(3989,'2018-06-29 04:59:29',460761978135248896,248,7),(3990,'2018-06-29 04:59:39',433759248800022532,248,6),(3991,'2018-06-29 04:59:41',457300954660995114,248,10),(3992,'2018-06-29 04:59:42',433759248800022532,248,12),(3993,'2018-06-29 04:59:46',457300954660995114,248,12),(3994,'2018-06-29 05:00:07',457300954660995114,248,6),(3995,'2018-06-29 05:01:05',460761978135248896,248,6),(3996,'2018-06-29 05:01:10',185698541052755968,248,10),(3997,'2018-06-29 05:01:27',200340393596944384,248,6),(3998,'2018-06-29 05:01:43',457300954660995114,248,10),(3999,'2018-06-29 05:02:10',388505302292627456,248,6),(4000,'2018-06-29 05:02:25',388505302292627456,248,14),(4001,'2018-06-29 05:02:39',433759248800022532,248,11),(4002,'2018-06-29 05:02:56',460761978135248896,248,10),(4003,'2018-06-29 05:03:03',185698541052755968,248,7),(4004,'2018-06-29 05:03:07',388505302292627456,248,6),(4005,'2018-06-29 05:03:50',388505302292627456,248,7),(4006,'2018-06-29 05:03:51',457300954660995114,248,12),(4007,'2018-06-29 05:04:00',388505302292627456,248,12),(4008,'2018-06-29 05:05:17',460761978135248896,248,6),(4009,'2018-06-29 05:05:29',185698541052755968,248,10),(4010,'2018-06-29 05:05:33',200340393596944384,248,12),(4011,'2018-06-29 05:06:44',433759248800022532,248,12),(4012,'2018-06-29 05:06:46',433759248800022532,248,14),(4013,'2018-06-29 05:06:52',185698541052755968,248,8),(4014,'2018-06-29 05:06:55',460761978135248896,248,10),(4015,'2018-06-29 05:07:20',334750493085794304,248,8),(4016,'2018-06-29 05:07:23',334750493085794304,248,10),(4017,'2018-06-29 05:07:26',334750493085794304,248,14),(4018,'2018-06-29 05:41:59',460761978135248896,249,8),(4019,'2018-06-29 05:42:08',460761978135248896,249,10),(4020,'2018-06-29 05:42:14',460761978135248896,249,9),(4021,'2018-06-29 05:42:48',457300954660995114,249,6),(4022,'2018-06-29 05:42:54',457300954660995114,249,13),(4023,'2018-06-29 05:43:00',457300954660995114,249,12),(4024,'2018-06-29 05:43:04',457300954660995114,249,6),(4025,'2018-06-29 05:43:51',457300954660995114,249,12),(4026,'2018-06-29 05:44:10',460761978135248896,249,9),(4027,'2018-06-29 05:44:16',460761978135248896,249,8),(4028,'2018-06-29 05:44:38',460761978135248896,249,10),(4029,'2018-06-29 05:44:45',388505302292627456,249,10),(4030,'2018-06-29 05:45:33',200340393596944384,249,9),(4031,'2018-06-29 05:45:35',200340393596944384,249,8),(4032,'2018-06-29 05:45:39',388505302292627456,249,9),(4033,'2018-06-29 05:45:44',388505302292627456,249,14),(4034,'2018-06-29 05:45:51',388505302292627456,249,14),(4035,'2018-06-29 05:46:10',457300954660995114,249,8),(4036,'2018-06-29 05:46:15',460761978135248896,249,12),(4037,'2018-06-29 05:46:19',388505302292627456,249,13),(4038,'2018-06-29 05:46:45',460761978135248896,249,8),(4039,'2018-06-29 05:47:37',429615167492325376,249,9),(4040,'2018-06-29 05:47:43',429615167492325376,249,11),(4041,'2018-06-29 05:48:14',200340393596944384,249,11),(4042,'2018-06-29 05:48:16',200340393596944384,249,6),(4043,'2018-06-29 05:48:25',200340393596944384,249,13),(4044,'2018-06-29 05:48:48',200340393596944384,249,7),(4045,'2018-06-29 05:48:50',200340393596944384,249,11),(4046,'2018-06-29 05:49:17',433759248800022532,249,13),(4047,'2018-06-29 05:49:19',433759248800022532,249,8),(4048,'2018-06-29 05:49:26',433759248800022532,249,13),(4049,'2018-06-29 05:51:20',168775748495212545,249,14),(4050,'2018-06-29 05:51:33',200340393596944384,249,14),(4051,'2018-06-29 05:51:40',429615167492325376,249,9),(4052,'2018-06-29 05:51:44',168775748495212545,249,10),(4053,'2018-06-29 06:48:25',265907268942299136,250,8),(4054,'2018-06-29 06:48:30',325565391478718464,250,10),(4055,'2018-06-29 06:48:32',325565391478718464,250,12),(4056,'2018-06-29 06:48:34',460761978135248896,250,10),(4057,'2018-06-29 06:48:34',325565391478718464,250,7),(4058,'2018-06-29 06:48:35',457300954660995114,250,8),(4059,'2018-06-29 06:48:35',265907268942299136,250,6),(4060,'2018-06-29 06:48:37',460761978135248896,250,10),(4061,'2018-06-29 06:48:38',325565391478718464,250,9),(4062,'2018-06-29 06:48:39',457300954660995114,250,9),(4063,'2018-06-29 06:48:40',325565391478718464,250,14),(4064,'2018-06-29 06:48:41',265907268942299136,250,10),(4065,'2018-06-29 06:48:43',325565391478718464,250,10),(4066,'2018-06-29 06:48:43',460761978135248896,250,8),(4067,'2018-06-29 06:48:45',457300954660995114,250,9),(4068,'2018-06-29 06:48:48',265907268942299136,250,12),(4069,'2018-06-29 06:48:50',457300954660995114,250,13),(4070,'2018-06-29 06:49:00',460761978135248896,250,12),(4071,'2018-06-29 06:49:06',265907268942299136,250,14),(4072,'2018-06-29 07:00:31',325565391478718464,251,6),(4073,'2018-06-29 07:00:33',325565391478718464,251,8),(4074,'2018-06-29 07:00:35',325565391478718464,251,7),(4075,'2018-06-29 07:00:36',325565391478718464,251,12),(4076,'2018-06-29 07:00:39',325565391478718464,251,8),(4077,'2018-06-29 07:00:41',325565391478718464,251,13),(4078,'2018-06-29 07:01:17',457300954660995114,251,10),(4079,'2018-06-29 07:01:22',457300954660995114,251,7),(4080,'2018-06-29 07:01:41',457300954660995114,251,12),(4081,'2018-06-29 07:01:41',460761978135248896,251,11),(4082,'2018-06-29 07:01:47',460761978135248896,251,9),(4083,'2018-06-29 07:01:54',460761978135248896,251,8),(4084,'2018-06-29 07:01:54',457300954660995114,251,7),(4085,'2018-06-29 07:02:02',460761978135248896,251,11),(4086,'2018-06-29 07:02:53',325565391478718464,251,9),(4087,'2018-06-29 07:03:37',283395529449406464,251,9),(4088,'2018-06-29 07:03:44',283395529449406464,251,8),(4089,'2018-06-29 07:03:49',283395529449406464,251,8),(4090,'2018-06-29 07:03:55',283395529449406464,251,8),(4091,'2018-06-29 07:04:02',283395529449406464,251,14),(4092,'2018-06-29 07:04:54',325565391478718464,251,6),(4093,'2018-06-29 07:04:59',283395529449406464,251,12),(4094,'2018-06-29 07:06:13',457300954660995114,251,11),(4095,'2018-06-29 07:06:18',457300954660995114,251,12),(4096,'2018-06-29 07:06:22',457300954660995114,251,6),(4097,'2018-06-29 07:16:21',325565391478718464,252,14),(4098,'2018-06-29 07:16:27',283395529449406464,252,10),(4099,'2018-06-29 07:16:29',457300954660995114,252,10),(4100,'2018-06-29 07:16:30',283395529449406464,252,13),(4101,'2018-06-29 07:16:33',457300954660995114,252,11),(4102,'2018-06-29 07:16:35',283395529449406464,252,12),(4103,'2018-06-29 07:16:35',325565391478718464,252,8),(4104,'2018-06-29 07:16:38',457300954660995114,252,13),(4105,'2018-06-29 07:16:38',283395529449406464,252,8),(4106,'2018-06-29 07:16:42',283395529449406464,252,11),(4107,'2018-06-29 07:16:46',457300954660995114,252,7),(4108,'2018-06-29 07:16:59',325565391478718464,252,8),(4109,'2018-06-29 07:17:08',457300954660995114,252,13),(4110,'2018-06-29 07:17:27',457300954660995114,252,12),(4111,'2018-06-29 07:17:39',334750493085794304,252,10),(4112,'2018-06-29 07:17:40',334750493085794304,252,7),(4113,'2018-06-29 07:17:44',334750493085794304,252,13),(4114,'2018-06-29 07:17:47',334750493085794304,252,14),(4115,'2018-06-29 07:17:49',334750493085794304,252,14),(4116,'2018-06-29 07:19:56',460761978135248896,252,11),(4117,'2018-06-29 07:20:01',460761978135248896,252,6),(4118,'2018-06-29 07:20:19',457300954660995114,252,8),(4119,'2018-06-29 07:20:34',460761978135248896,252,7),(4120,'2018-06-29 07:20:38',460761978135248896,252,13),(4121,'2018-06-29 07:20:50',457300954660995114,252,13),(4122,'2018-06-29 07:20:54',460761978135248896,252,11),(4123,'2018-06-29 07:56:35',283395529449406464,253,6),(4124,'2018-06-29 07:56:43',460761978135248896,253,9),(4125,'2018-06-29 07:56:46',460761978135248896,253,13),(4126,'2018-06-29 07:56:49',460761978135248896,253,7),(4127,'2018-06-29 07:56:53',460761978135248896,253,10),(4128,'2018-06-29 07:56:53',283395529449406464,253,10),(4129,'2018-06-29 07:56:56',460761978135248896,253,14),(4130,'2018-06-29 07:56:57',283395529449406464,253,7),(4131,'2018-06-29 07:57:05',329153903557869569,253,6),(4132,'2018-06-29 07:57:07',457300954660995114,253,11),(4133,'2018-06-29 07:57:11',457300954660995114,253,9),(4134,'2018-06-29 07:57:13',329153903557869569,253,14),(4135,'2018-06-29 07:57:16',457300954660995114,253,6),(4136,'2018-06-29 07:57:17',329153903557869569,253,7),(4137,'2018-06-29 07:57:20',457300954660995114,253,8),(4138,'2018-06-29 07:57:21',329153903557869569,253,10),(4139,'2018-06-29 07:57:24',329153903557869569,253,6),(4140,'2018-06-29 07:57:25',457300954660995114,253,7),(4141,'2018-06-29 07:57:59',283395529449406464,253,10),(4142,'2018-06-29 07:58:05',283395529449406464,253,7),(4143,'2018-06-29 07:58:26',424563962303086594,253,7),(4144,'2018-06-29 07:58:33',424563962303086594,253,8),(4145,'2018-06-29 07:58:35',283395529449406464,253,9),(4146,'2018-06-29 08:58:59',283395529449406464,254,13),(4147,'2018-06-29 08:59:22',274301199841361920,254,8),(4148,'2018-06-29 08:59:23',460761978135248896,254,12),(4149,'2018-06-29 08:59:24',274301199841361920,254,10),(4150,'2018-06-29 08:59:24',274301199841361920,254,8),(4151,'2018-06-29 08:59:25',274301199841361920,254,12),(4152,'2018-06-29 08:59:26',460761978135248896,254,8),(4153,'2018-06-29 08:59:26',274301199841361920,254,7),(4154,'2018-06-29 08:59:29',460761978135248896,254,14),(4155,'2018-06-29 08:59:31',283395529449406464,254,10),(4156,'2018-06-29 08:59:33',460761978135248896,254,7),(4157,'2018-06-29 08:59:37',460761978135248896,254,11),(4158,'2018-06-29 08:59:37',283395529449406464,254,8),(4159,'2018-06-29 08:59:43',457300954660995114,254,6),(4160,'2018-06-29 08:59:44',283395529449406464,254,14),(4161,'2018-06-29 08:59:46',457300954660995114,254,12),(4162,'2018-06-29 08:59:50',457300954660995114,254,10),(4163,'2018-06-29 08:59:51',283395529449406464,254,14),(4164,'2018-06-29 08:59:54',457300954660995114,254,11),(4165,'2018-06-29 08:59:58',457300954660995114,254,9),(4166,'2018-06-29 09:00:49',325565391478718464,254,9),(4167,'2018-06-29 09:00:51',325565391478718464,254,12),(4168,'2018-06-29 09:15:26',283395529449406464,255,7),(4169,'2018-06-29 09:15:30',424563962303086594,255,11),(4170,'2018-06-29 09:15:39',424563962303086594,255,10),(4171,'2018-06-29 09:15:42',283395529449406464,255,7),(4172,'2018-06-29 09:15:52',460761978135248896,255,13),(4173,'2018-06-29 09:16:12',460761978135248896,255,13),(4174,'2018-06-29 09:16:15',325565391478718464,255,14),(4175,'2018-06-29 09:16:16',424563962303086594,255,10),(4176,'2018-06-29 09:16:17',460761978135248896,255,12),(4177,'2018-06-29 09:16:20',460761978135248896,255,6),(4178,'2018-06-29 09:16:28',325565391478718464,255,6),(4179,'2018-06-29 09:16:34',329153903557869569,255,14),(4180,'2018-06-29 09:16:45',329153903557869569,255,14),(4181,'2018-06-29 09:16:47',460761978135248896,255,7),(4182,'2018-06-29 09:16:51',325565391478718464,255,6),(4183,'2018-06-29 09:16:54',329153903557869569,255,13),(4184,'2018-06-29 09:17:18',460761978135248896,255,11),(4185,'2018-06-29 09:17:39',457300954660995114,255,14),(4186,'2018-06-29 09:17:43',457300954660995114,255,13),(4187,'2018-06-29 09:17:48',457300954660995114,255,14),(4188,'2018-06-29 09:17:52',457300954660995114,255,13),(4189,'2018-06-29 09:17:53',325565391478718464,255,10),(4190,'2018-06-29 09:17:54',325565391478718464,255,9),(4191,'2018-06-29 09:17:59',457300954660995114,255,11),(4192,'2018-06-29 09:18:04',325565391478718464,255,13),(4193,'2018-06-29 09:18:19',329153903557869569,255,13),(4194,'2018-06-29 09:18:29',329153903557869569,255,13),(4195,'2018-06-29 09:18:42',329153903557869569,255,11),(4196,'2018-06-29 09:18:44',390618369545601028,255,6),(4197,'2018-06-29 09:18:46',390618369545601028,255,13),(4198,'2018-06-29 09:18:48',390618369545601028,255,8),(4199,'2018-06-29 09:18:49',390618369545601028,255,10),(4200,'2018-06-29 09:18:50',390618369545601028,255,6),(4201,'2018-06-29 09:19:07',424563962303086594,255,14),(4202,'2018-06-29 09:19:08',131968711312539648,255,10),(4203,'2018-06-29 09:19:10',131968711312539648,255,14),(4204,'2018-06-29 09:19:12',131968711312539648,255,12),(4205,'2018-06-29 09:19:13',460761978135248896,255,6),(4206,'2018-06-29 09:19:17',131968711312539648,255,14),(4207,'2018-06-29 09:19:26',424563962303086594,255,10),(4208,'2018-06-29 09:19:27',131968711312539648,255,7),(4209,'2018-06-29 09:20:38',460761978135248896,255,13),(4210,'2018-06-29 09:20:42',329153903557869569,255,11),(4211,'2018-06-29 09:20:43',457300954660995114,255,13),(4212,'2018-06-29 09:20:44',131968711312539648,255,6),(4213,'2018-06-29 09:20:46',329153903557869569,255,10),(4214,'2018-06-29 09:21:10',457300954660995114,255,10),(4215,'2018-06-29 09:22:56',460761978135248896,255,9),(4216,'2018-06-29 09:23:30',283395529449406464,255,6),(4217,'2018-06-29 09:23:32',283395529449406464,255,10),(4218,'2018-06-29 09:23:42',457300954660995114,255,7),(4219,'2018-06-29 12:08:39',274301199841361920,256,13),(4220,'2018-06-29 12:11:04',274301199841361920,256,11),(4221,'2018-06-29 12:11:05',274301199841361920,256,9),(4222,'2018-06-29 12:11:06',274301199841361920,256,10),(4223,'2018-06-29 12:11:08',274301199841361920,256,14),(4224,'2018-06-29 12:13:01',142612779377885185,256,8),(4225,'2018-06-29 12:13:04',142612779377885185,256,6),(4226,'2018-06-29 12:13:08',142612779377885185,256,12),(4227,'2018-06-29 12:13:13',334750493085794304,256,9),(4228,'2018-06-29 12:13:15',334750493085794304,256,10),(4229,'2018-06-29 12:13:16',334750493085794304,256,14),(4230,'2018-06-29 12:13:16',334750493085794304,256,10),(4231,'2018-06-29 12:13:17',334750493085794304,256,10),(4232,'2018-06-29 12:13:38',211232684209340426,256,12),(4233,'2018-06-29 12:13:38',142612779377885185,256,6),(4234,'2018-06-29 12:13:39',211232684209340426,256,6),(4235,'2018-06-29 12:13:40',142612779377885185,256,13),(4236,'2018-06-29 12:13:41',211232684209340426,256,10),(4237,'2018-06-29 12:13:42',211232684209340426,256,10),(4238,'2018-06-29 12:13:43',211232684209340426,256,10),(4239,'2018-06-29 12:13:54',286105785052954626,256,10),(4240,'2018-06-29 12:13:55',286105785052954626,256,11),(4241,'2018-06-29 12:13:56',286105785052954626,256,6),(4242,'2018-06-29 12:13:57',286105785052954626,256,12),(4243,'2018-06-29 12:13:57',286105785052954626,256,10),(4244,'2018-06-29 12:14:16',124512152466882560,256,6),(4245,'2018-06-29 12:14:19',124512152466882560,256,8),(4246,'2018-06-29 12:14:21',124512152466882560,256,8),(4247,'2018-06-29 12:14:25',124512152466882560,256,8),(4248,'2018-06-29 12:14:28',124512152466882560,256,6),(4249,'2018-06-29 12:14:52',185698541052755968,256,14),(4250,'2018-06-29 12:14:52',124512152466882560,256,6),(4251,'2018-06-29 12:14:54',185698541052755968,256,11),(4252,'2018-06-29 12:14:56',185698541052755968,256,8),(4253,'2018-06-29 12:14:58',185698541052755968,256,10),(4254,'2018-06-29 12:15:02',185698541052755968,256,13),(4255,'2018-06-29 12:15:09',142612779377885185,256,6),(4256,'2018-06-29 12:16:17',148942504077557760,256,6),(4257,'2018-06-29 12:18:04',262771588946984963,256,11),(4258,'2018-06-29 12:18:06',262771588946984963,256,9),(4259,'2018-06-29 12:18:06',204933415252787202,256,10),(4260,'2018-06-29 12:18:07',142612779377885185,256,10),(4261,'2018-06-29 12:18:08',262771588946984963,256,10),(4262,'2018-06-29 12:18:08',204933415252787202,256,10),(4263,'2018-06-29 12:18:12',204933415252787202,256,7),(4264,'2018-06-29 13:19:02',262771588946984963,257,8),(4265,'2018-06-29 13:19:09',262771588946984963,257,7),(4266,'2018-06-29 13:19:11',262771588946984963,257,6),(4267,'2018-06-29 13:19:11',204933415252787202,257,10),(4268,'2018-06-29 13:19:12',204933415252787202,257,14),(4269,'2018-06-29 13:19:13',262771588946984963,257,13),(4270,'2018-06-29 13:19:14',204933415252787202,257,8),(4271,'2018-06-29 13:19:14',262771588946984963,257,13),(4272,'2018-06-29 13:19:16',204933415252787202,257,8),(4273,'2018-06-29 13:19:26',204933415252787202,257,13),(4274,'2018-06-29 13:19:46',185698541052755968,257,6),(4275,'2018-06-29 13:19:48',185698541052755968,257,11),(4276,'2018-06-29 13:19:51',185698541052755968,257,11),(4277,'2018-06-29 13:19:53',185698541052755968,257,13),(4278,'2018-06-29 13:19:55',185698541052755968,257,10),(4279,'2018-06-29 13:21:43',274301199841361920,257,9),(4280,'2018-06-29 13:21:53',274301199841361920,257,13),(4281,'2018-06-29 13:21:54',274301199841361920,257,10),(4282,'2018-06-29 13:21:55',274301199841361920,257,9),(4283,'2018-06-29 13:21:56',274301199841361920,257,7),(4284,'2018-06-29 13:22:55',204933415252787202,257,13),(4285,'2018-06-29 13:24:43',200340393596944384,257,14),(4286,'2018-06-29 13:24:49',200340393596944384,257,10),(4287,'2018-06-29 13:24:51',262771588946984963,257,6),(4288,'2018-06-29 13:24:53',262771588946984963,257,9),(4289,'2018-06-29 13:24:54',200340393596944384,257,6),(4290,'2018-06-29 13:24:56',200340393596944384,257,14),(4291,'2018-06-29 13:25:00',200340393596944384,257,8),(4292,'2018-06-29 13:25:01',185698541052755968,257,7),(4293,'2018-06-29 13:25:04',204933415252787202,257,9),(4294,'2018-06-29 13:25:04',185698541052755968,257,11),(4295,'2018-06-29 13:27:06',204933415252787202,257,14),(4296,'2018-06-29 13:27:32',185698541052755968,257,12),(4297,'2018-06-29 13:28:01',200340393596944384,257,11),(4298,'2018-06-29 13:28:57',204933415252787202,257,14),(4299,'2018-06-29 13:30:39',185698541052755968,257,10),(4300,'2018-06-29 13:30:42',185698541052755968,257,8),(4301,'2018-06-29 13:30:55',200340393596944384,257,12),(4302,'2018-06-29 13:30:59',200340393596944384,257,12),(4303,'2018-06-29 13:31:12',204933415252787202,257,12),(4304,'2018-06-29 13:32:49',204933415252787202,257,10),(4305,'2018-06-29 13:53:12',433759248800022532,258,13),(4306,'2018-06-29 13:53:20',433759248800022532,258,9),(4307,'2018-06-29 13:53:26',433759248800022532,258,11),(4308,'2018-06-29 13:53:32',433759248800022532,258,10),(4309,'2018-06-29 13:53:38',204933415252787202,258,8),(4310,'2018-06-29 13:53:39',433759248800022532,258,6),(4311,'2018-06-29 13:53:45',185698541052755968,258,6),(4312,'2018-06-29 13:53:47',185698541052755968,258,10),(4313,'2018-06-29 13:53:49',185698541052755968,258,13),(4314,'2018-06-29 13:53:51',185698541052755968,258,10),(4315,'2018-06-29 13:53:53',185698541052755968,258,13),(4316,'2018-06-29 13:53:58',204933415252787202,258,10),(4317,'2018-06-29 13:54:22',204933415252787202,258,11),(4318,'2018-06-29 13:54:29',204933415252787202,258,7),(4319,'2018-06-29 13:54:32',204933415252787202,258,9),(4320,'2018-06-29 13:55:26',306381311923453953,258,10),(4321,'2018-06-29 13:55:37',201102155896193024,258,13),(4322,'2018-06-29 13:55:38',201102155896193024,258,14),(4323,'2018-06-29 13:55:38',200340393596944384,258,13),(4324,'2018-06-29 13:55:40',201102155896193024,258,6),(4325,'2018-06-29 13:55:40',201102155896193024,258,7),(4326,'2018-06-29 13:55:41',201102155896193024,258,9),(4327,'2018-06-29 13:55:44',459876383431327746,258,13),(4328,'2018-06-29 14:15:09',185698541052755968,259,12),(4329,'2018-06-29 14:15:10',459879057295671296,259,10),(4330,'2018-06-29 14:15:10',459879057295671296,259,12),(4331,'2018-06-29 14:15:11',459879057295671296,259,8),(4332,'2018-06-29 14:15:11',200340393596944384,259,14),(4333,'2018-06-29 14:15:11',459879057295671296,259,6),(4334,'2018-06-29 14:15:11',185698541052755968,259,11),(4335,'2018-06-29 14:15:12',200340393596944384,259,9),(4336,'2018-06-29 14:15:14',185698541052755968,259,13),(4337,'2018-06-29 14:15:14',459881667104997376,259,13),(4338,'2018-06-29 14:15:15',459881667104997376,259,14),(4339,'2018-06-29 14:15:15',459881667104997376,259,12),(4340,'2018-06-29 14:15:16',459881667104997376,259,8),(4341,'2018-06-29 14:15:16',459881667104997376,259,6),(4342,'2018-06-29 14:15:24',459876383431327746,259,11),(4343,'2018-06-29 14:37:15',200340393596944384,260,9),(4344,'2018-06-29 14:37:17',200340393596944384,260,14),(4345,'2018-06-29 14:37:18',201102155896193024,260,14),(4346,'2018-06-29 14:37:19',200340393596944384,260,14),(4347,'2018-06-29 14:37:19',201102155896193024,260,7),(4348,'2018-06-29 14:37:19',201102155896193024,260,14),(4349,'2018-06-29 14:37:20',200340393596944384,260,7),(4350,'2018-06-29 14:37:20',201102155896193024,260,9),(4351,'2018-06-29 14:37:21',201102155896193024,260,13),(4352,'2018-06-29 14:37:22',200340393596944384,260,10),(4353,'2018-06-29 14:37:24',236304169533833216,260,10),(4354,'2018-06-29 14:37:24',236304169533833216,260,11),(4355,'2018-06-29 14:37:25',236304169533833216,260,11),(4356,'2018-06-29 14:37:25',459881667104997376,260,10),(4357,'2018-06-29 14:37:26',236304169533833216,260,12),(4358,'2018-06-29 14:53:41',306381311923453953,261,12),(4359,'2018-06-29 14:53:52',201102155896193024,261,8),(4360,'2018-06-29 14:53:53',201102155896193024,261,10),(4361,'2018-06-29 14:53:55',201102155896193024,261,9),(4362,'2018-06-29 14:53:56',201102155896193024,261,12),(4363,'2018-06-29 14:53:57',201102155896193024,261,14),(4364,'2018-06-29 14:53:58',236304169533833216,261,6),(4365,'2018-06-29 14:53:59',236304169533833216,261,10),(4366,'2018-06-29 14:53:59',236304169533833216,261,13),(4367,'2018-06-29 14:54:00',236304169533833216,261,9),(4368,'2018-06-29 14:54:01',236304169533833216,261,11),(4369,'2018-06-29 14:54:01',459879057295671296,261,6),(4370,'2018-06-29 14:54:02',459879057295671296,261,6),(4371,'2018-06-29 14:54:03',459879057295671296,261,8),(4372,'2018-06-29 14:54:04',459879057295671296,261,10),(4373,'2018-06-29 14:54:06',459879057295671296,261,7),(4374,'2018-06-29 14:54:13',459881667104997376,261,10),(4375,'2018-06-29 14:54:14',459881667104997376,261,10),(4376,'2018-06-29 14:54:15',306381311923453953,261,8),(4377,'2018-06-29 14:54:16',459881667104997376,261,12),(4378,'2018-06-29 14:54:17',459881667104997376,261,6),(4379,'2018-06-29 14:54:18',459881667104997376,261,10),(4380,'2018-06-29 14:54:20',438094660712267778,261,13),(4381,'2018-06-29 14:54:26',438094660712267778,261,13),(4382,'2018-06-29 14:54:28',459873273308643328,261,6),(4383,'2018-06-29 14:54:28',454823752925052930,261,11),(4384,'2018-06-29 14:54:29',459873273308643328,261,6),(4385,'2018-06-29 14:54:29',454823752925052930,261,14),(4386,'2018-06-29 14:54:31',459873273308643328,261,9),(4387,'2018-06-29 14:54:31',454823752925052930,261,13),(4388,'2018-06-29 14:54:32',459873273308643328,261,14),(4389,'2018-06-29 14:54:33',306381311923453953,261,6),(4390,'2018-06-29 14:54:33',438094660712267778,261,7),(4391,'2018-06-29 14:54:34',459873273308643328,261,10),(4392,'2018-06-29 14:54:35',443150342725566484,261,9),(4393,'2018-06-29 14:54:36',438094660712267778,261,10),(4394,'2018-06-29 14:54:39',443150342725566484,261,13),(4395,'2018-06-29 14:54:39',201102155896193024,261,12),(4396,'2018-06-29 14:54:41',443150342725566484,261,12),(4397,'2018-06-29 14:54:44',443150342725566484,261,11),(4398,'2018-06-29 14:54:47',443150342725566484,261,9),(4399,'2018-06-29 14:54:52',306381311923453953,261,10),(4400,'2018-06-29 14:54:53',443150342725566484,261,10),(4401,'2018-06-29 14:54:57',200340393596944384,261,10),(4402,'2018-06-29 14:55:03',200340393596944384,261,9),(4403,'2018-06-29 14:55:13',433759248800022532,261,11),(4404,'2018-06-29 14:55:14',148942504077557760,261,6),(4405,'2018-06-29 14:55:15',433759248800022532,261,6),(4406,'2018-06-29 14:55:18',148942504077557760,261,7),(4407,'2018-06-29 14:55:20',306381311923453953,261,10),(4408,'2018-06-29 14:55:21',433759248800022532,261,8),(4409,'2018-06-29 14:55:22',148942504077557760,261,10),(4410,'2018-06-29 14:55:23',148942504077557760,261,13),(4411,'2018-06-29 14:55:23',433759248800022532,261,10),(4412,'2018-06-29 14:55:24',438094660712267778,261,6),(4413,'2018-06-29 14:55:29',433759248800022532,261,13),(4414,'2018-06-29 14:55:48',306381311923453953,261,8),(4415,'2018-06-29 14:55:59',459884642192064512,261,6),(4416,'2018-06-29 14:56:00',459884642192064512,261,10),(4417,'2018-06-29 14:56:01',459884642192064512,261,13),(4418,'2018-06-29 14:56:02',148942504077557760,261,14),(4419,'2018-06-29 14:56:02',459884642192064512,261,14),(4420,'2018-06-29 15:05:12',306381311923453953,262,12),(4421,'2018-06-29 15:05:20',306381311923453953,262,11),(4422,'2018-06-29 15:05:22',459881667104997376,262,6),(4423,'2018-06-29 15:05:23',459881667104997376,262,11),(4424,'2018-06-29 15:05:24',459881667104997376,262,11),(4425,'2018-06-29 15:05:25',459881667104997376,262,10),(4426,'2018-06-29 15:05:26',306381311923453953,262,13),(4427,'2018-06-29 15:05:30',306381311923453953,262,7),(4428,'2018-06-29 15:05:31',459879057295671296,262,10),(4429,'2018-06-29 15:05:32',459879057295671296,262,12),(4430,'2018-06-29 15:05:33',459879057295671296,262,8),(4431,'2018-06-29 15:05:34',459879057295671296,262,9),(4432,'2018-06-29 15:05:35',459879057295671296,262,6),(4433,'2018-06-29 15:05:37',443150342725566484,262,8),(4434,'2018-06-29 15:05:40',459884642192064512,262,10),(4435,'2018-06-29 15:05:40',443150342725566484,262,9),(4436,'2018-06-29 15:05:41',459884642192064512,262,12),(4437,'2018-06-29 15:05:42',459884642192064512,262,10),(4438,'2018-06-29 15:05:42',443150342725566484,262,10),(4439,'2018-06-29 15:05:43',454823752925052930,262,13),(4440,'2018-06-29 15:05:43',459884642192064512,262,10),(4441,'2018-06-29 15:05:45',454823752925052930,262,9),(4442,'2018-06-29 15:05:45',443150342725566484,262,6),(4443,'2018-06-29 15:05:46',459884642192064512,262,10),(4444,'2018-06-29 15:05:47',454823752925052930,262,11),(4445,'2018-06-29 15:23:43',274301199841361920,263,10),(4446,'2018-06-29 15:23:51',459879057295671296,263,7),(4447,'2018-06-29 15:23:52',459879057295671296,263,12),(4448,'2018-06-29 15:23:52',218498162745278474,263,8),(4449,'2018-06-29 15:23:53',200340393596944384,263,14),(4450,'2018-06-29 15:23:53',459879057295671296,263,10),(4451,'2018-06-29 15:23:54',274301199841361920,263,12),(4452,'2018-06-29 15:23:55',459879057295671296,263,14),(4453,'2018-06-29 15:23:56',274301199841361920,263,7),(4454,'2018-06-29 15:23:57',218498162745278474,263,13),(4455,'2018-06-29 15:23:57',459879057295671296,263,10),(4456,'2018-06-29 15:23:58',274301199841361920,263,10),(4457,'2018-06-29 15:23:58',274301199841361920,263,8),(4458,'2018-06-29 15:24:01',218498162745278474,263,7),(4459,'2018-06-29 15:24:02',459883167160205313,263,8),(4460,'2018-06-29 15:24:02',142612779377885185,263,13),(4461,'2018-06-29 15:24:03',459883167160205313,263,12),(4462,'2018-06-29 15:24:04',459883167160205313,263,8),(4463,'2018-06-29 15:24:05',459883167160205313,263,8),(4464,'2018-06-29 15:24:06',433759248800022532,263,9),(4465,'2018-06-29 15:24:06',459883167160205313,263,10),(4466,'2018-06-29 15:24:06',142612779377885185,263,11),(4467,'2018-06-29 15:24:07',142612779377885185,263,14),(4468,'2018-06-29 15:36:25',454823752925052930,264,13),(4469,'2018-06-29 15:36:29',454823752925052930,264,9),(4470,'2018-06-29 15:36:34',274301199841361920,264,14),(4471,'2018-06-29 15:36:36',454823752925052930,264,13),(4472,'2018-06-29 15:36:36',204933415252787202,264,10),(4473,'2018-06-29 15:36:36',274301199841361920,264,10),(4474,'2018-06-29 15:36:37',454823752925052930,264,10),(4475,'2018-06-29 15:36:38',274301199841361920,264,9),(4476,'2018-06-29 15:36:39',454823752925052930,264,6),(4477,'2018-06-29 15:36:39',204933415252787202,264,10),(4478,'2018-06-29 15:36:40',218498162745278474,264,14),(4479,'2018-06-29 15:36:41',433759248800022532,264,13),(4480,'2018-06-29 15:36:42',433759248800022532,264,14),(4481,'2018-06-29 15:36:43',204933415252787202,264,6),(4482,'2018-06-29 15:36:43',218498162745278474,264,12),(4483,'2018-06-29 15:36:46',204933415252787202,264,6),(4484,'2018-06-29 15:36:48',218498162745278474,264,8),(4485,'2018-06-29 15:36:49',204933415252787202,264,10),(4486,'2018-06-29 15:36:49',433759248800022532,264,9),(4487,'2018-06-29 15:36:51',274301199841361920,264,8),(4488,'2018-06-29 15:36:52',274301199841361920,264,11),(4489,'2018-06-29 15:36:54',274301199841361920,264,9),(4490,'2018-06-29 15:36:55',200340393596944384,264,12),(4491,'2018-06-29 15:36:56',200340393596944384,264,12),(4492,'2018-06-29 16:01:20',274301199841361920,265,10),(4493,'2018-06-29 16:14:02',163770616581718017,265,14),(4494,'2018-06-29 16:14:07',218498162745278474,265,13),(4495,'2018-06-29 16:14:10',204933415252787202,265,6),(4496,'2018-06-29 16:14:12',218498162745278474,265,10),(4497,'2018-06-29 16:14:12',204933415252787202,265,11),(4498,'2018-06-29 16:14:16',218498162745278474,265,7),(4499,'2018-06-29 16:14:17',454823752925052930,265,13),(4500,'2018-06-29 16:14:18',429615167492325376,265,12),(4501,'2018-06-29 16:14:19',454823752925052930,265,10),(4502,'2018-06-29 16:14:21',454823752925052930,265,12),(4503,'2018-06-29 16:14:24',429615167492325376,265,11),(4504,'2018-06-29 16:14:25',204933415252787202,265,7),(4505,'2018-06-29 16:14:28',204933415252787202,265,6),(4506,'2018-06-29 16:14:29',148942504077557760,265,9),(4507,'2018-06-29 16:14:29',454823752925052930,265,9),(4508,'2018-06-29 16:14:32',429615167492325376,265,11),(4509,'2018-06-29 16:14:33',148942504077557760,265,9),(4510,'2018-06-29 16:14:39',218498162745278474,265,14),(4511,'2018-06-29 16:14:39',429615167492325376,265,7),(4512,'2018-06-29 16:14:41',200340393596944384,265,9),(4513,'2018-06-29 16:14:43',200340393596944384,265,13),(4514,'2018-06-29 16:14:45',200340393596944384,265,10),(4515,'2018-06-29 16:14:52',218498162745278474,265,10),(4516,'2018-06-29 16:14:58',433759248800022532,265,9),(4517,'2018-06-29 16:15:19',218498162745278474,265,14),(4518,'2018-06-29 16:15:24',148942504077557760,265,10),(4519,'2018-06-29 16:15:58',163770616581718017,265,13),(4520,'2018-06-29 16:16:01',163770616581718017,265,10),(4521,'2018-06-29 16:16:03',163770616581718017,265,7),(4522,'2018-06-29 16:16:04',163770616581718017,265,14),(4523,'2018-06-29 16:16:05',163770616581718017,265,7),(4524,'2018-06-29 16:16:07',163770616581718017,265,14),(4525,'2018-06-29 16:16:40',438094660712267778,265,10),(4526,'2018-06-29 16:16:43',148942504077557760,265,14),(4527,'2018-06-29 16:16:44',148942504077557760,265,12),(4528,'2018-06-29 16:31:23',218498162745278474,266,7),(4529,'2018-06-29 16:31:27',201102155896193024,266,13),(4530,'2018-06-29 16:31:49',200340393596944384,266,13),(4531,'2018-06-29 16:31:55',459883167160205313,266,6),(4532,'2018-06-29 16:32:00',218498162745278474,266,10),(4533,'2018-06-29 16:32:02',459883167160205313,266,13),(4534,'2018-06-29 16:32:03',459883167160205313,266,11),(4535,'2018-06-29 16:32:04',459883167160205313,266,10),(4536,'2018-06-29 16:32:05',459883167160205313,266,7),(4537,'2018-06-29 16:32:47',459873273308643328,266,10),(4538,'2018-06-29 16:32:52',218498162745278474,266,12),(4539,'2018-06-29 16:32:57',218498162745278474,266,13),(4540,'2018-06-29 16:32:59',459873273308643328,266,10),(4541,'2018-06-29 16:33:00',459873273308643328,266,11),(4542,'2018-06-29 16:33:01',459873273308643328,266,13),(4543,'2018-06-29 16:33:03',459873273308643328,266,10),(4544,'2018-06-29 16:33:51',334750493085794304,266,7),(4545,'2018-06-29 16:33:54',334750493085794304,266,11),(4546,'2018-06-29 16:33:55',334750493085794304,266,9),(4547,'2018-06-29 16:33:55',334750493085794304,266,12),(4548,'2018-06-29 16:33:56',334750493085794304,266,6),(4549,'2018-06-29 16:33:56',236304169533833216,266,6),(4550,'2018-06-29 16:34:09',459876383431327746,266,14),(4551,'2018-06-29 16:34:15',459876383431327746,266,13),(4552,'2018-06-29 16:34:16',459876383431327746,266,6),(4553,'2018-06-29 16:34:17',459876383431327746,266,13),(4554,'2018-06-29 16:34:19',459876383431327746,266,10),(4555,'2018-06-29 16:36:32',443150342725566484,266,11),(4556,'2018-06-29 16:36:35',443150342725566484,266,10),(4557,'2018-06-29 16:36:37',443150342725566484,266,7),(4558,'2018-06-29 16:36:39',443150342725566484,266,8),(4559,'2018-06-29 16:36:42',390618369545601028,266,7),(4560,'2018-06-29 16:36:42',443150342725566484,266,9),(4561,'2018-06-29 16:36:44',390618369545601028,266,10),(4562,'2018-06-29 16:37:13',390618369545601028,266,8),(4563,'2018-06-29 16:37:40',218498162745278474,266,8),(4564,'2018-06-29 16:37:44',218498162745278474,266,6),(4565,'2018-06-29 16:38:01',262771588946984963,266,12),(4566,'2018-06-29 16:38:03',262771588946984963,266,10),(4567,'2018-06-29 16:38:04',262771588946984963,266,10),(4568,'2018-06-29 16:38:05',262771588946984963,266,14),(4569,'2018-06-29 16:38:07',262771588946984963,266,8),(4570,'2018-06-29 16:38:08',283395529449406464,266,14),(4571,'2018-06-29 16:38:42',459883167160205313,266,10),(4572,'2018-06-29 16:38:43',459883167160205313,266,14),(4573,'2018-06-29 16:38:44',459883167160205313,266,12),(4574,'2018-06-29 16:38:45',459883167160205313,266,8),(4575,'2018-06-29 16:38:55',262771588946984963,266,6),(4576,'2018-06-29 16:39:06',459873273308643328,266,10),(4577,'2018-06-29 16:39:08',459873273308643328,266,12),(4578,'2018-06-29 16:39:09',459873273308643328,266,12),(4579,'2018-06-29 16:39:51',459876383431327746,266,10),(4580,'2018-06-29 16:39:53',459876383431327746,266,10),(4581,'2018-06-29 16:39:54',459876383431327746,266,6),(4582,'2018-06-29 16:39:55',218458041790496768,266,8),(4583,'2018-06-29 16:39:58',218458041790496768,266,13),(4584,'2018-06-29 16:40:00',218458041790496768,266,14),(4585,'2018-06-29 16:40:03',218458041790496768,266,12),(4586,'2018-06-29 16:55:52',163770616581718017,267,11),(4587,'2018-06-29 16:56:14',459876383431327746,267,12),(4588,'2018-06-29 16:56:15',459876383431327746,267,14),(4589,'2018-06-29 16:56:16',459876383431327746,267,14),(4590,'2018-06-29 16:56:20',459876383431327746,267,6),(4591,'2018-06-29 16:56:21',459876383431327746,267,12),(4592,'2018-06-29 16:56:40',211232684209340426,267,9),(4593,'2018-06-29 16:56:40',459873273308643328,267,10),(4594,'2018-06-29 16:56:41',211232684209340426,267,12),(4595,'2018-06-29 16:56:42',459873273308643328,267,12),(4596,'2018-06-29 16:56:42',211232684209340426,267,10),(4597,'2018-06-29 16:56:43',459873273308643328,267,14),(4598,'2018-06-29 16:56:43',211232684209340426,267,12),(4599,'2018-06-29 16:56:44',459873273308643328,267,12),(4600,'2018-06-29 16:56:45',211232684209340426,267,14),(4601,'2018-06-29 16:56:46',459873273308643328,267,7),(4602,'2018-06-29 16:59:29',459834182961463299,268,6),(4603,'2018-06-29 16:59:33',459834182961463299,268,9),(4604,'2018-06-29 16:59:45',459834182961463299,268,14),(4605,'2018-06-29 16:59:46',459834182961463299,268,9),(4606,'2018-06-29 16:59:48',459834182961463299,268,14),(4607,'2018-06-29 17:00:00',211232684209340426,268,6),(4608,'2018-06-29 17:00:59',148942504077557760,268,14),(4609,'2018-06-29 17:01:41',262771588946984963,268,10),(4610,'2018-06-29 17:01:45',262771588946984963,268,6),(4611,'2018-06-29 17:01:47',262771588946984963,268,7),(4612,'2018-06-29 17:01:48',262771588946984963,268,12),(4613,'2018-06-29 17:01:50',262771588946984963,268,8),(4614,'2018-06-29 17:02:20',211232684209340426,268,13),(4615,'2018-06-29 17:02:28',459883167160205313,268,13),(4616,'2018-06-29 17:02:38',459883167160205313,268,12),(4617,'2018-06-29 17:02:41',459883167160205313,268,10),(4618,'2018-06-29 17:02:44',262771588946984963,268,14),(4619,'2018-06-29 17:02:53',459883167160205313,268,12),(4620,'2018-06-29 17:03:21',459876383431327746,268,7),(4621,'2018-06-29 17:03:28',459876383431327746,268,10),(4622,'2018-06-29 17:13:51',142612779377885185,269,6),(4623,'2018-06-29 17:13:51',286105785052954626,269,8),(4624,'2018-06-29 17:13:52',142612779377885185,269,13),(4625,'2018-06-29 17:13:52',286105785052954626,269,8),(4626,'2018-06-29 17:13:52',142612779377885185,269,11),(4627,'2018-06-29 17:13:52',142612779377885185,269,7),(4628,'2018-06-29 17:13:53',142612779377885185,269,8),(4629,'2018-06-29 17:13:53',286105785052954626,269,6),(4630,'2018-06-29 17:13:54',286105785052954626,269,11),(4631,'2018-06-29 17:13:54',286105785052954626,269,7),(4632,'2018-06-29 17:14:05',459879057295671296,269,6),(4633,'2018-06-29 17:14:07',459879057295671296,269,12),(4634,'2018-06-29 17:14:11',459879057295671296,269,7),(4635,'2018-06-29 17:14:16',459879057295671296,269,12),(4636,'2018-06-29 17:14:22',329153903557869569,269,9),(4637,'2018-06-29 17:14:25',329153903557869569,269,9),(4638,'2018-06-29 17:14:28',329153903557869569,269,11),(4639,'2018-06-29 17:14:32',329153903557869569,269,8),(4640,'2018-06-29 17:14:35',329153903557869569,269,12),(4641,'2018-06-29 17:14:37',459873273308643328,269,13),(4642,'2018-06-29 17:14:38',329153903557869569,269,11),(4643,'2018-06-29 17:14:42',459873273308643328,269,6),(4644,'2018-06-29 17:14:46',142612779377885185,269,12),(4645,'2018-06-29 17:43:48',278115594879107074,270,6),(4646,'2018-06-29 17:43:54',262771588946984963,270,10),(4647,'2018-06-29 17:43:55',218458041790496768,270,15),(4648,'2018-06-29 17:43:57',262771588946984963,270,7),(4649,'2018-06-29 17:43:58',218458041790496768,270,13),(4650,'2018-06-29 17:43:58',459873273308643328,270,11),(4651,'2018-06-29 17:43:59',262771588946984963,270,12),(4652,'2018-06-29 17:44:00',218458041790496768,270,7),(4653,'2018-06-29 17:44:00',459873273308643328,270,8),(4654,'2018-06-29 17:44:01',218498162745278474,270,7),(4655,'2018-06-29 17:44:02',262771588946984963,270,12),(4656,'2018-06-29 17:44:02',218458041790496768,270,10),(4657,'2018-06-29 17:44:02',278115594879107074,270,10),(4658,'2018-06-29 17:44:04',218498162745278474,270,11),(4659,'2018-06-29 17:44:04',262771588946984963,270,13),(4660,'2018-06-29 17:44:06',218458041790496768,270,16),(4661,'2018-06-29 17:44:06',262771588946984963,270,13),(4662,'2018-06-29 17:44:13',278115594879107074,270,8),(4663,'2018-06-29 17:44:18',459876383431327746,270,6),(4664,'2018-06-29 17:44:24',459876383431327746,270,10),(4665,'2018-06-29 17:44:24',278115594879107074,270,11),(4666,'2018-06-29 18:00:55',124137587773276160,271,6),(4667,'2018-06-29 18:00:57',278115594879107074,271,12),(4668,'2018-06-29 18:01:00',278115594879107074,271,10),(4669,'2018-06-29 18:01:00',297748308523483138,271,10),(4670,'2018-06-29 18:01:00',262771588946984963,271,14),(4671,'2018-06-29 18:01:01',297748308523483138,271,10),(4672,'2018-06-29 18:01:01',124137587773276160,271,6),(4673,'2018-06-29 18:01:02',297748308523483138,271,11),(4674,'2018-06-29 18:01:02',200340393596944384,271,7),(4675,'2018-06-29 18:01:02',297748308523483138,271,12),(4676,'2018-06-29 18:01:03',297748308523483138,271,8),(4677,'2018-06-29 18:01:04',278115594879107074,271,8),(4678,'2018-06-29 18:01:04',124137587773276160,271,11),(4679,'2018-06-29 18:01:04',200340393596944384,271,13),(4680,'2018-06-29 18:01:05',200340393596944384,271,16),(4681,'2018-06-29 18:01:06',124137587773276160,271,10),(4682,'2018-06-29 18:01:06',200340393596944384,271,16),(4683,'2018-06-29 18:01:07',278115594879107074,271,10),(4684,'2018-06-29 18:01:10',334750493085794304,271,11),(4685,'2018-06-29 18:01:11',124137587773276160,271,11),(4686,'2018-06-29 18:01:11',334750493085794304,271,11),(4687,'2018-06-29 18:01:11',334750493085794304,271,8),(4688,'2018-06-29 18:01:12',334750493085794304,271,8),(4689,'2018-06-29 18:01:13',278115594879107074,271,12),(4690,'2018-06-29 18:01:15',218458041790496768,271,12),(4691,'2018-06-29 18:01:17',459879057295671296,271,6),(4692,'2018-06-29 18:01:20',220272827327053824,271,12),(4693,'2018-06-29 18:01:21',142612779377885185,271,15),(4694,'2018-06-29 18:01:22',142612779377885185,271,11),(4695,'2018-06-29 18:01:22',459879057295671296,271,6),(4696,'2018-06-29 18:01:22',142612779377885185,271,7),(4697,'2018-06-29 18:01:22',142612779377885185,271,11),(4698,'2018-06-29 18:01:32',286105785052954626,271,12),(4699,'2018-06-29 18:01:32',459883167160205313,271,6),(4700,'2018-06-29 18:01:35',459883167160205313,271,7),(4701,'2018-06-29 18:01:35',286105785052954626,271,13),(4702,'2018-06-29 18:01:37',459883167160205313,271,10),(4703,'2018-06-29 18:01:39',218458041790496768,271,16),(4704,'2018-06-29 18:01:39',286105785052954626,271,17),(4705,'2018-06-29 18:01:39',218498162745278474,271,12),(4706,'2018-06-29 18:01:40',433759248800022532,271,6),(4707,'2018-06-29 18:01:41',433759248800022532,271,6),(4708,'2018-06-29 18:01:42',218458041790496768,271,9),(4709,'2018-06-29 18:01:43',433759248800022532,271,7),(4710,'2018-06-29 18:01:43',148942504077557760,271,10),(4711,'2018-06-29 18:01:44',433759248800022532,271,7),(4712,'2018-06-29 18:01:45',433759248800022532,271,7),(4713,'2018-06-29 18:01:45',148942504077557760,271,9),(4714,'2018-06-29 18:01:46',218458041790496768,271,14),(4715,'2018-06-29 18:01:48',459873273308643328,271,9),(4716,'2018-06-29 18:01:49',220272827327053824,271,12),(4717,'2018-06-29 18:01:51',148942504077557760,271,8),(4718,'2018-06-29 18:01:51',148942504077557760,271,11),(4719,'2018-06-29 18:01:51',148942504077557760,271,10),(4720,'2018-06-29 18:01:56',454823752925052930,271,11),(4721,'2018-06-29 18:14:15',459876383431327746,272,9),(4722,'2018-06-29 18:14:15',218498162745278474,272,11),(4723,'2018-06-29 18:14:19',218498162745278474,272,9),(4724,'2018-06-29 18:14:24',459876383431327746,272,16),(4725,'2018-06-29 18:14:25',459876383431327746,272,11),(4726,'2018-06-29 18:14:26',459876383431327746,272,15),(4727,'2018-06-29 18:14:29',218498162745278474,272,13),(4728,'2018-06-29 18:14:35',459876383431327746,272,13),(4729,'2018-06-29 18:15:01',390618369545601028,272,10),(4730,'2018-06-29 18:15:02',459881667104997376,272,12),(4731,'2018-06-29 18:15:04',390618369545601028,272,13),(4732,'2018-06-29 18:15:05',459881667104997376,272,6),(4733,'2018-06-29 18:15:06',459881667104997376,272,10),(4734,'2018-06-29 18:15:27',438094660712267778,272,10),(4735,'2018-06-29 18:15:33',438094660712267778,272,8),(4736,'2018-06-29 18:15:58',286105785052954626,272,11),(4737,'2018-06-29 18:15:59',286105785052954626,272,10),(4738,'2018-06-29 18:16:00',286105785052954626,272,12),(4739,'2018-06-29 18:16:02',438094660712267778,272,13),(4740,'2018-06-29 18:16:08',438094660712267778,272,10),(4741,'2018-06-29 18:16:18',459834182961463299,272,12),(4742,'2018-06-29 18:16:20',459834182961463299,272,6),(4743,'2018-06-29 18:16:22',438094660712267778,272,10),(4744,'2018-06-29 18:16:22',459834182961463299,272,13),(4745,'2018-06-29 18:16:24',459834182961463299,272,10),(4746,'2018-06-29 18:16:31',459834182961463299,272,8),(4747,'2018-06-29 18:16:38',459834182961463299,272,9),(4748,'2018-06-29 18:18:13',163770616581718017,272,9),(4749,'2018-06-29 18:18:14',163770616581718017,272,10),(4750,'2018-06-29 18:18:16',163770616581718017,272,14),(4751,'2018-06-29 18:18:17',163770616581718017,272,10),(4752,'2018-06-29 18:18:21',163770616581718017,272,7),(4753,'2018-06-29 18:18:21',457300954660995114,272,13),(4754,'2018-06-29 18:18:23',163770616581718017,272,11),(4755,'2018-06-29 18:18:25',457300954660995114,272,10),(4756,'2018-06-29 18:18:37',460761978135248896,272,7),(4757,'2018-06-29 18:18:41',460761978135248896,272,12),(4758,'2018-06-29 18:18:44',460761978135248896,272,13),(4759,'2018-06-29 18:18:48',460761978135248896,272,10),(4760,'2018-06-29 18:18:53',460761978135248896,272,10),(4761,'2018-06-29 18:18:58',457300954660995114,272,8),(4762,'2018-06-29 18:19:02',457300954660995114,272,14),(4763,'2018-06-29 18:19:07',457300954660995114,272,10),(4764,'2018-06-29 18:20:06',163770616581718017,272,14),(4765,'2018-06-29 18:20:46',424563962303086594,272,10),(4766,'2018-06-29 18:20:52',424563962303086594,272,11),(4767,'2018-06-29 18:20:55',438094660712267778,272,8),(4768,'2018-06-29 18:20:57',424563962303086594,272,6),(4769,'2018-06-29 18:21:05',424563962303086594,272,10),(4770,'2018-06-29 18:21:11',424563962303086594,272,8),(4771,'2018-06-29 18:21:26',262771588946984963,272,15),(4772,'2018-06-29 18:21:42',262771588946984963,272,8),(4773,'2018-06-29 18:43:49',274301199841361920,273,14),(4774,'2018-06-29 18:43:59',274301199841361920,273,10),(4775,'2018-06-29 18:44:00',124512152466882560,273,14),(4776,'2018-06-29 18:44:01',274301199841361920,273,10),(4777,'2018-06-29 18:44:02',274301199841361920,273,13),(4778,'2018-06-29 18:44:04',274301199841361920,273,7),(4779,'2018-06-29 18:44:06',460761978135248896,273,13),(4780,'2018-06-29 18:44:08',124512152466882560,273,9),(4781,'2018-06-29 18:44:10',460761978135248896,273,11),(4782,'2018-06-29 18:44:12',124512152466882560,273,12),(4783,'2018-06-29 18:44:17',124512152466882560,273,14),(4784,'2018-06-29 18:44:20',460761978135248896,273,13),(4785,'2018-06-29 18:44:24',124512152466882560,273,11),(4786,'2018-06-29 18:45:26',460761978135248896,273,10),(4787,'2018-06-29 18:45:29',460761978135248896,273,9),(4788,'2018-06-29 18:45:33',457300954660995114,273,6),(4789,'2018-06-29 19:09:16',163770616581718017,274,16),(4790,'2018-06-29 19:10:15',274301199841361920,274,11),(4791,'2018-06-29 19:10:16',274301199841361920,274,8),(4792,'2018-06-29 19:10:17',274301199841361920,274,10),(4793,'2018-06-29 19:10:18',274301199841361920,274,13),(4794,'2018-06-29 19:10:19',274301199841361920,274,14),(4795,'2018-06-29 19:10:44',390618369545601028,274,14),(4796,'2018-06-29 19:11:32',460761978135248896,274,11),(4797,'2018-06-29 19:11:33',390618369545601028,274,10),(4798,'2018-06-29 19:11:35',390618369545601028,274,9),(4799,'2018-06-29 19:12:15',390618369545601028,274,11),(4800,'2018-06-29 19:13:37',457300954660995114,274,7),(4801,'2018-06-29 19:13:42',457300954660995114,274,6),(4802,'2018-06-29 19:14:16',262771588946984963,274,11),(4803,'2018-06-29 19:14:18',262771588946984963,274,15),(4804,'2018-06-29 19:14:23',274301199841361920,274,13),(4805,'2018-06-29 19:14:27',274301199841361920,274,10),(4806,'2018-06-29 19:14:47',274301199841361920,274,12),(4807,'2018-06-29 19:21:50',457300954660995114,274,11),(4808,'2018-06-29 19:26:17',438094660712267778,274,12),(4809,'2018-06-29 19:26:39',438094660712267778,274,11),(4810,'2018-06-29 19:26:49',438094660712267778,274,10),(4811,'2018-06-29 19:36:16',459881667104997376,274,11),(4812,'2018-06-29 19:36:22',459881667104997376,274,10),(4813,'2018-06-29 19:36:23',459881667104997376,274,9),(4814,'2018-06-29 19:36:24',459881667104997376,274,13),(4815,'2018-06-29 19:36:25',459881667104997376,274,9),(4816,'2018-06-29 19:36:47',459834182961463299,274,8),(4817,'2018-06-29 19:36:48',459834182961463299,274,10),(4818,'2018-06-29 19:36:49',459834182961463299,274,11),(4819,'2018-06-29 19:36:50',459834182961463299,274,13),(4820,'2018-06-29 19:36:51',459834182961463299,274,13),(4821,'2018-06-29 19:36:57',459834182961463299,274,13),(4822,'2018-06-29 19:37:46',274301199841361920,274,6),(4823,'2018-06-29 19:37:58',274301199841361920,274,11),(4824,'2018-06-29 19:42:36',459881667104997376,274,7),(4825,'2018-06-29 19:42:39',459881667104997376,274,7),(4826,'2018-06-29 19:42:41',459881667104997376,274,6),(4827,'2018-06-29 19:45:03',460761978135248896,274,14),(4828,'2018-06-29 19:45:31',297748308523483138,274,11),(4829,'2018-06-29 19:45:33',297748308523483138,274,10),(4830,'2018-06-29 19:45:36',297748308523483138,274,10),(4831,'2018-06-29 20:03:00',163770616581718017,275,10),(4832,'2018-06-29 20:03:01',163770616581718017,275,7),(4833,'2018-06-29 22:04:46',200340393596944384,276,15),(4834,'2018-06-29 22:04:49',200340393596944384,276,10),(4835,'2018-06-29 22:04:51',324727149930086400,276,10),(4836,'2018-06-29 22:04:54',200340393596944384,276,12),(4837,'2018-06-29 22:04:56',200340393596944384,276,14),(4838,'2018-06-29 22:04:59',274301199841361920,276,7),(4839,'2018-06-29 22:05:02',200340393596944384,276,14),(4840,'2018-06-29 22:05:05',211232684209340426,276,12),(4841,'2018-06-29 22:05:07',211232684209340426,276,6),(4842,'2018-06-29 22:05:10',459881667104997376,276,13),(4843,'2018-06-29 22:05:12',211232684209340426,276,13),(4844,'2018-06-29 22:05:15',274301199841361920,276,9),(4845,'2018-06-29 22:05:17',324727149930086400,276,7),(4846,'2018-06-29 22:05:20',459881667104997376,276,12),(4847,'2018-06-29 22:05:22',211232684209340426,276,14),(4848,'2018-06-29 22:05:24',274301199841361920,276,7),(4849,'2018-06-29 22:05:27',459881667104997376,276,10),(4850,'2018-06-29 22:05:29',324727149930086400,276,7),(4851,'2018-06-29 22:05:31',274301199841361920,276,11),(4852,'2018-06-29 22:05:34',283671323639676929,276,9),(4853,'2018-06-29 22:05:36',211232684209340426,276,6),(4854,'2018-06-29 22:05:38',459881667104997376,276,12),(4855,'2018-06-29 22:05:41',274301199841361920,276,12),(4856,'2018-06-29 22:05:43',324727149930086400,276,13),(4857,'2018-06-29 22:05:48',459881667104997376,276,10),(4858,'2018-06-29 22:05:50',211232684209340426,276,6),(4859,'2018-06-29 22:05:52',324727149930086400,276,7),(4860,'2018-06-29 22:05:58',211232684209340426,276,8),(4861,'2018-06-29 22:06:06',211232684209340426,276,12),(4862,'2018-06-29 22:12:04',163770616581718017,275,11),(4863,'2018-06-29 22:12:05',459834182961463299,275,13),(4864,'2018-06-29 22:12:06',459834182961463299,275,11),(4865,'2018-06-29 22:12:07',297748308523483138,275,13),(4866,'2018-06-29 22:12:07',393415098766458892,275,6),(4867,'2018-06-29 22:12:08',459834182961463299,275,6),(4868,'2018-06-29 22:12:09',459834182961463299,275,10),(4869,'2018-06-29 22:12:10',297748308523483138,275,6),(4870,'2018-06-29 22:12:10',297748308523483138,275,16),(4871,'2018-06-29 22:12:11',459834182961463299,275,7),(4872,'2018-06-29 22:12:12',459834182961463299,275,9),(4873,'2018-06-29 22:12:12',297748308523483138,275,14),(4874,'2018-06-29 22:12:14',297748308523483138,275,11),(4875,'2018-06-29 22:12:14',324727149930086400,275,6),(4876,'2018-06-29 22:12:15',324727149930086400,275,13),(4877,'2018-06-29 22:12:19',262771588946984963,275,10),(4878,'2018-06-29 22:12:20',324727149930086400,275,8),(4879,'2018-06-29 22:12:21',262771588946984963,275,11),(4880,'2018-06-29 22:12:23',262771588946984963,275,11),(4881,'2018-06-29 22:12:26',262771588946984963,275,11),(4882,'2018-06-29 22:12:28',393415098766458892,275,10),(4883,'2018-06-29 22:12:33',393415098766458892,275,10),(4884,'2018-06-29 22:12:37',393415098766458892,275,6),(4885,'2018-06-29 22:12:38',262771588946984963,275,10),(4886,'2018-06-29 22:12:42',262771588946984963,275,13),(4887,'2018-06-29 22:12:43',459881667104997376,275,6),(4888,'2018-06-29 22:12:45',459881667104997376,275,10),(4889,'2018-06-29 22:12:59',460761978135248896,275,11),(4890,'2018-06-29 22:13:02',393415098766458892,275,13),(4891,'2018-06-29 22:13:03',460761978135248896,275,8),(4892,'2018-06-29 22:13:05',200340393596944384,275,12),(4893,'2018-06-29 22:13:08',200340393596944384,275,13),(4894,'2018-06-29 22:13:13',460761978135248896,275,19),(4895,'2018-06-29 22:13:15',200340393596944384,275,15),(4896,'2018-06-29 22:13:17',460761978135248896,275,13),(4897,'2018-06-29 22:13:21',460761978135248896,275,15),(4898,'2018-06-29 22:13:29',211232684209340426,275,7),(4899,'2018-06-29 22:13:39',211232684209340426,275,12),(4900,'2018-06-29 22:13:44',274301199841361920,275,10),(4901,'2018-06-29 22:13:44',211232684209340426,275,6),(4902,'2018-06-29 22:13:45',359521958519504926,275,13),(4903,'2018-06-29 22:13:47',359521958519504926,275,7),(4904,'2018-06-29 22:13:49',359521958519504926,275,11),(4905,'2018-06-29 22:13:52',274301199841361920,275,10),(4906,'2018-06-29 22:13:55',274301199841361920,275,6),(4907,'2018-06-29 22:13:57',359521958519504926,275,13),(4908,'2018-06-29 22:14:13',454823752925052930,275,11),(4909,'2018-06-29 22:14:15',454823752925052930,275,6),(4910,'2018-06-29 22:14:17',454823752925052930,275,9),(4911,'2018-06-29 22:14:22',218498162745278474,275,7),(4912,'2018-06-29 22:14:23',454823752925052930,275,11),(4913,'2018-06-29 22:14:26',218498162745278474,275,9),(4914,'2018-06-29 22:14:29',218498162745278474,275,13),(4915,'2018-06-29 22:14:34',218498162745278474,275,7),(4916,'2018-06-29 22:14:37',218498162745278474,275,11),(4917,'2018-06-29 22:14:41',218498162745278474,275,14),(4918,'2018-06-29 22:14:44',220272827327053824,275,10),(4919,'2018-06-29 22:14:45',459881667104997376,275,6),(4920,'2018-06-29 22:14:52',393415098766458892,275,11),(4921,'2018-06-29 22:28:50',274301199841361920,277,14),(4922,'2018-06-29 22:29:01',150649616772235264,277,11),(4923,'2018-06-29 22:29:29',150649616772235264,277,14),(4924,'2018-06-29 22:29:45',200340393596944384,277,9),(4925,'2018-06-29 22:29:46',200340393596944384,277,10),(4926,'2018-06-29 22:29:54',200340393596944384,277,14),(4927,'2018-06-29 22:29:55',200340393596944384,277,9),(4928,'2018-06-29 22:30:07',200340393596944384,277,9),(4929,'2018-06-29 22:30:08',150649616772235264,277,13),(4930,'2018-06-29 22:30:08',200340393596944384,277,13),(4931,'2018-06-29 22:30:09',150649616772235264,277,9),(4932,'2018-06-29 22:30:10',150649616772235264,277,11),(4933,'2018-06-29 22:30:20',457300954660995114,277,16),(4934,'2018-06-29 22:30:24',457300954660995114,277,14),(4935,'2018-06-29 22:30:27',457300954660995114,277,9),(4936,'2018-06-29 22:30:31',457300954660995114,277,17),(4937,'2018-06-29 22:30:35',457300954660995114,277,12),(4938,'2018-06-29 22:30:57',457300954660995114,277,12),(4939,'2018-06-29 22:58:52',163770616581718017,278,9),(4940,'2018-06-29 22:58:53',163770616581718017,278,9),(4941,'2018-06-29 22:58:55',163770616581718017,278,14),(4942,'2018-06-29 22:58:56',163770616581718017,278,10),(4943,'2018-06-29 22:58:57',163770616581718017,278,12),(4944,'2018-06-29 22:58:58',274301199841361920,278,13),(4945,'2018-06-29 22:58:59',163770616581718017,278,11),(4946,'2018-06-29 22:59:00',163770616581718017,278,15),(4947,'2018-06-29 22:59:00',211232684209340426,278,14),(4948,'2018-06-29 22:59:01',150649616772235264,278,7),(4949,'2018-06-29 22:59:02',457300954660995114,278,8),(4950,'2018-06-29 22:59:03',150649616772235264,278,11),(4951,'2018-06-29 22:59:04',131968711312539648,278,7),(4952,'2018-06-29 22:59:04',150649616772235264,278,16),(4953,'2018-06-29 22:59:05',131968711312539648,278,8),(4954,'2018-06-29 23:43:47',211232684209340426,279,12),(4955,'2018-06-29 23:43:52',218498162745278474,279,13),(4956,'2018-06-29 23:43:54',218498162745278474,279,11),(4957,'2018-06-29 23:43:56',218498162745278474,279,9),(4958,'2018-06-29 23:43:58',211232684209340426,279,12),(4959,'2018-06-29 23:43:59',211232684209340426,279,10),(4960,'2018-06-29 23:44:00',218498162745278474,279,10),(4961,'2018-06-29 23:44:00',306381311923453953,279,7),(4962,'2018-06-29 23:44:00',211232684209340426,279,7),(4963,'2018-06-29 23:44:01',211232684209340426,279,11),(4964,'2018-06-29 23:44:03',211232684209340426,279,10),(4965,'2018-06-29 23:44:03',306381311923453953,279,10),(4966,'2018-06-29 23:44:06',218498162745278474,279,8),(4967,'2018-06-29 23:44:08',393415098766458892,279,7),(4968,'2018-06-29 23:44:11',306381311923453953,279,14),(4969,'2018-06-29 23:44:14',211232684209340426,279,10),(4970,'2018-06-29 23:44:14',306381311923453953,279,13),(4971,'2018-06-29 23:44:16',150649616772235264,279,12),(4972,'2018-06-29 23:44:16',306381311923453953,279,8),(4973,'2018-06-29 23:44:22',150649616772235264,279,15),(4974,'2018-06-29 23:44:24',211232684209340426,279,14),(4975,'2018-06-29 23:58:56',218498162745278474,280,13),(4976,'2018-06-29 23:58:58',457300954660995114,280,13),(4977,'2018-06-29 23:59:02',457300954660995114,280,12),(4978,'2018-06-29 23:59:06',218498162745278474,280,8),(4979,'2018-06-29 23:59:06',457300954660995114,280,11),(4980,'2018-06-29 23:59:08',218498162745278474,280,8),(4981,'2018-06-29 23:59:10',457300954660995114,280,10),(4982,'2018-06-29 23:59:18',218498162745278474,280,13),(4983,'2018-06-29 23:59:23',218498162745278474,280,11),(4984,'2018-06-29 23:59:32',457300954660995114,280,12),(4985,'2018-06-30 00:00:04',211232684209340426,280,6),(4986,'2018-06-30 00:00:08',150768078714568705,280,11),(4987,'2018-06-30 00:00:15',211232684209340426,280,11),(4988,'2018-06-30 00:43:49',150649616772235264,281,11),(4989,'2018-06-30 00:43:50',150649616772235264,281,11),(4990,'2018-06-30 00:43:50',150768078714568705,281,9),(4991,'2018-06-30 00:43:51',150649616772235264,281,10),(4992,'2018-06-30 00:43:52',150649616772235264,281,9),(4993,'2018-06-30 00:43:53',150649616772235264,281,8),(4994,'2018-06-30 00:43:53',200340393596944384,281,15),(4995,'2018-06-30 00:43:54',200340393596944384,281,11),(4996,'2018-06-30 00:43:54',150649616772235264,281,14),(4997,'2018-06-30 00:43:54',200340393596944384,281,10),(4998,'2018-06-30 00:43:56',150768078714568705,281,6),(4999,'2018-06-30 00:43:56',457300954660995114,281,12),(5000,'2018-06-30 00:43:57',200340393596944384,281,14),(5001,'2018-06-30 00:43:58',200340393596944384,281,12),(5002,'2018-06-30 00:43:58',150768078714568705,281,10),(5003,'2018-06-30 00:44:00',211232684209340426,281,7),(5004,'2018-06-30 00:44:00',457300954660995114,281,12),(5005,'2018-06-30 00:44:03',200340393596944384,281,12),(5006,'2018-06-30 00:44:04',200340393596944384,281,8),(5007,'2018-06-30 00:44:07',150768078714568705,281,12),(5008,'2018-06-30 00:44:08',457300954660995114,281,13),(5009,'2018-06-30 00:44:09',218498162745278474,281,6),(5010,'2018-06-30 00:44:10',211232684209340426,281,13),(5011,'2018-06-30 00:44:12',211232684209340426,281,10),(5012,'2018-06-30 00:44:12',218498162745278474,281,8),(5013,'2018-06-30 00:44:13',457300954660995114,281,13),(5014,'2018-06-30 01:13:55',211232684209340426,282,9),(5015,'2018-06-30 01:13:57',393415098766458892,282,7),(5016,'2018-06-30 01:13:58',200340393596944384,282,8),(5017,'2018-06-30 01:14:00',200340393596944384,282,12),(5018,'2018-06-30 01:14:01',393415098766458892,282,10),(5019,'2018-06-30 01:14:02',393415098766458892,282,15),(5020,'2018-06-30 01:14:04',200340393596944384,282,14),(5021,'2018-06-30 01:14:06',211232684209340426,282,11),(5022,'2018-06-30 01:14:12',454823752925052930,282,11),(5023,'2018-06-30 01:14:14',454823752925052930,282,11),(5024,'2018-06-30 01:14:15',454823752925052930,282,14),(5025,'2018-06-30 01:14:16',454823752925052930,282,8),(5026,'2018-06-30 01:14:18',454823752925052930,282,8),(5027,'2018-06-30 01:14:19',454823752925052930,282,8),(5028,'2018-06-30 01:14:47',218498162745278474,282,8),(5029,'2018-06-30 01:14:49',218498162745278474,282,7),(5030,'2018-06-30 01:15:13',306381311923453953,282,9),(5031,'2018-06-30 01:15:18',454823752925052930,282,10),(5032,'2018-06-30 01:28:50',306381311923453953,283,7),(5033,'2018-06-30 01:28:50',218458041790496768,283,6),(5034,'2018-06-30 01:28:52',306381311923453953,283,14),(5035,'2018-06-30 01:28:54',218458041790496768,283,15),(5036,'2018-06-30 01:28:54',306381311923453953,283,9),(5037,'2018-06-30 01:28:55',457300954660995114,283,15),(5038,'2018-06-30 01:28:56',306381311923453953,283,7),(5039,'2018-06-30 01:28:58',218458041790496768,283,14),(5040,'2018-06-30 01:28:59',306381311923453953,283,14),(5041,'2018-06-30 01:28:59',457300954660995114,283,10),(5042,'2018-06-30 01:29:01',454823752925052930,283,11),(5043,'2018-06-30 01:29:01',218458041790496768,283,8),(5044,'2018-06-30 01:29:02',457300954660995114,283,7),(5045,'2018-06-30 01:29:02',454823752925052930,283,10),(5046,'2018-06-30 01:29:03',454823752925052930,283,7),(5047,'2018-06-30 01:58:47',285930195125403650,284,11),(5048,'2018-06-30 01:58:48',306381311923453953,284,13),(5049,'2018-06-30 01:58:51',306381311923453953,284,11),(5050,'2018-06-30 01:58:51',286105785052954626,284,7),(5051,'2018-06-30 01:58:53',286105785052954626,284,11),(5052,'2018-06-30 01:58:53',393415098766458892,284,9),(5053,'2018-06-30 01:58:53',306381311923453953,284,12),(5054,'2018-06-30 01:58:56',306381311923453953,284,13),(5055,'2018-06-30 01:58:57',393415098766458892,284,14),(5056,'2018-06-30 01:59:01',211232684209340426,284,14),(5057,'2018-06-30 01:59:02',286105785052954626,284,7),(5058,'2018-06-30 01:59:03',286105785052954626,284,11),(5059,'2018-06-30 01:59:06',285930195125403650,284,7),(5060,'2018-06-30 01:59:09',150768078714568705,284,10),(5061,'2018-06-30 01:59:09',393415098766458892,284,13),(5062,'2018-06-30 01:59:12',393415098766458892,284,10),(5063,'2018-06-30 01:59:12',286105785052954626,284,15),(5064,'2018-06-30 01:59:13',433759248800022532,284,8),(5065,'2018-06-30 01:59:13',286105785052954626,284,12),(5066,'2018-06-30 01:59:14',433759248800022532,284,7),(5067,'2018-06-30 01:59:14',150768078714568705,284,14),(5068,'2018-06-30 01:59:14',285930195125403650,284,15),(5069,'2018-06-30 01:59:15',433759248800022532,284,13),(5070,'2018-06-30 01:59:16',433759248800022532,284,12),(5071,'2018-06-30 01:59:16',433759248800022532,284,9),(5072,'2018-06-30 01:59:17',457300954660995114,284,17),(5073,'2018-06-30 01:59:17',306381311923453953,284,13),(5074,'2018-06-30 01:59:17',211232684209340426,284,15),(5075,'2018-06-30 02:28:51',150768078714568705,285,13),(5076,'2018-06-30 02:28:54',130765718525444096,285,8),(5077,'2018-06-30 02:28:56',272423601922375680,285,13),(5078,'2018-06-30 02:29:02',150768078714568705,285,16),(5079,'2018-06-30 02:29:04',130765718525444096,285,9),(5080,'2018-06-30 02:29:04',306381311923453953,285,13),(5081,'2018-06-30 02:29:06',306381311923453953,285,6),(5082,'2018-06-30 02:29:06',433759248800022532,285,6),(5083,'2018-06-30 02:29:08',246788321404125185,285,14),(5084,'2018-06-30 02:29:08',150768078714568705,285,8),(5085,'2018-06-30 02:29:08',433759248800022532,285,14),(5086,'2018-06-30 02:29:09',433759248800022532,285,13),(5087,'2018-06-30 02:29:09',306381311923453953,285,10),(5088,'2018-06-30 02:29:10',130765718525444096,285,7),(5089,'2018-06-30 02:29:11',433759248800022532,285,12),(5090,'2018-06-30 02:29:13',218498162745278474,285,12),(5091,'2018-06-30 02:29:13',457300954660995114,285,7),(5092,'2018-06-30 02:29:13',433759248800022532,285,7),(5093,'2018-06-30 02:29:13',272423601922375680,285,10),(5094,'2018-06-30 02:29:14',130765718525444096,285,11),(5095,'2018-06-30 02:29:15',150768078714568705,285,11),(5096,'2018-06-30 02:29:15',218498162745278474,285,7),(5097,'2018-06-30 02:29:15',457300954660995114,285,15),(5098,'2018-06-30 02:29:18',457300954660995114,285,9),(5099,'2018-06-30 02:29:19',306381311923453953,285,6),(5100,'2018-06-30 02:29:22',457300954660995114,285,13),(5101,'2018-06-30 02:29:22',278115594879107074,285,11),(5102,'2018-06-30 02:29:24',454823752925052930,285,11),(5103,'2018-06-30 02:29:25',454823752925052930,285,14),(5104,'2018-06-30 02:29:25',150768078714568705,285,12),(5105,'2018-06-30 02:29:26',454823752925052930,285,9),(5106,'2018-06-30 02:29:26',218498162745278474,285,9),(5107,'2018-06-30 02:29:27',278115594879107074,285,7),(5108,'2018-06-30 02:29:27',454823752925052930,285,6),(5109,'2018-06-30 02:29:28',246788321404125185,285,11),(5110,'2018-06-30 02:29:29',454823752925052930,285,12),(5111,'2018-06-30 02:29:30',130765718525444096,285,12),(5112,'2018-06-30 02:29:30',454823752925052930,285,12),(5113,'2018-06-30 02:29:32',454823752925052930,285,15),(5114,'2018-06-30 02:29:35',278115594879107074,285,6),(5115,'2018-06-30 02:29:37',218498162745278474,285,9),(5116,'2018-06-30 02:29:38',272423601922375680,285,11),(5117,'2018-06-30 02:29:44',200340393596944384,285,12),(5118,'2018-06-30 02:58:47',297748308523483138,286,9),(5119,'2018-06-30 02:58:55',200340393596944384,286,16),(5120,'2018-06-30 02:58:57',200340393596944384,286,10),(5121,'2018-06-30 02:58:57',246788321404125185,286,8),(5122,'2018-06-30 02:58:57',297748308523483138,286,16),(5123,'2018-06-30 02:59:01',200340393596944384,286,12),(5124,'2018-06-30 02:59:01',297748308523483138,286,11),(5125,'2018-06-30 02:59:04',200340393596944384,286,12),(5126,'2018-06-30 02:59:05',246788321404125185,286,10),(5127,'2018-06-30 02:59:09',272423601922375680,286,14),(5128,'2018-06-30 02:59:11',246788321404125185,286,8),(5129,'2018-06-30 02:59:11',150768078714568705,286,16),(5130,'2018-06-30 02:59:12',454823752925052930,286,10),(5131,'2018-06-30 02:59:14',297748308523483138,286,8),(5132,'2018-06-30 02:59:18',297748308523483138,286,11),(5133,'2018-06-30 02:59:18',246788321404125185,286,13),(5134,'2018-06-30 02:59:23',381978984566489100,286,12),(5135,'2018-06-30 02:59:23',381978984566489100,286,15),(5136,'2018-06-30 02:59:24',381978984566489100,286,13),(5137,'2018-06-30 02:59:24',272423601922375680,286,11),(5138,'2018-06-30 02:59:26',246788321404125185,286,9),(5139,'2018-06-30 02:59:26',433759248800022532,286,14),(5140,'2018-06-30 02:59:27',433759248800022532,286,14),(5141,'2018-06-30 02:59:29',272423601922375680,286,9),(5142,'2018-06-30 02:59:29',218498162745278474,286,15),(5143,'2018-06-30 02:59:30',381978984566489100,286,11),(5144,'2018-06-30 02:59:31',381978984566489100,286,12),(5145,'2018-06-30 02:59:32',272423601922375680,286,7),(5146,'2018-06-30 02:59:34',246788321404125185,286,9),(5147,'2018-06-30 02:59:37',150768078714568705,286,11),(5148,'2018-06-30 02:59:40',272423601922375680,286,8),(5149,'2018-06-30 03:14:34',433759248800022532,287,10),(5150,'2018-06-30 03:18:34',294927961310625793,0,0),(5151,'2018-06-30 03:58:51',294927961310625793,288,16),(5152,'2018-06-30 03:58:52',163770616581718017,288,15),(5153,'2018-06-30 03:58:53',163770616581718017,288,10),(5154,'2018-06-30 03:58:55',163770616581718017,288,10),(5155,'2018-06-30 03:58:56',163770616581718017,288,13),(5156,'2018-06-30 03:58:57',163770616581718017,288,13),(5157,'2018-06-30 03:58:58',400022926348386315,288,12),(5158,'2018-06-30 03:58:58',163770616581718017,288,13),(5159,'2018-06-30 03:58:59',294927961310625793,288,9),(5160,'2018-06-30 03:58:59',278115594879107074,288,6),(5161,'2018-06-30 03:59:00',163770616581718017,288,7),(5162,'2018-06-30 03:59:01',294927961310625793,288,8),(5163,'2018-06-30 03:59:02',400022926348386315,288,11),(5164,'2018-06-30 03:59:02',278115594879107074,288,7),(5165,'2018-06-30 03:59:06',294927961310625793,288,10),(5166,'2018-06-30 03:59:07',400022926348386315,288,11),(5167,'2018-06-30 03:59:13',400022926348386315,288,10),(5168,'2018-06-30 03:59:15',400022926348386315,288,12),(5169,'2018-06-30 03:59:20',294927961310625793,288,11),(5170,'2018-06-30 03:59:38',297748308523483138,288,12),(5171,'2018-06-30 04:28:43',388505302292627456,289,7),(5172,'2018-06-30 04:28:45',400022926348386315,289,10),(5173,'2018-06-30 04:28:45',294927961310625793,289,13),(5174,'2018-06-30 04:28:46',294927961310625793,289,7),(5175,'2018-06-30 04:28:47',400022926348386315,289,10),(5176,'2018-06-30 04:28:47',294927961310625793,289,11),(5177,'2018-06-30 04:28:48',388505302292627456,289,12),(5178,'2018-06-30 04:28:48',294927961310625793,289,12),(5179,'2018-06-30 04:28:50',294927961310625793,289,9),(5180,'2018-06-30 04:28:53',388505302292627456,289,8),(5181,'2018-06-30 04:29:00',388505302292627456,289,14),(5182,'2018-06-30 04:29:09',388505302292627456,289,12),(5183,'2018-06-30 04:29:32',388505302292627456,289,9),(5184,'2018-06-30 04:29:35',388505302292627456,289,9),(5185,'2018-06-30 04:30:27',200340393596944384,289,17),(5186,'2018-06-30 04:30:54',400022926348386315,289,10),(5187,'2018-06-30 04:30:56',388505302292627456,289,9),(5188,'2018-06-30 04:30:57',294927961310625793,289,12),(5189,'2018-06-30 04:31:01',246788321404125185,289,10),(5190,'2018-06-30 04:31:08',246788321404125185,289,14),(5191,'2018-06-30 04:31:08',200340393596944384,289,8),(5192,'2018-06-30 04:31:10',200340393596944384,289,15),(5193,'2018-06-30 04:31:11',200340393596944384,289,16),(5194,'2018-06-30 04:31:16',246788321404125185,289,11),(5195,'2018-06-30 04:31:22',246788321404125185,289,12),(5196,'2018-06-30 04:31:24',200340393596944384,289,10),(5197,'2018-06-30 04:31:25',200340393596944384,289,12),(5198,'2018-06-30 04:31:28',246788321404125185,289,10),(5199,'2018-06-30 04:31:34',246788321404125185,289,8),(5200,'2018-06-30 05:13:46',400022926348386315,290,12),(5201,'2018-06-30 05:13:46',400022926348386315,290,11),(5202,'2018-06-30 05:13:47',400022926348386315,290,7),(5203,'2018-06-30 05:13:47',400022926348386315,290,6),(5204,'2018-06-30 05:13:48',294927961310625793,290,15),(5205,'2018-06-30 05:13:48',400022926348386315,290,12),(5206,'2018-06-30 05:13:48',294927961310625793,290,9),(5207,'2018-06-30 05:13:48',400022926348386315,290,6),(5208,'2018-06-30 05:13:49',294927961310625793,290,12),(5209,'2018-06-30 05:13:49',200340393596944384,290,8),(5210,'2018-06-30 05:13:50',294927961310625793,290,15),(5211,'2018-06-30 05:13:50',294927961310625793,290,9),(5212,'2018-06-30 05:13:51',400022926348386315,290,10),(5213,'2018-06-30 05:13:51',294927961310625793,290,17),(5214,'2018-06-30 05:13:51',460761978135248896,290,13),(5215,'2018-06-30 05:13:51',438094660712267778,290,14),(5216,'2018-06-30 05:13:52',294927961310625793,290,14),(5217,'2018-06-30 05:13:52',400022926348386315,290,9),(5218,'2018-06-30 05:13:54',460761978135248896,290,8),(5219,'2018-06-30 05:13:54',438094660712267778,290,8),(5220,'2018-06-30 05:13:56',457300954660995114,290,10),(5221,'2018-06-30 05:13:56',200340393596944384,290,12),(5222,'2018-06-30 05:13:56',460761978135248896,290,14),(5223,'2018-06-30 05:28:52',400022926348386315,291,15),(5224,'2018-06-30 05:28:56',400022926348386315,291,16),(5225,'2018-06-30 05:28:57',400022926348386315,291,16),(5226,'2018-06-30 05:28:58',400022926348386315,291,9),(5227,'2018-06-30 05:29:00',400022926348386315,291,12),(5228,'2018-06-30 05:29:01',400022926348386315,291,11),(5229,'2018-06-30 05:29:02',400022926348386315,291,9),(5230,'2018-06-30 05:29:12',294927961310625793,291,14),(5231,'2018-06-30 05:29:15',294927961310625793,291,11),(5232,'2018-06-30 05:29:16',294927961310625793,291,19),(5233,'2018-06-30 05:29:17',294927961310625793,291,8),(5234,'2018-06-30 05:29:18',294927961310625793,291,9),(5235,'2018-06-30 05:29:20',294927961310625793,291,14),(5236,'2018-06-30 05:29:30',294927961310625793,291,12),(5237,'2018-06-30 05:29:31',457300954660995114,291,13),(5238,'2018-06-30 05:29:50',460761978135248896,291,13),(5239,'2018-06-30 05:29:54',457300954660995114,291,13),(5240,'2018-06-30 05:29:54',460761978135248896,291,12),(5241,'2018-06-30 05:29:57',460761978135248896,291,13),(5242,'2018-06-30 05:29:57',438094660712267778,291,9),(5243,'2018-06-30 05:58:46',294927961310625793,292,8),(5244,'2018-06-30 05:58:48',294927961310625793,292,16),(5245,'2018-06-30 05:58:49',438094660712267778,292,12),(5246,'2018-06-30 05:58:50',438094660712267778,292,11),(5247,'2018-06-30 05:58:51',294927961310625793,292,15),(5248,'2018-06-30 05:58:51',335348144428810251,292,13),(5249,'2018-06-30 05:58:51',438094660712267778,292,13),(5250,'2018-06-30 05:58:53',438094660712267778,292,10),(5251,'2018-06-30 05:58:53',438094660712267778,292,13),(5252,'2018-06-30 05:58:53',335348144428810251,292,6),(5253,'2018-06-30 05:58:54',294927961310625793,292,17),(5254,'2018-06-30 05:58:54',438094660712267778,292,10),(5255,'2018-06-30 05:58:55',457300954660995114,292,16),(5256,'2018-06-30 05:58:55',460761978135248896,292,12),(5257,'2018-06-30 05:58:56',200340393596944384,292,12),(5258,'2018-06-30 06:13:47',438094660712267778,293,12),(5259,'2018-06-30 06:13:49',438094660712267778,293,11),(5260,'2018-06-30 06:13:50',438094660712267778,293,11),(5261,'2018-06-30 06:13:51',460761978135248896,293,8),(5262,'2018-06-30 06:13:53',438094660712267778,293,11),(5263,'2018-06-30 06:13:54',460761978135248896,293,9),(5264,'2018-06-30 06:13:55',438094660712267778,293,9),(5265,'2018-06-30 06:13:56',438094660712267778,293,12),(5266,'2018-06-30 06:13:57',460761978135248896,293,15),(5267,'2018-06-30 06:13:59',457300954660995114,293,7),(5268,'2018-06-30 06:14:00',460761978135248896,293,16),(5269,'2018-06-30 06:14:03',457300954660995114,293,10),(5270,'2018-06-30 06:14:04',460761978135248896,293,15),(5271,'2018-06-30 06:14:04',294927961310625793,293,10),(5272,'2018-06-30 06:14:06',294927961310625793,293,19),(5273,'2018-06-30 06:14:08',294927961310625793,293,19),(5274,'2018-06-30 06:14:10',294927961310625793,293,20),(5275,'2018-06-30 06:14:22',294927961310625793,293,14),(5276,'2018-06-30 06:14:23',457300954660995114,293,11),(5277,'2018-06-30 06:14:28',400022926348386315,293,11),(5278,'2018-06-30 06:14:33',400022926348386315,293,9),(5279,'2018-06-30 06:14:34',294927961310625793,293,16),(5280,'2018-06-30 06:43:48',438094660712267778,294,14),(5281,'2018-06-30 06:43:48',460761978135248896,294,13),(5282,'2018-06-30 06:43:50',438094660712267778,294,10),(5283,'2018-06-30 06:43:51',438094660712267778,294,14),(5284,'2018-06-30 06:43:52',460761978135248896,294,10),(5285,'2018-06-30 06:43:52',438094660712267778,294,7),(5286,'2018-06-30 06:43:53',438094660712267778,294,12),(5287,'2018-06-30 06:43:53',438094660712267778,294,10),(5288,'2018-06-30 06:43:55',460761978135248896,294,16),(5289,'2018-06-30 06:44:01',460761978135248896,294,15),(5290,'2018-06-30 06:44:05',460761978135248896,294,8),(5291,'2018-06-30 06:44:09',457300954660995114,294,15),(5292,'2018-06-30 06:44:30',334750493085794304,294,10),(5293,'2018-06-30 06:44:30',334750493085794304,294,14),(5294,'2018-06-30 06:44:31',334750493085794304,294,7),(5295,'2018-06-30 06:44:32',334750493085794304,294,8),(5296,'2018-06-30 06:44:33',334750493085794304,294,14),(5297,'2018-06-30 06:44:43',334750493085794304,294,15),(5298,'2018-06-30 06:45:00',393415098766458892,294,13),(5299,'2018-06-30 06:45:04',393415098766458892,294,15),(5300,'2018-06-30 06:45:07',457300954660995114,294,8),(5301,'2018-06-30 06:45:08',393415098766458892,294,11),(5302,'2018-06-30 06:45:11',393415098766458892,294,16),(5303,'2018-06-30 06:45:15',393415098766458892,294,7),(5304,'2018-06-30 06:46:16',460761978135248896,294,17),(5305,'2018-06-30 07:28:48',460761978135248896,296,11),(5306,'2018-06-30 07:28:51',460761978135248896,296,20),(5307,'2018-06-30 07:28:54',460761978135248896,296,11),(5308,'2018-06-30 07:28:58',460761978135248896,296,8),(5309,'2018-06-30 07:29:01',460761978135248896,296,18),(5310,'2018-06-30 07:29:06',457300954660995114,296,10),(5311,'2018-06-30 07:29:11',457300954660995114,296,7),(5312,'2018-06-30 07:29:24',457300954660995114,296,9),(5313,'2018-06-30 07:29:28',457300954660995114,296,15),(5314,'2018-06-30 07:29:33',457300954660995114,296,9),(5315,'2018-06-30 07:29:49',457300954660995114,296,12),(5316,'2018-06-30 08:13:55',457300954660995114,297,7),(5317,'2018-06-30 08:13:56',325565391478718464,297,10),(5318,'2018-06-30 08:13:59',204933415252787202,297,11),(5319,'2018-06-30 08:14:00',204933415252787202,297,9),(5320,'2018-06-30 08:14:00',457300954660995114,297,10),(5321,'2018-06-30 08:14:01',325565391478718464,297,14),(5322,'2018-06-30 08:14:02',204933415252787202,297,12),(5323,'2018-06-30 08:14:03',204933415252787202,297,10),(5324,'2018-06-30 08:14:04',204933415252787202,297,9),(5325,'2018-06-30 08:14:05',325565391478718464,297,8),(5326,'2018-06-30 08:14:47',460761978135248896,297,20),(5327,'2018-06-30 08:14:51',460761978135248896,297,18),(5328,'2018-06-30 08:14:53',325565391478718464,297,7),(5329,'2018-06-30 08:14:53',460761978135248896,297,15),(5330,'2018-06-30 08:14:56',460761978135248896,297,20),(5331,'2018-06-30 08:14:59',325565391478718464,297,14),(5332,'2018-06-30 08:14:59',460761978135248896,297,15),(5333,'2018-06-30 08:16:23',325565391478718464,297,14),(5334,'2018-06-30 08:16:33',457300954660995114,297,13),(5335,'2018-06-30 08:16:52',460761978135248896,297,10),(5336,'2018-06-30 08:43:46',325565391478718464,298,12),(5337,'2018-06-30 08:43:47',438094660712267778,298,8),(5338,'2018-06-30 08:43:48',325565391478718464,298,14),(5339,'2018-06-30 08:43:49',438094660712267778,298,9),(5340,'2018-06-30 08:43:50',325565391478718464,298,14),(5341,'2018-06-30 08:43:50',400022926348386315,298,16),(5342,'2018-06-30 08:43:50',400022926348386315,298,10),(5343,'2018-06-30 08:43:51',400022926348386315,298,16),(5344,'2018-06-30 08:43:51',400022926348386315,298,7),(5345,'2018-06-30 08:43:52',400022926348386315,298,7),(5346,'2018-06-30 08:43:52',460761978135248896,298,15),(5347,'2018-06-30 08:43:52',438094660712267778,298,8),(5348,'2018-06-30 08:43:52',204933415252787202,298,11),(5349,'2018-06-30 08:43:52',400022926348386315,298,13),(5350,'2018-06-30 08:43:53',325565391478718464,298,10),(5351,'2018-06-30 08:43:54',438094660712267778,298,16),(5352,'2018-06-30 08:43:54',400022926348386315,298,17),(5353,'2018-06-30 08:43:54',438094660712267778,298,16),(5354,'2018-06-30 08:43:59',438094660712267778,298,12),(5355,'2018-06-30 08:44:01',400022926348386315,298,8),(5356,'2018-06-30 08:44:01',204933415252787202,298,11),(5357,'2018-06-30 08:44:04',438094660712267778,298,14),(5358,'2018-06-30 08:44:05',204933415252787202,298,8),(5359,'2018-06-30 08:44:06',204933415252787202,298,10),(5360,'2018-06-30 08:44:08',204933415252787202,298,16),(5361,'2018-06-30 08:44:11',325565391478718464,298,17),(5362,'2018-06-30 08:44:13',400022926348386315,298,16),(5363,'2018-06-30 08:44:24',460761978135248896,298,18),(5364,'2018-06-30 08:44:31',460761978135248896,298,10),(5365,'2018-06-30 08:44:37',460761978135248896,298,10),(5366,'2018-06-30 08:44:42',262771588946984963,298,9),(5367,'2018-06-30 08:44:44',262771588946984963,298,13),(5368,'2018-06-30 08:44:45',262771588946984963,298,12),(5369,'2018-06-30 08:44:47',262771588946984963,298,15),(5370,'2018-06-30 08:44:48',262771588946984963,298,13),(5371,'2018-06-30 08:44:50',262771588946984963,298,16),(5372,'2018-06-30 09:13:48',438094660712267778,299,11),(5373,'2018-06-30 09:13:49',262771588946984963,299,11),(5374,'2018-06-30 09:13:49',390618369545601028,299,17),(5375,'2018-06-30 09:13:50',262771588946984963,299,17),(5376,'2018-06-30 09:13:50',262771588946984963,299,17),(5377,'2018-06-30 09:13:51',262771588946984963,299,8),(5378,'2018-06-30 09:13:51',390618369545601028,299,15),(5379,'2018-06-30 09:13:51',457300954660995114,299,11),(5380,'2018-06-30 09:13:52',262771588946984963,299,7),(5381,'2018-06-30 09:13:53',438094660712267778,299,10),(5382,'2018-06-30 09:13:53',262771588946984963,299,8),(5383,'2018-06-30 09:13:53',400022926348386315,299,18),(5384,'2018-06-30 09:13:53',457300954660995114,299,10),(5385,'2018-06-30 09:13:55',390618369545601028,299,13),(5386,'2018-06-30 09:13:56',424563962303086594,299,11),(5387,'2018-06-30 09:13:57',457300954660995114,299,10),(5388,'2018-06-30 09:13:58',438094660712267778,299,9),(5389,'2018-06-30 09:13:59',390618369545601028,299,13),(5390,'2018-06-30 09:13:59',457300954660995114,299,13),(5391,'2018-06-30 09:14:01',424563962303086594,299,11),(5392,'2018-06-30 09:14:02',400022926348386315,299,12),(5393,'2018-06-30 09:14:02',457300954660995114,299,12),(5394,'2018-06-30 09:14:03',390618369545601028,299,7),(5395,'2018-06-30 09:43:45',262771588946984963,300,16),(5396,'2018-06-30 09:43:46',262771588946984963,300,8),(5397,'2018-06-30 09:43:47',262771588946984963,300,12),(5398,'2018-06-30 09:43:48',262771588946984963,300,14),(5399,'2018-06-30 09:43:49',262771588946984963,300,16),(5400,'2018-06-30 09:43:50',262771588946984963,300,12),(5401,'2018-06-30 09:43:50',272423601922375680,300,7),(5402,'2018-06-30 09:43:51',390618369545601028,300,17),(5403,'2018-06-30 09:43:54',410462121063874561,300,10),(5404,'2018-06-30 09:43:54',390618369545601028,300,14),(5405,'2018-06-30 09:43:55',460761978135248896,300,14),(5406,'2018-06-30 09:43:58',390618369545601028,300,12),(5407,'2018-06-30 09:44:00',390618369545601028,300,9),(5408,'2018-06-30 09:44:03',272423601922375680,300,7),(5409,'2018-06-30 09:44:12',278115594879107074,300,12),(5410,'2018-06-30 09:44:13',390618369545601028,300,15),(5411,'2018-06-30 09:44:15',457300954660995114,300,11),(5412,'2018-06-30 09:44:15',278115594879107074,300,11),(5413,'2018-06-30 09:58:47',306381311923453953,301,10),(5414,'2018-06-30 09:58:50',306381311923453953,301,14),(5415,'2018-06-30 09:58:50',272423601922375680,301,10),(5416,'2018-06-30 09:58:51',438094660712267778,301,7),(5417,'2018-06-30 09:58:52',306381311923453953,301,10),(5418,'2018-06-30 09:58:54',306381311923453953,301,8),(5419,'2018-06-30 09:58:58',306381311923453953,301,14),(5420,'2018-06-30 09:58:58',262771588946984963,301,11),(5421,'2018-06-30 09:58:59',262771588946984963,301,12),(5422,'2018-06-30 09:59:00',262771588946984963,301,12),(5423,'2018-06-30 09:59:02',457300954660995114,301,18),(5424,'2018-06-30 09:59:04',438094660712267778,301,16),(5425,'2018-06-30 09:59:08',457300954660995114,301,14),(5426,'2018-06-30 09:59:11',262771588946984963,301,12),(5427,'2018-06-30 09:59:12',457300954660995114,301,11),(5428,'2018-06-30 09:59:14',262771588946984963,301,13),(5429,'2018-06-30 09:59:15',272423601922375680,301,12),(5430,'2018-06-30 09:59:17',457300954660995114,301,14),(5431,'2018-06-30 09:59:24',438094660712267778,301,14),(5432,'2018-06-30 09:59:27',460761978135248896,301,20),(5433,'2018-06-30 09:59:31',460761978135248896,301,14),(5434,'2018-06-30 09:59:34',460761978135248896,301,15),(5435,'2018-06-30 09:59:37',460761978135248896,301,10),(5436,'2018-06-30 09:59:40',272423601922375680,301,12),(5437,'2018-06-30 09:59:41',460761978135248896,301,21),(5438,'2018-06-30 09:59:48',272423601922375680,301,6),(5439,'2018-06-30 10:00:00',410462121063874561,301,11),(5440,'2018-06-30 10:00:44',272423601922375680,301,13),(5441,'2018-06-30 10:13:46',306381311923453953,302,9),(5442,'2018-06-30 10:13:53',410462121063874561,302,9),(5443,'2018-06-30 10:13:54',334750493085794304,302,9),(5444,'2018-06-30 10:13:57',334750493085794304,302,14),(5445,'2018-06-30 10:13:59',334750493085794304,302,6),(5446,'2018-06-30 10:14:00',262771588946984963,302,17),(5447,'2018-06-30 10:14:00',306381311923453953,302,10),(5448,'2018-06-30 10:14:02',334750493085794304,302,15),(5449,'2018-06-30 10:14:03',306381311923453953,302,12),(5450,'2018-06-30 10:14:05',334750493085794304,302,13),(5451,'2018-06-30 10:14:05',306381311923453953,302,13),(5452,'2018-06-30 10:14:07',306381311923453953,302,13),(5453,'2018-06-30 10:14:08',334750493085794304,302,11),(5454,'2018-06-30 10:14:13',334750493085794304,302,10),(5455,'2018-06-30 10:14:16',334750493085794304,302,7),(5456,'2018-06-30 10:14:18',410462121063874561,302,6),(5457,'2018-06-30 10:14:34',390618369545601028,302,7),(5458,'2018-06-30 10:14:37',390618369545601028,302,17),(5459,'2018-06-30 10:14:57',390618369545601028,302,12),(5460,'2018-06-30 10:14:59',390618369545601028,302,17),(5461,'2018-06-30 10:15:17',334750493085794304,302,15),(5462,'2018-06-30 10:15:33',272423601922375680,302,9),(5463,'2018-06-30 10:28:51',390618369545601028,303,11),(5464,'2018-06-30 10:28:56',390618369545601028,303,17),(5465,'2018-06-30 10:29:12',262771588946984963,303,13),(5466,'2018-06-30 10:29:17',400022926348386315,303,11),(5467,'2018-06-30 10:29:18',400022926348386315,303,7),(5468,'2018-06-30 10:29:19',400022926348386315,303,14),(5469,'2018-06-30 10:29:20',400022926348386315,303,7),(5470,'2018-06-30 10:29:21',400022926348386315,303,9),(5471,'2018-06-30 10:29:22',400022926348386315,303,16),(5472,'2018-06-30 10:29:23',400022926348386315,303,8),(5473,'2018-06-30 10:29:26',400022926348386315,303,15),(5474,'2018-06-30 10:29:27',400022926348386315,303,16),(5475,'2018-06-30 10:29:29',390618369545601028,303,8),(5476,'2018-06-30 10:29:33',390618369545601028,303,14),(5477,'2018-06-30 10:29:55',410462121063874561,303,13),(5478,'2018-06-30 10:29:56',274301199841361920,303,7),(5479,'2018-06-30 10:30:02',393415098766458892,303,8),(5480,'2018-06-30 10:30:02',274301199841361920,303,12),(5481,'2018-06-30 10:30:03',390618369545601028,303,9),(5482,'2018-06-30 10:30:07',274301199841361920,303,10),(5483,'2018-06-30 10:30:09',274301199841361920,303,10),(5484,'2018-06-30 10:30:11',393415098766458892,303,15),(5485,'2018-06-30 10:30:12',274301199841361920,303,14),(5486,'2018-06-30 10:30:12',393415098766458892,303,11),(5487,'2018-06-30 10:30:14',393415098766458892,303,6),(5488,'2018-06-30 10:30:15',393415098766458892,303,11),(5489,'2018-06-30 10:58:49',211232684209340426,304,15),(5490,'2018-06-30 10:58:51',211232684209340426,304,11),(5491,'2018-06-30 10:58:52',211232684209340426,304,11),(5492,'2018-06-30 10:58:53',211232684209340426,304,15),(5493,'2018-06-30 10:58:54',211232684209340426,304,15),(5494,'2018-06-30 10:58:54',393415098766458892,304,12),(5495,'2018-06-30 10:58:54',246788321404125185,304,7),(5496,'2018-06-30 10:58:55',211232684209340426,304,12),(5497,'2018-06-30 10:58:56',211232684209340426,304,11),(5498,'2018-06-30 10:58:56',130765718525444096,304,13),(5499,'2018-06-30 10:58:58',393415098766458892,304,15),(5500,'2018-06-30 10:58:59',246788321404125185,304,16),(5501,'2018-06-30 10:59:02',130765718525444096,304,11),(5502,'2018-06-30 10:59:04',211232684209340426,304,15),(5503,'2018-06-30 10:59:06',211232684209340426,304,11),(5504,'2018-06-30 10:59:06',130765718525444096,304,11),(5505,'2018-06-30 10:59:06',246788321404125185,304,6),(5506,'2018-06-30 10:59:11',393415098766458892,304,12),(5507,'2018-06-30 10:59:12',393415098766458892,304,8),(5508,'2018-06-30 10:59:12',130765718525444096,304,6),(5509,'2018-06-30 10:59:13',246788321404125185,304,7),(5510,'2018-06-30 10:59:14',393415098766458892,304,8),(5511,'2018-06-30 10:59:18',130765718525444096,304,16),(5512,'2018-06-30 10:59:19',246788321404125185,304,7),(5513,'2018-06-30 10:59:36',246788321404125185,304,9),(5514,'2018-06-30 11:13:48',246788321404125185,305,8),(5515,'2018-06-30 11:13:50',410462121063874561,305,11),(5516,'2018-06-30 11:13:51',246788321404125185,305,13),(5517,'2018-06-30 11:13:54',246788321404125185,305,11),(5518,'2018-06-30 11:13:56',246788321404125185,305,9),(5519,'2018-06-30 11:13:56',211232684209340426,305,12),(5520,'2018-06-30 11:13:58',211232684209340426,305,9),(5521,'2018-06-30 11:13:59',410462121063874561,305,7),(5522,'2018-06-30 11:14:00',211232684209340426,305,13),(5523,'2018-06-30 11:14:01',211232684209340426,305,15),(5524,'2018-06-30 11:14:02',246788321404125185,305,12),(5525,'2018-06-30 11:14:03',211232684209340426,305,9),(5526,'2018-06-30 11:14:04',410462121063874561,305,11),(5527,'2018-06-30 11:14:06',246788321404125185,305,9),(5528,'2018-06-30 11:14:07',130765718525444096,305,10),(5529,'2018-06-30 11:14:10',211232684209340426,305,10),(5530,'2018-06-30 11:14:11',211232684209340426,305,8),(5531,'2018-06-30 11:14:14',130765718525444096,305,11),(5532,'2018-06-30 11:14:19',410462121063874561,305,13),(5533,'2018-06-30 11:14:30',410462121063874561,305,12),(5534,'2018-06-30 11:28:57',211232684209340426,306,9),(5535,'2018-06-30 11:29:05',211232684209340426,306,14),(5536,'2018-06-30 11:29:10',246788321404125185,306,9),(5537,'2018-06-30 11:30:56',283395529449406464,306,12),(5538,'2018-06-30 11:44:44',390618369545601028,307,17),(5539,'2018-06-30 11:44:47',390618369545601028,307,11),(5540,'2018-06-30 11:44:50',390618369545601028,307,11),(5541,'2018-06-30 11:45:33',283395529449406464,307,13),(5542,'2018-06-30 12:28:53',218498162745278474,308,12),(5543,'2018-06-30 12:28:58',218498162745278474,308,11),(5544,'2018-06-30 12:29:03',218498162745278474,308,6),(5545,'2018-06-30 12:29:08',218498162745278474,308,10),(5546,'2018-06-30 12:29:14',218498162745278474,308,15),(5547,'2018-06-30 12:29:17',325565391478718464,308,10),(5548,'2018-06-30 12:29:24',325565391478718464,308,15),(5549,'2018-06-30 12:29:26',325565391478718464,308,20),(5550,'2018-06-30 12:29:28',325565391478718464,308,12),(5551,'2018-06-30 12:29:31',325565391478718464,308,18),(5552,'2018-06-30 12:29:31',218498162745278474,308,7),(5553,'2018-06-30 12:29:34',325565391478718464,308,16),(5554,'2018-06-30 12:29:38',325565391478718464,308,11),(5555,'2018-06-30 12:29:48',274301199841361920,308,12),(5556,'2018-06-30 13:15:38',185698541052755968,309,11),(5557,'2018-06-30 13:15:40',185698541052755968,309,7),(5558,'2018-06-30 13:15:42',185698541052755968,309,8),(5559,'2018-06-30 13:15:44',185698541052755968,309,12),(5560,'2018-06-30 13:15:46',185698541052755968,309,8),(5561,'2018-06-30 13:15:48',185698541052755968,309,16),(5562,'2018-06-30 13:16:42',150649616772235264,309,12),(5563,'2018-06-30 13:16:50',150649616772235264,309,14),(5564,'2018-06-30 13:16:50',150649616772235264,309,15),(5565,'2018-06-30 13:16:51',150649616772235264,309,15),(5566,'2018-06-30 13:16:52',150649616772235264,309,13),(5567,'2018-06-30 13:44:03',297748308523483138,310,7),(5568,'2018-06-30 13:44:06',297748308523483138,310,11),(5569,'2018-06-30 13:44:07',218498162745278474,310,11),(5570,'2018-06-30 13:44:08',297748308523483138,310,15),(5571,'2018-06-30 13:44:13',218498162745278474,310,10),(5572,'2018-06-30 13:44:13',297748308523483138,310,15),(5573,'2018-06-30 13:44:18',218498162745278474,310,11),(5574,'2018-06-30 13:44:23',218498162745278474,310,9),(5575,'2018-06-30 13:44:24',297748308523483138,310,14),(5576,'2018-06-30 13:44:38',297748308523483138,310,8),(5577,'2018-06-30 13:44:41',218498162745278474,310,10),(5578,'2018-06-30 13:44:44',274301199841361920,310,9),(5579,'2018-06-30 13:44:46',274301199841361920,310,10),(5580,'2018-06-30 13:44:47',274301199841361920,310,6),(5581,'2018-06-30 13:44:49',274301199841361920,310,8),(5582,'2018-06-30 13:44:50',274301199841361920,310,6),(5583,'2018-06-30 13:44:52',218498162745278474,310,8),(5584,'2018-06-30 13:45:14',218498162745278474,310,11),(5585,'2018-06-30 13:58:46',130765718525444096,311,6),(5586,'2018-06-30 13:58:52',200340393596944384,311,16),(5587,'2018-06-30 13:58:53',130765718525444096,311,9),(5588,'2018-06-30 13:58:54',200340393596944384,311,10),(5589,'2018-06-30 13:58:56',200340393596944384,311,15),(5590,'2018-06-30 13:58:57',200340393596944384,311,12),(5591,'2018-06-30 13:58:59',200340393596944384,311,7),(5592,'2018-06-30 13:59:00',130765718525444096,311,14),(5593,'2018-06-30 13:59:05',200340393596944384,311,9),(5594,'2018-06-30 13:59:06',200340393596944384,311,16),(5595,'2018-06-30 13:59:09',130765718525444096,311,12),(5596,'2018-06-30 13:59:18',130765718525444096,311,13),(5597,'2018-06-30 13:59:25',130765718525444096,311,11),(5598,'2018-06-30 14:00:15',454823752925052930,311,14),(5599,'2018-06-30 14:00:16',454823752925052930,311,10),(5600,'2018-06-30 14:00:17',454823752925052930,311,11),(5601,'2018-06-30 14:00:19',454823752925052930,311,16),(5602,'2018-06-30 14:00:20',454823752925052930,311,11),(5603,'2018-06-30 14:00:27',454823752925052930,311,11),(5604,'2018-06-30 14:00:29',454823752925052930,311,11),(5605,'2018-06-30 14:00:29',218498162745278474,311,9),(5606,'2018-06-30 14:00:30',454823752925052930,311,11),(5607,'2018-06-30 14:00:34',433759248800022532,311,9),(5608,'2018-06-30 14:00:35',433759248800022532,311,6),(5609,'2018-06-30 14:00:36',433759248800022532,311,11),(5610,'2018-06-30 14:00:36',433759248800022532,311,14),(5611,'2018-06-30 14:00:37',433759248800022532,311,11),(5612,'2018-06-30 14:00:38',433759248800022532,311,10),(5613,'2018-06-30 14:00:41',433759248800022532,311,6),(5614,'2018-06-30 14:44:53',163770616581718017,312,11),(5615,'2018-06-30 14:44:56',163770616581718017,312,9),(5616,'2018-06-30 14:44:59',163770616581718017,312,12),(5617,'2018-06-30 14:45:02',163770616581718017,312,12),(5618,'2018-06-30 14:45:05',163770616581718017,312,6),(5619,'2018-06-30 14:45:09',163770616581718017,312,10),(5620,'2018-06-30 14:45:12',163770616581718017,312,9),(5621,'2018-06-30 14:45:15',274301199841361920,312,12),(5622,'2018-06-30 14:45:17',274301199841361920,312,14),(5623,'2018-06-30 14:45:18',274301199841361920,312,6),(5624,'2018-06-30 14:58:46',200340393596944384,313,15),(5625,'2018-06-30 14:58:47',200340393596944384,313,12),(5626,'2018-06-30 14:58:48',200340393596944384,313,15),(5627,'2018-06-30 14:58:48',200340393596944384,313,8),(5628,'2018-06-30 14:58:49',200340393596944384,313,11),(5629,'2018-06-30 14:58:52',163770616581718017,313,10),(5630,'2018-06-30 14:58:54',163770616581718017,313,8),(5631,'2018-06-30 14:58:58',163770616581718017,313,11),(5632,'2018-06-30 14:58:59',410462121063874561,313,8),(5633,'2018-06-30 14:59:05',410462121063874561,313,9),(5634,'2018-06-30 14:59:13',410462121063874561,313,10),(5635,'2018-06-30 14:59:15',163770616581718017,313,15),(5636,'2018-06-30 14:59:18',278115594879107074,313,8),(5637,'2018-06-30 14:59:20',163770616581718017,313,15),(5638,'2018-06-30 14:59:23',278115594879107074,313,8),(5639,'2018-06-30 14:59:23',163770616581718017,313,7),(5640,'2018-06-30 14:59:28',278115594879107074,313,9),(5641,'2018-06-30 14:59:29',433759248800022532,313,14),(5642,'2018-06-30 14:59:30',433759248800022532,313,9),(5643,'2018-06-30 14:59:31',433759248800022532,313,10),(5644,'2018-06-30 14:59:32',278115594879107074,313,11),(5645,'2018-06-30 14:59:32',433759248800022532,313,10),(5646,'2018-06-30 14:59:34',433759248800022532,313,10),(5647,'2018-06-30 14:59:36',433759248800022532,313,10),(5648,'2018-06-30 14:59:38',278115594879107074,313,11),(5649,'2018-06-30 14:59:44',433759248800022532,313,14),(5650,'2018-06-30 14:59:44',410462121063874561,313,11),(5651,'2018-06-30 14:59:46',163770616581718017,313,8),(5652,'2018-06-30 14:59:52',454823752925052930,313,6),(5653,'2018-06-30 14:59:53',454823752925052930,313,16),(5654,'2018-06-30 14:59:54',454823752925052930,313,7),(5655,'2018-06-30 14:59:55',454823752925052930,313,6),(5656,'2018-06-30 14:59:57',454823752925052930,313,11),(5657,'2018-06-30 14:59:58',454823752925052930,313,13),(5658,'2018-06-30 15:00:00',410462121063874561,313,14),(5659,'2018-06-30 15:00:07',454823752925052930,313,14),(5660,'2018-06-30 15:00:08',454823752925052930,313,8),(5661,'2018-06-30 15:00:51',278115594879107074,313,8),(5662,'2018-06-30 15:00:55',410462121063874561,313,11),(5663,'2018-06-30 15:00:57',454823752925052930,313,12),(5664,'2018-06-30 15:13:47',211232684209340426,314,14),(5665,'2018-06-30 15:13:48',211232684209340426,314,9),(5666,'2018-06-30 15:13:49',278115594879107074,314,13),(5667,'2018-06-30 15:13:50',211232684209340426,314,15),(5668,'2018-06-30 15:13:52',294927961310625793,314,20),(5669,'2018-06-30 15:13:53',211232684209340426,314,8),(5670,'2018-06-30 15:13:53',278115594879107074,314,6),(5671,'2018-06-30 15:13:53',150768078714568705,314,11),(5672,'2018-06-30 15:13:53',393415098766458892,314,10),(5673,'2018-06-30 15:13:54',294927961310625793,314,18),(5674,'2018-06-30 15:13:55',278115594879107074,314,14),(5675,'2018-06-30 15:13:56',393415098766458892,314,11),(5676,'2018-06-30 15:13:56',211232684209340426,314,12),(5677,'2018-06-30 15:13:57',294927961310625793,314,19),(5678,'2018-06-30 15:13:58',278115594879107074,314,13),(5679,'2018-06-30 15:13:58',150768078714568705,314,10),(5680,'2018-06-30 15:13:58',393415098766458892,314,14),(5681,'2018-06-30 15:13:59',294927961310625793,314,11),(5682,'2018-06-30 15:58:45',393415098766458892,315,14),(5683,'2018-06-30 15:58:46',438094660712267778,315,15),(5684,'2018-06-30 15:58:47',393415098766458892,315,11),(5685,'2018-06-30 15:58:48',393415098766458892,315,8),(5686,'2018-06-30 15:58:49',438094660712267778,315,12),(5687,'2018-06-30 15:58:49',393415098766458892,315,11),(5688,'2018-06-30 15:58:50',130765718525444096,315,12),(5689,'2018-06-30 15:58:51',393415098766458892,315,10),(5690,'2018-06-30 15:58:52',438094660712267778,315,12),(5691,'2018-06-30 15:58:54',130765718525444096,315,11),(5692,'2018-06-30 15:58:54',393415098766458892,315,11),(5693,'2018-06-30 15:58:55',438094660712267778,315,12),(5694,'2018-06-30 15:58:55',294927961310625793,315,14),(5695,'2018-06-30 15:58:56',294927961310625793,315,9),(5696,'2018-06-30 15:58:56',294927961310625793,315,15),(5697,'2018-06-30 15:58:56',454823752925052930,315,10),(5698,'2018-06-30 15:58:57',294927961310625793,315,20),(5699,'2018-06-30 15:58:57',294927961310625793,315,11),(5700,'2018-06-30 15:58:57',454823752925052930,315,15),(5701,'2018-06-30 16:43:45',200340393596944384,316,13),(5702,'2018-06-30 16:43:46',200340393596944384,316,13),(5703,'2018-06-30 16:43:47',200340393596944384,316,10),(5704,'2018-06-30 16:43:47',200340393596944384,316,13),(5705,'2018-06-30 16:43:48',297748308523483138,316,11),(5706,'2018-06-30 16:43:48',200340393596944384,316,10),(5707,'2018-06-30 16:43:49',424563962303086594,316,16),(5708,'2018-06-30 16:43:49',200340393596944384,316,16),(5709,'2018-06-30 16:43:50',200340393596944384,316,12),(5710,'2018-06-30 16:43:51',200340393596944384,316,10),(5711,'2018-06-30 16:43:52',150768078714568705,316,8),(5712,'2018-06-30 16:43:54',424563962303086594,316,12),(5713,'2018-06-30 16:43:55',297748308523483138,316,10),(5714,'2018-06-30 16:43:55',150768078714568705,316,11),(5715,'2018-06-30 16:43:57',424563962303086594,316,10),(5716,'2018-06-30 16:43:58',297748308523483138,316,15),(5717,'2018-06-30 17:17:02',297748308523483138,317,10),(5718,'2018-06-30 17:17:02',200340393596944384,317,12),(5719,'2018-06-30 17:17:03',200340393596944384,317,14),(5720,'2018-06-30 17:17:04',297748308523483138,317,11),(5721,'2018-06-30 17:17:04',297748308523483138,317,8),(5722,'2018-06-30 17:17:05',297748308523483138,317,11),(5723,'2018-06-30 17:17:05',297748308523483138,317,14),(5724,'2018-06-30 17:17:06',218498162745278474,317,17),(5725,'2018-06-30 17:17:09',262771588946984963,317,16),(5726,'2018-06-30 17:17:10',433759248800022532,317,8),(5727,'2018-06-30 17:17:10',433759248800022532,317,8),(5728,'2018-06-30 17:17:11',433759248800022532,317,7),(5729,'2018-06-30 17:17:11',297748308523483138,317,12),(5730,'2018-06-30 17:17:12',218498162745278474,317,12),(5731,'2018-06-30 17:17:12',297748308523483138,317,16),(5732,'2018-06-30 17:17:12',433759248800022532,317,14),(5733,'2018-06-30 17:17:12',297748308523483138,317,14),(5734,'2018-06-30 17:17:13',433759248800022532,317,6),(5735,'2018-06-30 17:17:16',262771588946984963,317,14),(5736,'2018-06-30 17:17:17',163770616581718017,317,15),(5737,'2018-06-30 17:33:32',454823752925052930,318,12),(5738,'2018-06-30 17:33:32',390618369545601028,318,16),(5739,'2018-06-30 17:33:32',218498162745278474,318,12),(5740,'2018-06-30 17:33:33',454823752925052930,318,13),(5741,'2018-06-30 17:33:35',454823752925052930,318,12),(5742,'2018-06-30 17:33:35',359521958519504926,318,7),(5743,'2018-06-30 17:33:35',390618369545601028,318,11),(5744,'2018-06-30 17:33:36',297748308523483138,318,6),(5745,'2018-06-30 17:33:36',454823752925052930,318,17),(5746,'2018-06-30 17:33:37',390618369545601028,318,16),(5747,'2018-06-30 17:33:38',390618369545601028,318,7),(5748,'2018-06-30 17:33:40',218498162745278474,318,15),(5749,'2018-06-30 17:33:40',297748308523483138,318,13),(5750,'2018-06-30 17:33:42',390618369545601028,318,17),(5751,'2018-06-30 17:33:42',454823752925052930,318,8),(5752,'2018-06-30 17:33:48',218498162745278474,318,8),(5753,'2018-06-30 17:33:51',297748308523483138,318,10),(5754,'2018-06-30 17:33:54',433759248800022532,318,12),(5755,'2018-06-30 17:33:55',433759248800022532,318,7),(5756,'2018-06-30 17:33:57',359521958519504926,318,11),(5757,'2018-06-30 17:33:58',433759248800022532,318,6),(5758,'2018-06-30 17:33:59',359521958519504926,318,15),(5759,'2018-06-30 17:34:00',433759248800022532,318,7),(5760,'2018-06-30 17:34:00',438094660712267778,318,12),(5761,'2018-06-30 17:34:01',359521958519504926,318,6),(5762,'2018-06-30 17:34:02',438094660712267778,318,14),(5763,'2018-06-30 17:34:03',433759248800022532,318,11),(5764,'2018-06-30 17:34:05',438094660712267778,318,15),(5765,'2018-06-30 17:34:11',218498162745278474,318,12),(5766,'2018-06-30 17:34:12',438094660712267778,318,13),(5767,'2018-06-30 17:34:13',359521958519504926,318,14),(5768,'2018-06-30 17:49:45',262771588946984963,319,11),(5769,'2018-06-30 17:49:50',262771588946984963,319,14),(5770,'2018-06-30 17:49:53',262771588946984963,319,11),(5771,'2018-06-30 17:50:25',297748308523483138,319,14),(5772,'2018-06-30 17:50:28',262771588946984963,319,16),(5773,'2018-06-30 17:50:33',218498162745278474,319,10),(5774,'2018-06-30 17:50:37',297748308523483138,319,14),(5775,'2018-06-30 17:50:39',218498162745278474,319,12),(5776,'2018-06-30 17:50:48',297748308523483138,319,11),(5777,'2018-06-30 17:50:48',218498162745278474,319,12),(5778,'2018-06-30 17:51:16',218498162745278474,319,17),(5779,'2018-06-30 17:51:24',286105785052954626,319,11),(5780,'2018-06-30 17:51:27',286105785052954626,319,12),(5781,'2018-06-30 17:51:29',218498162745278474,319,11),(5782,'2018-06-30 17:51:32',286105785052954626,319,13),(5783,'2018-06-30 17:51:33',218498162745278474,319,13),(5784,'2018-06-30 17:51:38',218498162745278474,319,13),(5785,'2018-06-30 18:14:20',211232684209340426,320,15),(5786,'2018-06-30 18:14:21',211232684209340426,320,15),(5787,'2018-06-30 18:14:21',285930195125403650,320,10),(5788,'2018-06-30 18:14:21',457300954660995114,320,9),(5789,'2018-06-30 18:14:22',211232684209340426,320,16),(5790,'2018-06-30 18:14:23',211232684209340426,320,8),(5791,'2018-06-30 18:14:24',285930195125403650,320,14),(5792,'2018-06-30 18:14:25',211232684209340426,320,13),(5793,'2018-06-30 18:14:26',285930195125403650,320,8),(5794,'2018-06-30 18:14:27',457300954660995114,320,13),(5795,'2018-06-30 18:14:29',211232684209340426,320,17),(5796,'2018-06-30 18:14:30',211232684209340426,320,12),(5797,'2018-06-30 18:14:31',457300954660995114,320,13),(5798,'2018-06-30 18:14:31',285930195125403650,320,11),(5799,'2018-06-30 18:14:32',390618369545601028,320,12),(5800,'2018-06-30 18:14:33',211232684209340426,320,9),(5801,'2018-06-30 18:14:34',457300954660995114,320,18),(5802,'2018-06-30 18:14:34',390618369545601028,320,10),(5803,'2018-06-30 18:14:35',211232684209340426,320,9),(5804,'2018-06-30 18:14:35',454823752925052930,320,16),(5805,'2018-06-30 18:14:36',390618369545601028,320,17),(5806,'2018-06-30 18:14:36',285930195125403650,320,6),(5807,'2018-06-30 18:14:37',454823752925052930,320,15),(5808,'2018-06-30 18:14:37',457300954660995114,320,8),(5809,'2018-06-30 18:14:38',390618369545601028,320,8),(5810,'2018-06-30 18:14:40',390618369545601028,320,11),(5811,'2018-06-30 18:14:44',211232684209340426,320,15),(5812,'2018-06-30 18:14:49',390618369545601028,320,12),(5813,'2018-06-30 18:14:53',285930195125403650,320,7),(5814,'2018-06-30 18:14:56',211232684209340426,320,7),(5815,'2018-06-30 18:14:56',433759248800022532,320,11),(5816,'2018-06-30 19:06:21',211232684209340426,321,8),(5817,'2018-06-30 19:06:21',211232684209340426,321,12),(5818,'2018-06-30 19:06:22',211232684209340426,321,14),(5819,'2018-06-30 19:06:24',211232684209340426,321,13),(5820,'2018-06-30 19:06:24',294927961310625793,321,15),(5821,'2018-06-30 19:06:24',142612779377885185,321,12),(5822,'2018-06-30 19:06:24',294927961310625793,321,11),(5823,'2018-06-30 19:06:25',294927961310625793,321,19),(5824,'2018-06-30 19:06:25',142612779377885185,321,11),(5825,'2018-06-30 19:06:25',294927961310625793,321,9),(5826,'2018-06-30 19:06:25',142612779377885185,321,10),(5827,'2018-06-30 19:06:26',262771588946984963,321,11),(5828,'2018-06-30 19:06:26',142612779377885185,321,15),(5829,'2018-06-30 19:06:26',294927961310625793,321,12),(5830,'2018-06-30 19:06:26',142612779377885185,321,12),(5831,'2018-06-30 19:06:27',294927961310625793,321,14),(5832,'2018-06-30 19:06:27',142612779377885185,321,12),(5833,'2018-06-30 19:06:27',294927961310625793,321,9),(5834,'2018-06-30 19:15:17',294927961310625793,322,19),(5835,'2018-06-30 19:15:17',294927961310625793,322,12),(5836,'2018-06-30 19:15:18',211232684209340426,322,14),(5837,'2018-06-30 19:15:19',262771588946984963,322,16),(5838,'2018-06-30 19:15:20',262771588946984963,322,15),(5839,'2018-06-30 19:15:20',294927961310625793,322,23),(5840,'2018-06-30 19:15:20',262771588946984963,322,9),(5841,'2018-06-30 19:15:21',294927961310625793,322,16),(5842,'2018-06-30 19:15:21',294927961310625793,322,11),(5843,'2018-06-30 19:15:21',262771588946984963,322,11),(5844,'2018-06-30 19:15:22',262771588946984963,322,7),(5845,'2018-06-30 19:15:22',218498162745278474,322,13),(5846,'2018-06-30 19:15:23',286105785052954626,322,13),(5847,'2018-06-30 19:15:23',262771588946984963,322,12),(5848,'2018-06-30 19:15:23',286105785052954626,322,14),(5849,'2018-06-30 19:15:24',286105785052954626,322,7),(5850,'2018-06-30 19:15:24',286105785052954626,322,11),(5851,'2018-06-30 19:15:24',286105785052954626,322,8),(5852,'2018-06-30 19:15:28',297748308523483138,322,9),(5853,'2018-06-30 19:15:28',211232684209340426,322,8),(5854,'2018-06-30 19:32:55',200340393596944384,323,11),(5855,'2018-06-30 19:32:56',142612779377885185,323,12),(5856,'2018-06-30 19:32:56',262771588946984963,323,16),(5857,'2018-06-30 19:32:56',142612779377885185,323,17),(5858,'2018-06-30 19:32:56',150768078714568705,323,9),(5859,'2018-06-30 19:32:57',142612779377885185,323,10),(5860,'2018-06-30 19:32:57',200340393596944384,323,11),(5861,'2018-06-30 19:32:57',142612779377885185,323,11),(5862,'2018-06-30 19:32:58',142612779377885185,323,9),(5863,'2018-06-30 19:32:58',142612779377885185,323,12),(5864,'2018-06-30 19:32:58',200340393596944384,323,9),(5865,'2018-06-30 19:32:59',142612779377885185,323,15),(5866,'2018-06-30 19:33:00',200340393596944384,323,12),(5867,'2018-06-30 19:33:00',142612779377885185,323,13),(5868,'2018-06-30 19:33:01',262771588946984963,323,15),(5869,'2018-06-30 19:33:01',200340393596944384,323,19),(5870,'2018-06-30 19:33:01',286105785052954626,323,8),(5871,'2018-06-30 19:33:01',200340393596944384,323,13),(5872,'2018-06-30 19:33:02',200340393596944384,323,19),(5873,'2018-06-30 19:33:03',262771588946984963,323,13),(5874,'2018-06-30 19:33:03',200340393596944384,323,10),(5875,'2018-06-30 19:33:03',130765718525444096,323,16),(5876,'2018-06-30 19:33:05',457300954660995114,323,11),(5877,'2018-06-30 19:33:05',433759248800022532,323,12),(5878,'2018-06-30 19:33:05',286105785052954626,323,11),(5879,'2018-06-30 19:33:06',433759248800022532,323,9),(5880,'2018-06-30 19:33:06',150768078714568705,323,10),(5881,'2018-06-30 19:33:07',130765718525444096,323,11),(5882,'2018-06-30 19:33:07',433759248800022532,323,11),(5883,'2018-06-30 19:33:08',433759248800022532,323,13),(5884,'2018-06-30 19:33:09',286105785052954626,323,9),(5885,'2018-06-30 19:33:09',457300954660995114,323,15),(5886,'2018-06-30 19:33:09',262771588946984963,323,13),(5887,'2018-06-30 19:33:09',211232684209340426,323,8),(5888,'2018-06-30 19:33:09',433759248800022532,323,8),(5889,'2018-06-30 19:33:10',130765718525444096,323,12),(5890,'2018-06-30 19:33:11',433759248800022532,323,14),(5891,'2018-06-30 19:33:11',150768078714568705,323,15),(5892,'2018-06-30 19:33:12',433759248800022532,323,6),(5893,'2018-06-30 19:33:12',211232684209340426,323,11),(5894,'2018-06-30 19:33:13',130765718525444096,323,15),(5895,'2018-06-30 19:33:14',457300954660995114,323,13),(5896,'2018-06-30 19:33:15',454823752925052930,323,15),(5897,'2018-06-30 19:33:15',262771588946984963,323,12),(5898,'2018-06-30 19:33:15',130765718525444096,323,11),(5899,'2018-06-30 19:33:15',150768078714568705,323,8),(5900,'2018-06-30 19:33:16',454823752925052930,323,17),(5901,'2018-06-30 19:51:03',262771588946984963,324,13),(5902,'2018-06-30 19:51:04',438094660712267778,324,13),(5903,'2018-06-30 19:51:04',262771588946984963,324,7),(5904,'2018-06-30 19:51:04',142612779377885185,324,17),(5905,'2018-06-30 19:51:05',262771588946984963,324,13),(5906,'2018-06-30 19:51:05',457300954660995114,324,19),(5907,'2018-06-30 19:51:05',142612779377885185,324,14),(5908,'2018-06-30 19:51:05',438094660712267778,324,16),(5909,'2018-06-30 19:51:05',262771588946984963,324,9),(5910,'2018-06-30 19:51:05',224083099246395403,324,13),(5911,'2018-06-30 19:51:06',211232684209340426,324,8),(5912,'2018-06-30 19:51:06',454823752925052930,324,14),(5913,'2018-06-30 19:51:06',262771588946984963,324,7),(5914,'2018-06-30 19:51:06',142612779377885185,324,12),(5915,'2018-06-30 20:21:57',262771588946984963,325,9),(5916,'2018-06-30 20:21:57',211232684209340426,325,15),(5917,'2018-06-30 20:21:57',294927961310625793,325,15),(5918,'2018-06-30 20:21:58',294927961310625793,325,20),(5919,'2018-06-30 20:21:58',294927961310625793,325,22),(5920,'2018-06-30 20:21:58',211232684209340426,325,8),(5921,'2018-06-30 20:21:58',262771588946984963,325,10),(5922,'2018-06-30 20:21:58',200340393596944384,325,10),(5923,'2018-06-30 20:21:59',200340393596944384,325,15),(5924,'2018-06-30 20:21:59',262771588946984963,325,14),(5925,'2018-06-30 20:21:59',211232684209340426,325,13),(5926,'2018-06-30 20:21:59',200340393596944384,325,11),(5927,'2018-06-30 20:21:59',294927961310625793,325,20),(5928,'2018-06-30 20:21:59',200340393596944384,325,7),(5929,'2018-06-30 20:49:59',200340393596944384,326,8),(5930,'2018-06-30 20:49:59',211232684209340426,326,15),(5931,'2018-06-30 20:49:59',286105785052954626,326,18),(5932,'2018-06-30 20:49:59',200340393596944384,326,9),(5933,'2018-06-30 20:49:59',325565391478718464,326,14),(5934,'2018-06-30 20:50:00',211232684209340426,326,18),(5935,'2018-06-30 20:50:00',457300954660995114,326,12),(5936,'2018-06-30 20:50:00',200340393596944384,326,9),(5937,'2018-06-30 20:50:00',211232684209340426,326,10),(5938,'2018-06-30 20:50:00',200340393596944384,326,18),(5939,'2018-06-30 20:50:01',200340393596944384,326,13),(5940,'2018-06-30 20:50:01',359521958519504926,326,11),(5941,'2018-06-30 20:50:01',390618369545601028,326,12),(5942,'2018-06-30 20:50:01',200340393596944384,326,14),(5943,'2018-06-30 20:50:01',325565391478718464,326,17),(5944,'2018-06-30 20:50:01',211232684209340426,326,10),(5945,'2018-06-30 20:50:02',200340393596944384,326,18),(5946,'2018-06-30 20:50:02',211232684209340426,326,9),(5947,'2018-06-30 20:50:02',200340393596944384,326,14),(5948,'2018-06-30 21:15:15',454823752925052930,327,11),(5949,'2018-06-30 21:15:16',454823752925052930,327,8),(5950,'2018-06-30 21:15:16',454823752925052930,327,12),(5951,'2018-06-30 21:15:17',131968711312539648,327,13),(5952,'2018-06-30 21:15:17',454823752925052930,327,13),(5953,'2018-06-30 21:15:17',211232684209340426,327,11),(5954,'2018-06-30 21:15:17',211232684209340426,327,14),(5955,'2018-06-30 21:15:17',454823752925052930,327,7),(5956,'2018-06-30 21:15:18',211232684209340426,327,13),(5957,'2018-06-30 21:15:18',454823752925052930,327,12),(5958,'2018-06-30 21:15:18',211232684209340426,327,18),(5959,'2018-06-30 21:15:18',211232684209340426,327,11),(5960,'2018-06-30 21:15:18',454823752925052930,327,12),(5961,'2018-06-30 21:15:18',131968711312539648,327,14),(5962,'2018-06-30 21:15:19',211232684209340426,327,14),(5963,'2018-06-30 21:15:19',211232684209340426,327,11),(5964,'2018-06-30 21:15:19',297748308523483138,327,9),(5965,'2018-06-30 21:15:19',297748308523483138,327,13),(5966,'2018-06-30 21:30:08',294927961310625793,328,13),(5967,'2018-06-30 21:30:08',457300954660995114,328,18),(5968,'2018-06-30 21:30:09',200340393596944384,328,12),(5969,'2018-06-30 21:30:09',294927961310625793,328,16),(5970,'2018-06-30 21:30:09',200340393596944384,328,13),(5971,'2018-06-30 21:30:10',200340393596944384,328,17),(5972,'2018-06-30 21:30:10',200340393596944384,328,15),(5973,'2018-06-30 21:30:10',294927961310625793,328,21),(5974,'2018-06-30 21:30:11',200340393596944384,328,17),(5975,'2018-06-30 21:30:11',294927961310625793,328,19),(5976,'2018-06-30 21:30:11',200340393596944384,328,11),(5977,'2018-06-30 21:30:12',294927961310625793,328,14),(5978,'2018-06-30 21:30:12',200340393596944384,328,13),(5979,'2018-06-30 21:30:12',294927961310625793,328,10),(5980,'2018-06-30 21:30:12',200340393596944384,328,18),(5981,'2018-06-30 21:30:13',460761978135248896,328,16),(5982,'2018-06-30 21:30:13',294927961310625793,328,11),(5983,'2018-06-30 21:30:14',211232684209340426,328,16),(5984,'2018-06-30 21:30:14',211232684209340426,328,9),(5985,'2018-06-30 21:30:15',211232684209340426,328,10),(5986,'2018-06-30 21:30:15',211232684209340426,328,18),(5987,'2018-06-30 21:30:15',211232684209340426,328,18),(5988,'2018-06-30 21:30:16',460761978135248896,328,15),(5989,'2018-06-30 21:30:16',438094660712267778,328,10),(5990,'2018-06-30 21:30:17',433759248800022532,328,13),(5991,'2018-06-30 21:30:17',433759248800022532,328,11),(5992,'2018-06-30 21:30:18',262771588946984963,328,9),(5993,'2018-06-30 21:30:18',433759248800022532,328,11),(5994,'2018-06-30 21:30:18',457300954660995114,328,9),(5995,'2018-06-30 21:30:18',460761978135248896,328,22),(5996,'2018-06-30 21:30:18',211232684209340426,328,10),(5997,'2018-06-30 22:20:43',262771588946984963,329,14),(5998,'2018-06-30 22:20:43',283395529449406464,329,14),(5999,'2018-06-30 22:20:43',262771588946984963,329,11),(6000,'2018-06-30 22:20:44',262771588946984963,329,14),(6001,'2018-06-30 22:20:44',457300954660995114,329,11),(6002,'2018-06-30 22:20:44',283395529449406464,329,14),(6003,'2018-06-30 22:20:44',262771588946984963,329,9),(6004,'2018-06-30 22:20:45',200340393596944384,329,16),(6005,'2018-06-30 22:20:45',262771588946984963,329,18),(6006,'2018-06-30 22:20:45',200340393596944384,329,16),(6007,'2018-06-30 22:20:45',262771588946984963,329,12),(6008,'2018-06-30 22:20:45',294927961310625793,329,14),(6009,'2018-06-30 22:20:45',200340393596944384,329,16),(6010,'2018-06-30 22:20:45',211232684209340426,329,11),(6011,'2018-06-30 22:20:45',283395529449406464,329,16),(6012,'2018-06-30 22:20:46',294927961310625793,329,11),(6013,'2018-06-30 22:20:46',211232684209340426,329,7),(6014,'2018-06-30 22:20:46',200340393596944384,329,9),(6015,'2018-06-30 22:20:46',294927961310625793,329,20),(6016,'2018-06-30 22:20:46',211232684209340426,329,11),(6017,'2018-06-30 22:20:46',211232684209340426,329,13),(6018,'2018-06-30 22:20:46',200340393596944384,329,13),(6019,'2018-06-30 22:20:47',294927961310625793,329,17),(6020,'2018-06-30 22:20:47',211232684209340426,329,9),(6021,'2018-06-30 22:20:47',211232684209340426,329,8),(6022,'2018-06-30 22:20:47',294927961310625793,329,12),(6023,'2018-06-30 22:20:47',200340393596944384,329,13),(6024,'2018-06-30 22:20:47',294927961310625793,329,24),(6025,'2018-06-30 22:20:47',211232684209340426,329,13),(6026,'2018-06-30 22:20:47',283395529449406464,329,15),(6027,'2018-06-30 22:20:47',211232684209340426,329,13),(6028,'2018-06-30 22:20:48',200340393596944384,329,17),(6029,'2018-06-30 22:20:48',294927961310625793,329,11),(6030,'2018-06-30 22:20:48',200340393596944384,329,9),(6031,'2018-06-30 22:20:48',283395529449406464,329,23),(6032,'2018-06-30 22:20:50',218498162745278474,329,17),(6033,'2018-06-30 22:29:26',454823752925052930,330,17),(6034,'2018-06-30 22:29:26',454823752925052930,330,13),(6035,'2018-06-30 22:29:27',454823752925052930,330,14),(6036,'2018-06-30 22:29:27',454823752925052930,330,17),(6037,'2018-06-30 22:29:28',454823752925052930,330,16),(6038,'2018-06-30 22:29:28',454823752925052930,330,10),(6039,'2018-06-30 22:29:29',454823752925052930,330,11),(6040,'2018-06-30 22:29:30',283395529449406464,330,9),(6041,'2018-06-30 22:29:30',454823752925052930,330,8),(6042,'2018-06-30 22:29:31',294927961310625793,330,13),(6043,'2018-06-30 22:29:32',294927961310625793,330,11),(6044,'2018-06-30 22:29:32',294927961310625793,330,11),(6045,'2018-06-30 22:29:32',283395529449406464,330,14),(6046,'2018-06-30 22:29:33',294927961310625793,330,15),(6047,'2018-06-30 22:29:34',390618369545601028,330,14),(6048,'2018-06-30 22:29:36',390618369545601028,330,13),(6049,'2018-06-30 22:29:37',424563962303086594,330,16),(6050,'2018-06-30 22:29:37',200340393596944384,330,11),(6051,'2018-06-30 22:29:37',283395529449406464,330,18),(6052,'2018-06-30 22:48:34',262771588946984963,331,16),(6053,'2018-06-30 22:48:35',454823752925052930,331,12),(6054,'2018-06-30 22:48:35',262771588946984963,331,19),(6055,'2018-06-30 22:48:35',283395529449406464,331,12),(6056,'2018-06-30 22:48:35',454823752925052930,331,7),(6057,'2018-06-30 22:48:35',211232684209340426,331,13),(6058,'2018-06-30 22:48:35',262771588946984963,331,12),(6059,'2018-06-30 22:48:36',454823752925052930,331,9),(6060,'2018-06-30 22:48:36',211232684209340426,331,13),(6061,'2018-06-30 22:48:36',262771588946984963,331,12),(6062,'2018-06-30 22:48:36',283395529449406464,331,17),(6063,'2018-06-30 22:48:36',457300954660995114,331,12),(6064,'2018-06-30 22:48:36',211232684209340426,331,12),(6065,'2018-06-30 22:48:36',454823752925052930,331,10),(6066,'2018-06-30 22:48:36',262771588946984963,331,18),(6067,'2018-06-30 22:48:36',211232684209340426,331,7),(6068,'2018-06-30 22:48:37',262771588946984963,331,13),(6069,'2018-06-30 22:48:37',283395529449406464,331,12),(6070,'2018-06-30 22:48:37',454823752925052930,331,17),(6071,'2018-06-30 22:48:37',211232684209340426,331,16),(6072,'2018-06-30 22:48:37',460761978135248896,331,8),(6073,'2018-06-30 22:48:37',211232684209340426,331,12),(6074,'2018-06-30 22:48:37',454823752925052930,331,17),(6075,'2018-06-30 22:48:37',283395529449406464,331,18),(6076,'2018-06-30 22:48:38',211232684209340426,331,18),(6077,'2018-06-30 22:48:38',454823752925052930,331,16),(6078,'2018-06-30 22:48:38',211232684209340426,331,16),(6079,'2018-06-30 23:03:42',454823752925052930,332,12),(6080,'2018-06-30 23:03:43',454823752925052930,332,10),(6081,'2018-06-30 23:03:43',283395529449406464,332,24),(6082,'2018-06-30 23:03:43',457300954660995114,332,9),(6083,'2018-06-30 23:03:43',454823752925052930,332,12),(6084,'2018-06-30 23:03:43',460761978135248896,332,19),(6085,'2018-06-30 23:03:43',438094660712267778,332,11),(6086,'2018-06-30 23:03:44',454823752925052930,332,16),(6087,'2018-06-30 23:03:44',454823752925052930,332,14),(6088,'2018-06-30 23:03:45',283395529449406464,332,12),(6089,'2018-06-30 23:03:45',454823752925052930,332,9),(6090,'2018-06-30 23:03:45',438094660712267778,332,17),(6091,'2018-06-30 23:03:45',454823752925052930,332,13),(6092,'2018-06-30 23:03:46',460761978135248896,332,9),(6093,'2018-06-30 23:03:46',454823752925052930,332,7),(6094,'2018-06-30 23:03:46',283395529449406464,332,10),(6095,'2018-06-30 23:03:48',460761978135248896,332,15),(6096,'2018-06-30 23:03:48',438094660712267778,332,8),(6097,'2018-06-30 23:03:48',283395529449406464,332,23),(6098,'2018-06-30 23:03:50',211232684209340426,332,9),(6099,'2018-06-30 23:03:51',460761978135248896,332,14),(6100,'2018-06-30 23:03:51',283395529449406464,332,22),(6101,'2018-06-30 23:03:51',438094660712267778,332,10),(6102,'2018-06-30 23:03:52',438094660712267778,332,7),(6103,'2018-06-30 23:03:53',438094660712267778,332,14),(6104,'2018-06-30 23:03:53',424563962303086594,332,9),(6105,'2018-06-30 23:03:54',460761978135248896,332,14),(6106,'2018-06-30 23:03:54',438094660712267778,332,11),(6107,'2018-06-30 23:03:55',200340393596944384,332,10),(6108,'2018-06-30 23:03:56',200340393596944384,332,17),(6109,'2018-06-30 23:17:12',433759248800022532,333,14),(6110,'2018-06-30 23:17:13',433759248800022532,333,11),(6111,'2018-06-30 23:17:13',438094660712267778,333,14),(6112,'2018-06-30 23:17:13',433759248800022532,333,13),(6113,'2018-06-30 23:17:14',460761978135248896,333,19),(6114,'2018-06-30 23:17:14',433759248800022532,333,10),(6115,'2018-06-30 23:17:14',433759248800022532,333,7),(6116,'2018-06-30 23:17:15',438094660712267778,333,11),(6117,'2018-06-30 23:17:15',433759248800022532,333,7),(6118,'2018-06-30 23:17:16',433759248800022532,333,14),(6119,'2018-06-30 23:17:16',460761978135248896,333,21),(6120,'2018-06-30 23:17:16',131968711312539648,333,6),(6121,'2018-06-30 23:17:17',438094660712267778,333,12),(6122,'2018-06-30 23:17:18',460761978135248896,333,15),(6123,'2018-06-30 23:17:18',131968711312539648,333,14),(6124,'2018-06-30 23:17:19',438094660712267778,333,12),(6125,'2018-06-30 23:17:19',424563962303086594,333,11),(6126,'2018-06-30 23:17:20',460761978135248896,333,21),(6127,'2018-06-30 23:17:22',460761978135248896,333,21),(6128,'2018-06-30 23:17:23',131968711312539648,333,12),(6129,'2018-06-30 23:17:23',457300954660995114,333,14),(6130,'2018-06-30 23:17:23',438094660712267778,333,17),(6131,'2018-06-30 23:17:24',200340393596944384,333,8),(6132,'2018-06-30 23:17:25',131968711312539648,333,13),(6133,'2018-06-30 23:17:25',200340393596944384,333,15),(6134,'2018-06-30 23:17:26',200340393596944384,333,12),(6135,'2018-06-30 23:17:26',457300954660995114,333,13),(6136,'2018-06-30 23:17:26',438094660712267778,333,13),(6137,'2018-06-30 23:17:27',200340393596944384,333,13),(6138,'2018-06-30 23:17:27',131968711312539648,333,12),(6139,'2018-06-30 23:17:28',424563962303086594,333,9),(6140,'2018-06-30 23:17:28',457300954660995114,333,14),(6141,'2018-06-30 23:17:29',200340393596944384,333,14),(6142,'2018-06-30 23:17:29',200340393596944384,333,12),(6143,'2018-06-30 23:32:40',457300954660995114,334,9),(6144,'2018-06-30 23:32:40',211232684209340426,334,7),(6145,'2018-06-30 23:32:40',454823752925052930,334,9),(6146,'2018-06-30 23:32:41',454823752925052930,334,16),(6147,'2018-06-30 23:32:41',454823752925052930,334,7),(6148,'2018-06-30 23:32:41',283395529449406464,334,23),(6149,'2018-06-30 23:32:42',454823752925052930,334,11),(6150,'2018-06-30 23:32:42',211232684209340426,334,12),(6151,'2018-06-30 23:32:42',454823752925052930,334,9),(6152,'2018-06-30 23:32:42',457300954660995114,334,8),(6153,'2018-06-30 23:32:42',454823752925052930,334,10),(6154,'2018-06-30 23:32:43',211232684209340426,334,14),(6155,'2018-06-30 23:32:43',454823752925052930,334,17),(6156,'2018-06-30 23:32:43',283395529449406464,334,17),(6157,'2018-06-30 23:32:44',454823752925052930,334,13),(6158,'2018-06-30 23:32:44',457300954660995114,334,13),(6159,'2018-06-30 23:32:44',283395529449406464,334,13),(6160,'2018-06-30 23:32:45',283395529449406464,334,19),(6161,'2018-06-30 23:32:45',438094660712267778,334,8),(6162,'2018-06-30 23:32:46',297748308523483138,334,11),(6163,'2018-06-30 23:32:46',457300954660995114,334,14),(6164,'2018-06-30 23:32:46',283395529449406464,334,26),(6165,'2018-06-30 23:32:47',297748308523483138,334,8),(6166,'2018-06-30 23:32:47',438094660712267778,334,15),(6167,'2018-06-30 23:32:48',457300954660995114,334,11),(6168,'2018-06-30 23:32:49',297748308523483138,334,6),(6169,'2018-06-30 23:32:49',297748308523483138,334,15),(6170,'2018-06-30 23:32:50',438094660712267778,334,16),(6171,'2018-06-30 23:32:50',211232684209340426,334,14),(6172,'2018-06-30 23:32:51',457300954660995114,334,14),(6173,'2018-06-30 23:32:52',297748308523483138,334,11),(6174,'2018-06-30 23:32:54',438094660712267778,334,17),(6175,'2018-06-30 23:32:59',433759248800022532,334,7),(6176,'2018-06-30 23:32:59',438094660712267778,334,16),(6177,'2018-06-30 23:50:45',283395529449406464,335,20),(6178,'2018-06-30 23:50:46',262771588946984963,335,10),(6179,'2018-06-30 23:50:46',457300954660995114,335,13),(6180,'2018-06-30 23:50:46',283395529449406464,335,15),(6181,'2018-06-30 23:50:48',262771588946984963,335,14),(6182,'2018-06-30 23:50:48',424563962303086594,335,12),(6183,'2018-06-30 23:50:48',457300954660995114,335,16),(6184,'2018-06-30 23:50:50',457300954660995114,335,16),(6185,'2018-06-30 23:50:52',424563962303086594,335,16),(6186,'2018-06-30 23:50:52',457300954660995114,335,16),(6187,'2018-06-30 23:50:52',283395529449406464,335,16),(6188,'2018-07-01 00:02:06',262771588946984963,336,12),(6189,'2018-07-01 00:02:07',283395529449406464,336,10),(6190,'2018-07-01 00:02:07',262771588946984963,336,18),(6191,'2018-07-01 00:02:09',262771588946984963,336,18),(6192,'2018-07-01 00:02:10',200340393596944384,336,11),(6193,'2018-07-01 00:02:11',457300954660995114,336,11),(6194,'2018-07-01 00:02:11',424563962303086594,336,9),(6195,'2018-07-01 00:02:11',200340393596944384,336,15),(6196,'2018-07-01 00:02:11',283395529449406464,336,26),(6197,'2018-07-01 00:02:12',262771588946984963,336,18),(6198,'2018-07-01 00:02:12',457300954660995114,336,8),(6199,'2018-07-01 00:02:13',200340393596944384,336,9),(6200,'2018-07-01 00:02:14',457300954660995114,336,11),(6201,'2018-07-01 00:02:15',200340393596944384,336,13),(6202,'2018-07-01 00:02:15',262771588946984963,336,8),(6203,'2018-07-01 00:02:15',283395529449406464,336,26),(6204,'2018-07-01 00:46:06',454823752925052930,337,12),(6205,'2018-07-01 00:46:06',454823752925052930,337,18),(6206,'2018-07-01 00:46:06',218498162745278474,337,13),(6207,'2018-07-01 00:46:07',457300954660995114,337,14),(6208,'2018-07-01 00:46:07',283395529449406464,337,13),(6209,'2018-07-01 00:46:07',454823752925052930,337,9),(6210,'2018-07-01 00:46:07',262771588946984963,337,12),(6211,'2018-07-01 00:46:08',454823752925052930,337,9),(6212,'2018-07-01 00:46:08',283395529449406464,337,11),(6213,'2018-07-01 00:46:08',454823752925052930,337,17),(6214,'2018-07-01 00:46:09',454823752925052930,337,13),(6215,'2018-07-01 00:46:09',457300954660995114,337,11),(6216,'2018-07-01 00:46:09',211232684209340426,337,13),(6217,'2018-07-01 00:46:09',454823752925052930,337,16),(6218,'2018-07-01 00:46:10',283395529449406464,337,10),(6219,'2018-07-01 00:46:10',454823752925052930,337,13),(6220,'2018-07-01 00:46:10',262771588946984963,337,8),(6221,'2018-07-01 00:46:11',457300954660995114,337,9),(6222,'2018-07-01 00:46:11',218498162745278474,337,7),(6223,'2018-07-01 00:46:12',283395529449406464,337,11),(6224,'2018-07-01 00:46:12',200340393596944384,337,19),(6225,'2018-07-01 01:07:03',218498162745278474,338,8),(6226,'2018-07-01 01:07:03',262771588946984963,338,15),(6227,'2018-07-01 01:07:03',457300954660995114,338,16),(6228,'2018-07-01 01:07:04',262771588946984963,338,19),(6229,'2018-07-01 01:07:05',262771588946984963,338,18),(6230,'2018-07-01 01:07:07',262771588946984963,338,10),(6231,'2018-07-01 01:07:07',211232684209340426,338,17),(6232,'2018-07-01 01:07:08',218498162745278474,338,13),(6233,'2018-07-01 01:07:09',262771588946984963,338,16),(6234,'2018-07-01 01:07:09',211232684209340426,338,15),(6235,'2018-07-01 01:07:11',262771588946984963,338,12),(6236,'2018-07-01 01:07:11',211232684209340426,338,18),(6237,'2018-07-01 01:07:11',218498162745278474,338,9),(6238,'2018-07-01 01:07:12',262771588946984963,338,16),(6239,'2018-07-01 01:07:14',457300954660995114,338,21),(6240,'2018-07-01 01:07:17',457300954660995114,338,15),(6241,'2018-07-01 01:07:19',218498162745278474,338,16),(6242,'2018-07-01 01:07:20',457300954660995114,338,15),(6243,'2018-07-01 01:07:22',283395529449406464,338,23),(6244,'2018-07-01 01:07:24',218498162745278474,338,11),(6245,'2018-07-01 01:20:40',283395529449406464,339,25),(6246,'2018-07-01 01:20:41',262771588946984963,339,14),(6247,'2018-07-01 01:20:41',218498162745278474,339,14),(6248,'2018-07-01 01:20:41',457300954660995114,339,9),(6249,'2018-07-01 01:20:42',262771588946984963,339,16),(6250,'2018-07-01 01:20:42',283395529449406464,339,22),(6251,'2018-07-01 01:20:43',262771588946984963,339,12),(6252,'2018-07-01 01:20:43',211232684209340426,339,15),(6253,'2018-07-01 01:20:44',460761978135248896,339,17),(6254,'2018-07-01 01:20:46',460761978135248896,339,14),(6255,'2018-07-01 01:20:47',262771588946984963,339,20),(6256,'2018-07-01 01:20:47',457300954660995114,339,15),(6257,'2018-07-01 01:20:48',262771588946984963,339,16),(6258,'2018-07-01 01:20:50',460761978135248896,339,19),(6259,'2018-07-01 01:20:50',457300954660995114,339,22),(6260,'2018-07-01 01:20:51',218498162745278474,339,17),(6261,'2018-07-01 01:20:53',460761978135248896,339,16),(6262,'2018-07-01 01:20:53',283395529449406464,339,15),(6263,'2018-07-01 01:20:54',457300954660995114,339,10),(6264,'2018-07-01 01:20:55',218498162745278474,339,14),(6265,'2018-07-01 01:20:56',460761978135248896,339,12),(6266,'2018-07-01 01:20:56',211232684209340426,339,8),(6267,'2018-07-01 01:20:58',457300954660995114,339,18),(6268,'2018-07-01 01:20:59',211232684209340426,339,17),(6269,'2018-07-01 01:21:00',218498162745278474,339,15),(6270,'2018-07-01 01:21:01',211232684209340426,339,13),(6271,'2018-07-01 01:21:02',457300954660995114,339,21),(6272,'2018-07-01 01:21:07',218498162745278474,339,17),(6273,'2018-07-01 01:21:11',211232684209340426,339,15),(6274,'2018-07-01 01:21:12',211232684209340426,339,14),(6275,'2018-07-01 01:21:14',211232684209340426,339,12),(6276,'2018-07-01 01:21:15',211232684209340426,339,19),(6277,'2018-07-01 01:21:17',211232684209340426,339,7),(6278,'2018-07-01 01:21:18',211232684209340426,339,18),(6279,'2018-07-01 01:21:20',283395529449406464,339,22),(6280,'2018-07-01 01:30:06',283395529449406464,340,26),(6281,'2018-07-01 01:30:07',460761978135248896,340,20),(6282,'2018-07-01 01:30:08',283395529449406464,340,24),(6283,'2018-07-01 01:30:08',262771588946984963,340,8),(6284,'2018-07-01 01:30:09',460761978135248896,340,16),(6285,'2018-07-01 01:30:09',262771588946984963,340,18),(6286,'2018-07-01 01:30:10',388505302292627456,340,7),(6287,'2018-07-01 01:30:11',262771588946984963,340,11),(6288,'2018-07-01 01:30:11',457300954660995114,340,11),(6289,'2018-07-01 01:30:11',283395529449406464,340,24),(6290,'2018-07-01 01:30:12',218498162745278474,340,15),(6291,'2018-07-01 01:30:12',460761978135248896,340,15),(6292,'2018-07-01 01:30:14',262771588946984963,340,12),(6293,'2018-07-01 01:30:14',460761978135248896,340,18),(6294,'2018-07-01 01:30:15',211232684209340426,340,14),(6295,'2018-07-01 01:30:15',388505302292627456,340,7),(6296,'2018-07-01 01:30:15',218498162745278474,340,18),(6297,'2018-07-01 02:06:13',388505302292627456,341,10),(6298,'2018-07-01 02:06:14',457300954660995114,341,21),(6299,'2018-07-01 02:06:14',460761978135248896,341,15),(6300,'2018-07-01 02:06:14',218498162745278474,341,17),(6301,'2018-07-01 02:06:17',460761978135248896,341,21),(6302,'2018-07-01 02:06:18',388505302292627456,341,11),(6303,'2018-07-01 02:06:19',218498162745278474,341,20),(6304,'2018-07-01 02:06:19',457300954660995114,341,9),(6305,'2018-07-01 02:06:19',460761978135248896,341,21),(6306,'2018-07-01 02:06:20',388505302292627456,341,17),(6307,'2018-07-01 02:06:21',457300954660995114,341,16),(6308,'2018-07-01 02:06:22',460761978135248896,341,14),(6309,'2018-07-01 02:06:22',218498162745278474,341,15),(6310,'2018-07-01 02:06:22',388505302292627456,341,15),(6311,'2018-07-01 02:06:25',388505302292627456,341,9),(6312,'2018-07-01 02:06:25',460761978135248896,341,16),(6313,'2018-07-01 02:06:25',286105785052954626,341,18),(6314,'2018-07-01 02:06:26',457300954660995114,341,13),(6315,'2018-07-01 02:06:26',286105785052954626,341,15),(6316,'2018-07-01 02:06:27',388505302292627456,341,10),(6317,'2018-07-01 02:06:27',286105785052954626,341,16),(6318,'2018-07-01 02:06:29',388505302292627456,341,8),(6319,'2018-07-01 02:06:30',457300954660995114,341,10),(6320,'2018-07-01 02:06:30',286105785052954626,341,17),(6321,'2018-07-01 02:06:33',286105785052954626,341,14),(6322,'2018-07-01 02:06:34',388505302292627456,341,17),(6323,'2018-07-01 02:06:35',286105785052954626,341,10),(6324,'2018-07-01 02:06:38',286105785052954626,341,13),(6325,'2018-07-01 02:06:42',286105785052954626,341,15),(6326,'2018-07-01 02:06:44',460761978135248896,341,18),(6327,'2018-07-01 02:06:52',457300954660995114,341,10),(6328,'2018-07-01 02:06:53',218498162745278474,341,19),(6329,'2018-07-01 02:06:56',457300954660995114,341,22),(6330,'2018-07-01 02:06:59',218498162745278474,341,14),(6331,'2018-07-01 02:07:02',433759248800022532,341,10),(6332,'2018-07-01 02:07:03',218498162745278474,341,10),(6333,'2018-07-01 02:07:05',433759248800022532,341,11),(6334,'2018-07-01 02:07:07',433759248800022532,341,9),(6335,'2018-07-01 02:07:08',218498162745278474,341,19),(6336,'2018-07-01 02:52:14',200340393596944384,342,15),(6337,'2018-07-01 02:52:15',388505302292627456,342,13),(6338,'2018-07-01 02:52:15',294927961310625793,342,14),(6339,'2018-07-01 02:52:15',218498162745278474,342,14),(6340,'2018-07-01 02:52:15',200340393596944384,342,13),(6341,'2018-07-01 02:52:16',460761978135248896,342,15),(6342,'2018-07-01 02:52:16',294927961310625793,342,10),(6343,'2018-07-01 02:52:16',294927961310625793,342,10),(6344,'2018-07-01 02:52:16',200340393596944384,342,16),(6345,'2018-07-01 02:52:17',294927961310625793,342,15),(6346,'2018-07-01 02:52:17',294927961310625793,342,16),(6347,'2018-07-01 02:52:18',294927961310625793,342,11),(6348,'2018-07-01 02:52:18',460761978135248896,342,18),(6349,'2018-07-01 02:52:18',200340393596944384,342,13),(6350,'2018-07-01 02:52:18',294927961310625793,342,25),(6351,'2018-07-01 02:52:18',388505302292627456,342,12),(6352,'2018-07-01 02:52:19',457300954660995114,342,17),(6353,'2018-07-01 02:52:19',200340393596944384,342,13),(6354,'2018-07-01 02:52:20',218498162745278474,342,8),(6355,'2018-07-01 02:52:20',460761978135248896,342,21),(6356,'2018-07-01 02:52:21',200340393596944384,342,10),(6357,'2018-07-01 02:52:21',388505302292627456,342,14),(6358,'2018-07-01 02:52:21',457300954660995114,342,15),(6359,'2018-07-01 02:52:22',200340393596944384,342,9),(6360,'2018-07-01 02:52:23',388505302292627456,342,14),(6361,'2018-07-01 02:52:23',457300954660995114,342,22),(6362,'2018-07-01 02:52:23',460761978135248896,342,22),(6363,'2018-07-01 03:14:21',454823752925052930,343,12),(6364,'2018-07-01 03:14:21',454823752925052930,343,18),(6365,'2018-07-01 03:14:22',454823752925052930,343,17),(6366,'2018-07-01 03:14:23',454823752925052930,343,13),(6367,'2018-07-01 03:14:24',454823752925052930,343,13),(6368,'2018-07-01 03:14:25',454823752925052930,343,12),(6369,'2018-07-01 03:14:26',454823752925052930,343,15),(6370,'2018-07-01 03:14:26',454823752925052930,343,12),(6371,'2018-07-01 03:14:30',457300954660995114,343,13),(6372,'2018-07-01 03:14:31',218498162745278474,343,17),(6373,'2018-07-01 03:14:32',200340393596944384,343,16),(6374,'2018-07-01 03:14:32',200340393596944384,343,10),(6375,'2018-07-01 03:14:32',457300954660995114,343,17),(6376,'2018-07-01 03:14:33',200340393596944384,343,9),(6377,'2018-07-01 03:14:34',200340393596944384,343,7),(6378,'2018-07-01 03:14:35',457300954660995114,343,15),(6379,'2018-07-01 03:14:35',218498162745278474,343,19),(6380,'2018-07-01 03:14:35',200340393596944384,343,8),(6381,'2018-07-01 03:14:36',200340393596944384,343,12),(6382,'2018-07-01 03:14:37',457300954660995114,343,23),(6383,'2018-07-01 03:14:37',200340393596944384,343,11),(6384,'2018-07-01 03:14:38',200340393596944384,343,13),(6385,'2018-07-01 03:14:41',218498162745278474,343,9),(6386,'2018-07-01 03:14:41',457300954660995114,343,14),(6387,'2018-07-01 03:14:45',200340393596944384,343,10),(6388,'2018-07-01 03:14:46',457300954660995114,343,10),(6389,'2018-07-01 03:14:59',218498162745278474,343,13),(6390,'2018-07-01 03:15:03',457300954660995114,343,14),(6391,'2018-07-01 03:15:03',218498162745278474,343,18),(6392,'2018-07-01 03:15:09',218498162745278474,343,15),(6393,'2018-07-01 03:15:14',218498162745278474,343,8),(6394,'2018-07-01 04:20:46',200340393596944384,344,13),(6395,'2018-07-01 04:20:47',201102155896193024,344,12),(6396,'2018-07-01 04:20:47',200340393596944384,344,15),(6397,'2018-07-01 04:20:47',201102155896193024,344,12),(6398,'2018-07-01 04:20:47',200340393596944384,344,13),(6399,'2018-07-01 04:20:47',457300954660995114,344,13),(6400,'2018-07-01 04:20:48',201102155896193024,344,14),(6401,'2018-07-01 04:20:48',200340393596944384,344,13),(6402,'2018-07-01 04:20:49',201102155896193024,344,14),(6403,'2018-07-01 04:20:49',200340393596944384,344,15),(6404,'2018-07-01 04:20:49',201102155896193024,344,10),(6405,'2018-07-01 04:20:49',200340393596944384,344,14),(6406,'2018-07-01 04:20:50',460761978135248896,344,15),(6407,'2018-07-01 04:30:42',200340393596944384,345,15),(6408,'2018-07-01 04:30:43',459873273308643328,345,9),(6409,'2018-07-01 04:30:43',459873273308643328,345,16),(6410,'2018-07-01 04:30:43',200340393596944384,345,16),(6411,'2018-07-01 04:30:44',459873273308643328,345,15),(6412,'2018-07-01 04:30:44',200340393596944384,345,7),(6413,'2018-07-01 04:30:44',294927961310625793,345,14),(6414,'2018-07-01 04:30:45',459873273308643328,345,15),(6415,'2018-07-01 04:30:45',200340393596944384,345,14),(6416,'2018-07-01 04:30:46',459873273308643328,345,12),(6417,'2018-07-01 04:30:46',200340393596944384,345,12),(6418,'2018-07-01 04:30:47',459873273308643328,345,12),(6419,'2018-07-01 04:30:47',200340393596944384,345,13),(6420,'2018-07-01 04:30:47',460761978135248896,345,9),(6421,'2018-07-01 04:30:48',200340393596944384,345,17),(6422,'2018-07-01 04:46:58',200340393596944384,346,15),(6423,'2018-07-01 04:46:58',457300954660995114,346,15),(6424,'2018-07-01 04:46:59',200340393596944384,346,18),(6425,'2018-07-01 04:46:59',460761978135248896,346,13),(6426,'2018-07-01 04:47:00',457300954660995114,346,16),(6427,'2018-07-01 04:47:01',200340393596944384,346,17),(6428,'2018-07-01 04:47:02',460761978135248896,346,14),(6429,'2018-07-01 04:47:02',457300954660995114,346,17),(6430,'2018-07-01 04:47:04',200340393596944384,346,17),(6431,'2018-07-01 04:47:04',460761978135248896,346,8),(6432,'2018-07-01 04:47:04',457300954660995114,346,16),(6433,'2018-07-01 04:47:06',200340393596944384,346,10),(6434,'2018-07-01 04:47:06',460761978135248896,346,12),(6435,'2018-07-01 05:06:41',457300954660995114,347,23),(6436,'2018-07-01 05:06:42',200340393596944384,347,13),(6437,'2018-07-01 05:06:43',460761978135248896,347,10),(6438,'2018-07-01 05:06:43',200340393596944384,347,18),(6439,'2018-07-01 05:06:44',457300954660995114,347,22),(6440,'2018-07-01 05:06:45',200340393596944384,347,13),(6441,'2018-07-01 05:06:47',200340393596944384,347,14),(6442,'2018-07-01 05:06:47',460761978135248896,347,15),(6443,'2018-07-01 05:06:48',457300954660995114,347,22),(6444,'2018-07-01 05:06:49',200340393596944384,347,13),(6445,'2018-07-01 05:06:50',460761978135248896,347,13),(6446,'2018-07-01 05:06:51',200340393596944384,347,10),(6447,'2018-07-01 05:06:52',460761978135248896,347,20),(6448,'2018-07-01 05:06:53',457300954660995114,347,9),(6449,'2018-07-01 05:06:53',200340393596944384,347,14),(6450,'2018-07-01 05:06:55',460761978135248896,347,12),(6451,'2018-07-01 05:06:56',200340393596944384,347,11),(6452,'2018-07-01 05:06:57',457300954660995114,347,14),(6453,'2018-07-01 05:07:07',294927961310625793,347,24),(6454,'2018-07-01 05:07:13',457300954660995114,347,9),(6455,'2018-07-01 05:07:16',294927961310625793,347,16),(6456,'2018-07-01 05:07:20',294927961310625793,347,13),(6457,'2018-07-01 05:07:22',294927961310625793,347,19),(6458,'2018-07-01 05:07:24',294927961310625793,347,22),(6459,'2018-07-01 05:07:29',294927961310625793,347,16),(6460,'2018-07-01 05:07:31',294927961310625793,347,12),(6461,'2018-07-01 05:07:33',294927961310625793,347,19),(6462,'2018-07-01 05:08:12',433759248800022532,347,7),(6463,'2018-07-01 05:08:13',433759248800022532,347,10),(6464,'2018-07-01 05:08:14',433759248800022532,347,14),(6465,'2018-07-01 05:08:16',433759248800022532,347,7),(6466,'2018-07-01 05:08:17',433759248800022532,347,12),(6467,'2018-07-01 05:08:17',433759248800022532,347,10),(6468,'2018-07-01 05:08:18',433759248800022532,347,11),(6469,'2018-07-01 05:08:19',433759248800022532,347,10),(6470,'2018-07-01 05:08:32',454823752925052930,347,12),(6471,'2018-07-01 05:08:35',454823752925052930,347,15),(6472,'2018-07-01 05:08:37',454823752925052930,347,13),(6473,'2018-07-01 05:08:38',294927961310625793,347,14),(6474,'2018-07-01 05:08:39',454823752925052930,347,14),(6475,'2018-07-01 05:08:40',454823752925052930,347,9),(6476,'2018-07-01 05:08:42',454823752925052930,347,15),(6477,'2018-07-01 05:14:46',457300954660995114,348,21),(6478,'2018-07-01 05:14:46',200340393596944384,348,12),(6479,'2018-07-01 05:14:47',200340393596944384,348,17),(6480,'2018-07-01 05:14:48',200340393596944384,348,11),(6481,'2018-07-01 05:14:49',457300954660995114,348,20),(6482,'2018-07-01 05:14:52',457300954660995114,348,13),(6483,'2018-07-01 05:14:53',433759248800022532,348,10),(6484,'2018-07-01 05:14:54',433759248800022532,348,9),(6485,'2018-07-01 05:14:59',433759248800022532,348,12),(6486,'2018-07-01 05:15:07',454823752925052930,348,16),(6487,'2018-07-01 05:15:08',454823752925052930,348,13),(6488,'2018-07-01 05:15:09',454823752925052930,348,14),(6489,'2018-07-01 05:15:10',457300954660995114,348,16),(6490,'2018-07-01 05:15:10',454823752925052930,348,12),(6491,'2018-07-01 05:15:12',454823752925052930,348,16),(6492,'2018-07-01 05:15:16',460761978135248896,348,14),(6493,'2018-07-01 05:15:19',460761978135248896,348,15),(6494,'2018-07-01 05:15:41',433759248800022532,348,13),(6495,'2018-07-01 05:15:42',460761978135248896,348,11),(6496,'2018-07-01 05:15:44',200340393596944384,348,9),(6497,'2018-07-01 05:15:45',460761978135248896,348,21),(6498,'2018-07-01 05:31:56',457300954660995114,349,14),(6499,'2018-07-01 05:31:57',460761978135248896,349,20),(6500,'2018-07-01 05:31:59',457300954660995114,349,19),(6501,'2018-07-01 05:31:59',460761978135248896,349,9),(6502,'2018-07-01 05:32:01',457300954660995114,349,16),(6503,'2018-07-01 05:32:02',460761978135248896,349,16),(6504,'2018-07-01 05:32:04',460761978135248896,349,17),(6505,'2018-07-01 05:32:04',457300954660995114,349,17),(6506,'2018-07-01 05:32:07',460761978135248896,349,10),(6507,'2018-07-01 05:32:07',457300954660995114,349,21),(6508,'2018-07-01 05:32:10',457300954660995114,349,16),(6509,'2018-07-01 05:32:13',457300954660995114,349,21),(6510,'2018-07-01 06:48:49',457300954660995114,350,21),(6511,'2018-07-01 06:48:50',460761978135248896,350,11),(6512,'2018-07-01 06:48:52',460761978135248896,350,17),(6513,'2018-07-01 06:48:52',457300954660995114,350,17),(6514,'2018-07-01 06:48:53',325565391478718464,350,13),(6515,'2018-07-01 06:48:54',460761978135248896,350,15),(6516,'2018-07-01 06:48:55',457300954660995114,350,16),(6517,'2018-07-01 06:48:56',325565391478718464,350,13),(6518,'2018-07-01 06:48:57',460761978135248896,350,16),(6519,'2018-07-01 06:48:58',457300954660995114,350,16),(6520,'2018-07-01 06:48:59',325565391478718464,350,21),(6521,'2018-07-01 06:49:00',460761978135248896,350,22),(6522,'2018-07-01 06:49:01',457300954660995114,350,14),(6523,'2018-07-01 06:49:01',325565391478718464,350,15),(6524,'2018-07-01 06:49:02',460761978135248896,350,11),(6525,'2018-07-01 07:01:28',457300954660995114,351,13),(6526,'2018-07-01 07:01:31',460761978135248896,351,13),(6527,'2018-07-01 07:01:32',457300954660995114,351,12),(6528,'2018-07-01 07:01:34',460761978135248896,351,21),(6529,'2018-07-01 07:01:36',457300954660995114,351,11),(6530,'2018-07-01 07:01:49',460761978135248896,351,19),(6531,'2018-07-01 07:01:52',460761978135248896,351,17),(6532,'2018-07-01 07:01:53',457300954660995114,351,20),(6533,'2018-07-01 07:01:54',460761978135248896,351,20),(6534,'2018-07-01 07:01:57',460761978135248896,351,11),(6535,'2018-07-01 07:02:52',457300954660995114,351,16),(6536,'2018-07-01 07:02:55',457300954660995114,351,16),(6537,'2018-07-01 07:03:17',457300954660995114,351,22),(6538,'2018-07-01 07:03:22',457300954660995114,351,23),(6539,'2018-07-01 07:03:28',460761978135248896,351,10),(6540,'2018-07-01 07:16:45',460761978135248896,352,16),(6541,'2018-07-01 07:16:47',460761978135248896,352,14),(6542,'2018-07-01 07:16:50',460761978135248896,352,9),(6543,'2018-07-01 07:16:52',457300954660995114,352,23),(6544,'2018-07-01 08:05:16',325565391478718464,353,13),(6545,'2018-07-01 08:05:17',460761978135248896,353,11),(6546,'2018-07-01 08:05:20',325565391478718464,353,12),(6547,'2018-07-01 08:05:20',460761978135248896,353,10),(6548,'2018-07-01 08:05:21',390618369545601028,353,10),(6549,'2018-07-01 08:05:22',390618369545601028,353,9),(6550,'2018-07-01 08:05:22',325565391478718464,353,21),(6551,'2018-07-01 08:05:22',457300954660995114,353,14),(6552,'2018-07-01 08:05:23',390618369545601028,353,12),(6553,'2018-07-01 08:05:23',460761978135248896,353,18),(6554,'2018-07-01 08:05:25',325565391478718464,353,12),(6555,'2018-07-01 08:05:25',460761978135248896,353,15),(6556,'2018-07-01 08:05:27',325565391478718464,353,11),(6557,'2018-07-01 08:05:28',460761978135248896,353,16),(6558,'2018-07-01 08:05:30',460761978135248896,353,8),(6559,'2018-07-01 08:05:31',390618369545601028,353,12),(6560,'2018-07-01 08:05:32',334750493085794304,353,7),(6561,'2018-07-01 08:05:34',334750493085794304,353,10),(6562,'2018-07-01 08:05:34',457300954660995114,353,13),(6563,'2018-07-01 08:05:36',334750493085794304,353,11),(6564,'2018-07-01 08:05:36',325565391478718464,353,15),(6565,'2018-07-01 08:05:37',390618369545601028,353,8),(6566,'2018-07-01 08:05:38',334750493085794304,353,10),(6567,'2018-07-01 08:05:39',334750493085794304,353,11),(6568,'2018-07-01 08:05:43',185698541052755968,353,15),(6569,'2018-07-01 08:05:43',334750493085794304,353,8),(6570,'2018-07-01 08:05:44',390618369545601028,353,10),(6571,'2018-07-01 08:05:44',325565391478718464,353,11),(6572,'2018-07-01 08:05:44',334750493085794304,353,13),(6573,'2018-07-01 08:05:44',334750493085794304,353,7),(6574,'2018-07-01 08:05:45',185698541052755968,353,14),(6575,'2018-07-01 08:05:47',457300954660995114,353,20),(6576,'2018-07-01 08:17:08',457300954660995114,354,13),(6577,'2018-07-01 08:17:11',457300954660995114,354,18),(6578,'2018-07-01 08:17:12',460761978135248896,354,19),(6579,'2018-07-01 08:17:14',457300954660995114,354,23),(6580,'2018-07-01 08:17:15',460761978135248896,354,15),(6581,'2018-07-01 08:17:17',325565391478718464,354,17),(6582,'2018-07-01 08:17:18',460761978135248896,354,21),(6583,'2018-07-01 08:17:18',457300954660995114,354,17),(6584,'2018-07-01 08:17:21',325565391478718464,354,15),(6585,'2018-07-01 08:17:22',460761978135248896,354,11),(6586,'2018-07-01 08:17:23',457300954660995114,354,23),(6587,'2018-07-01 08:17:27',325565391478718464,354,21),(6588,'2018-07-01 08:17:27',457300954660995114,354,12),(6589,'2018-07-01 08:17:28',460761978135248896,354,19),(6590,'2018-07-01 08:17:31',457300954660995114,354,19),(6591,'2018-07-01 08:17:43',325565391478718464,354,19),(6592,'2018-07-01 08:17:45',325565391478718464,354,15),(6593,'2018-07-01 08:17:46',460761978135248896,354,11),(6594,'2018-07-01 08:17:47',325565391478718464,354,9),(6595,'2018-07-01 08:18:41',460761978135248896,354,16),(6596,'2018-07-01 08:18:53',457300954660995114,354,19),(6597,'2018-07-01 08:18:55',325565391478718464,354,14),(6598,'2018-07-01 09:02:53',457300954660995114,355,20),(6599,'2018-07-01 09:02:57',457300954660995114,355,9),(6600,'2018-07-01 09:03:03',185698541052755968,355,9),(6601,'2018-07-01 09:03:05',185698541052755968,355,11),(6602,'2018-07-01 09:03:06',457300954660995114,355,23),(6603,'2018-07-01 09:03:07',185698541052755968,355,11),(6604,'2018-07-01 09:03:10',185698541052755968,355,9),(6605,'2018-07-01 09:03:11',457300954660995114,355,16),(6606,'2018-07-01 09:03:13',460761978135248896,355,15),(6607,'2018-07-01 09:03:15',185698541052755968,355,13),(6608,'2018-07-01 09:03:16',460761978135248896,355,9),(6609,'2018-07-01 09:03:18',457300954660995114,355,10),(6610,'2018-07-01 09:03:23',185698541052755968,355,13),(6611,'2018-07-01 09:03:29',460761978135248896,355,21),(6612,'2018-07-01 09:03:33',185698541052755968,355,10),(6613,'2018-07-01 09:03:41',457300954660995114,355,12),(6614,'2018-07-01 09:03:52',460761978135248896,355,18),(6615,'2018-07-01 09:04:00',457300954660995114,355,14),(6616,'2018-07-01 09:04:09',460761978135248896,355,14),(6617,'2018-07-01 09:04:29',460761978135248896,355,12),(6618,'2018-07-01 09:04:39',204933415252787202,355,14),(6619,'2018-07-01 09:04:41',204933415252787202,355,13),(6620,'2018-07-01 09:04:43',204933415252787202,355,11),(6621,'2018-07-01 09:04:46',204933415252787202,355,13),(6622,'2018-07-01 09:04:48',204933415252787202,355,12),(6623,'2018-07-01 09:04:50',460761978135248896,355,10),(6624,'2018-07-01 10:05:42',262771588946984963,356,12),(6625,'2018-07-01 10:05:42',457300954660995114,356,20),(6626,'2018-07-01 10:05:43',460761978135248896,356,8),(6627,'2018-07-01 10:05:43',262771588946984963,356,16),(6628,'2018-07-01 10:05:45',457300954660995114,356,13),(6629,'2018-07-01 10:05:45',262771588946984963,356,17),(6630,'2018-07-01 10:05:45',460761978135248896,356,21),(6631,'2018-07-01 10:05:46',262771588946984963,356,19),(6632,'2018-07-01 10:05:47',457300954660995114,356,15),(6633,'2018-07-01 10:05:47',460761978135248896,356,9),(6634,'2018-07-01 10:05:48',262771588946984963,356,14),(6635,'2018-07-01 10:05:49',262771588946984963,356,16),(6636,'2018-07-01 10:17:05',262771588946984963,357,20),(6637,'2018-07-01 10:17:06',457300954660995114,357,11),(6638,'2018-07-01 10:17:06',325565391478718464,357,14),(6639,'2018-07-01 10:17:06',460761978135248896,357,17),(6640,'2018-07-01 10:17:07',262771588946984963,357,13),(6641,'2018-07-01 10:17:07',390618369545601028,357,13),(6642,'2018-07-01 10:17:08',390618369545601028,357,19),(6643,'2018-07-01 10:17:08',460761978135248896,357,19),(6644,'2018-07-01 10:17:08',325565391478718464,357,21),(6645,'2018-07-01 10:17:09',262771588946984963,357,13),(6646,'2018-07-01 10:17:09',424563962303086594,357,9),(6647,'2018-07-01 10:17:10',390618369545601028,357,17),(6648,'2018-07-01 10:17:11',460761978135248896,357,10),(6649,'2018-07-01 10:17:11',262771588946984963,357,14),(6650,'2018-07-01 10:17:11',390618369545601028,357,10),(6651,'2018-07-01 10:17:12',457300954660995114,357,15),(6652,'2018-07-01 10:17:13',460761978135248896,357,19),(6653,'2018-07-01 10:17:13',262771588946984963,357,17),(6654,'2018-07-01 10:17:13',325565391478718464,357,17),(6655,'2018-07-01 10:17:14',424563962303086594,357,17),(6656,'2018-07-01 10:17:15',390618369545601028,357,11),(6657,'2018-07-01 10:17:15',460761978135248896,357,11),(6658,'2018-07-01 10:17:15',262771588946984963,357,17),(6659,'2018-07-01 10:17:16',457300954660995114,357,23),(6660,'2018-07-01 10:37:31',262771588946984963,358,19),(6661,'2018-07-01 10:37:32',457300954660995114,358,20),(6662,'2018-07-01 10:37:32',460761978135248896,358,21),(6663,'2018-07-01 10:37:32',390618369545601028,358,10),(6664,'2018-07-01 10:37:33',390618369545601028,358,13),(6665,'2018-07-01 10:37:33',262771588946984963,358,9),(6666,'2018-07-01 10:37:34',390618369545601028,358,17),(6667,'2018-07-01 10:37:34',457300954660995114,358,14),(6668,'2018-07-01 10:37:35',460761978135248896,358,22),(6669,'2018-07-01 10:37:35',262771588946984963,358,21),(6670,'2018-07-01 10:37:35',438094660712267778,358,7),(6671,'2018-07-01 10:37:36',185698541052755968,358,13),(6672,'2018-07-01 10:37:37',424563962303086594,358,11),(6673,'2018-07-01 10:37:37',262771588946984963,358,10),(6674,'2018-07-01 10:37:37',460761978135248896,358,17),(6675,'2018-07-01 10:37:37',325565391478718464,358,15),(6676,'2018-07-01 10:37:37',185698541052755968,358,11),(6677,'2018-07-01 10:37:38',438094660712267778,358,8),(6678,'2018-07-01 10:37:39',262771588946984963,358,12),(6679,'2018-07-01 10:37:39',325565391478718464,358,19),(6680,'2018-07-01 10:37:40',185698541052755968,358,12),(6681,'2018-07-01 10:37:40',460761978135248896,358,14),(6682,'2018-07-01 10:37:40',390618369545601028,358,15),(6683,'2018-07-01 10:37:40',262771588946984963,358,20),(6684,'2018-07-01 10:37:41',424563962303086594,358,9),(6685,'2018-07-01 10:37:41',438094660712267778,358,12),(6686,'2018-07-01 10:37:42',185698541052755968,358,12),(6687,'2018-07-01 10:37:42',262771588946984963,358,19),(6688,'2018-07-01 10:37:42',325565391478718464,358,14),(6689,'2018-07-01 10:37:43',390618369545601028,358,11),(6690,'2018-07-01 10:37:43',457300954660995114,358,11),(6691,'2018-07-01 10:37:43',460761978135248896,358,17),(6692,'2018-07-01 10:37:44',325565391478718464,358,10),(6693,'2018-07-01 10:37:44',438094660712267778,358,13),(6694,'2018-07-01 10:37:45',185698541052755968,358,11),(6695,'2018-07-01 10:37:45',457300954660995114,358,10),(6696,'2018-07-01 10:37:45',424563962303086594,358,13),(6697,'2018-07-01 10:37:45',460761978135248896,358,13),(6698,'2018-07-01 10:37:46',390618369545601028,358,9),(6699,'2018-07-01 10:37:47',457300954660995114,358,20),(6700,'2018-07-01 10:37:48',460761978135248896,358,10),(6701,'2018-07-01 10:37:49',438094660712267778,358,16),(6702,'2018-07-01 10:37:50',457300954660995114,358,21),(6703,'2018-07-01 11:06:33',262771588946984963,359,18),(6704,'2018-07-01 11:06:35',390618369545601028,359,8),(6705,'2018-07-01 11:06:35',262771588946984963,359,19),(6706,'2018-07-01 11:06:35',131968711312539648,359,16),(6707,'2018-07-01 11:06:35',274301199841361920,359,7),(6708,'2018-07-01 11:06:36',390618369545601028,359,13),(6709,'2018-07-01 11:06:36',274301199841361920,359,6),(6710,'2018-07-01 11:06:36',262771588946984963,359,8),(6711,'2018-07-01 11:06:37',274301199841361920,359,6),(6712,'2018-07-01 11:06:37',274301199841361920,359,10),(6713,'2018-07-01 11:06:37',390618369545601028,359,9),(6714,'2018-07-01 11:06:38',131968711312539648,359,8),(6715,'2018-07-01 11:06:38',274301199841361920,359,9),(6716,'2018-07-01 11:06:38',262771588946984963,359,20),(6717,'2018-07-01 11:06:39',325565391478718464,359,17),(6718,'2018-07-01 11:06:39',390618369545601028,359,14),(6719,'2018-07-01 11:06:40',131968711312539648,359,14),(6720,'2018-07-01 11:06:40',262771588946984963,359,14),(6721,'2018-07-01 11:06:41',390618369545601028,359,18),(6722,'2018-07-01 11:06:41',131968711312539648,359,10),(6723,'2018-07-01 11:06:42',262771588946984963,359,10),(6724,'2018-07-01 11:06:42',390618369545601028,359,19),(6725,'2018-07-01 11:06:43',131968711312539648,359,11),(6726,'2018-07-01 11:06:43',262771588946984963,359,15),(6727,'2018-07-01 11:06:46',325565391478718464,359,21),(6728,'2018-07-01 11:06:49',325565391478718464,359,12),(6729,'2018-07-01 11:06:50',325565391478718464,359,24),(6730,'2018-07-01 11:06:52',325565391478718464,359,22),(6731,'2018-07-01 11:06:54',325565391478718464,359,13),(6732,'2018-07-01 11:06:56',325565391478718464,359,10),(6733,'2018-07-01 11:06:59',306381311923453953,359,10),(6734,'2018-07-01 11:19:06',262771588946984963,360,15),(6735,'2018-07-01 11:19:07',211232684209340426,360,10),(6736,'2018-07-01 11:19:08',211232684209340426,360,18),(6737,'2018-07-01 11:19:08',325565391478718464,360,22),(6738,'2018-07-01 11:19:09',211232684209340426,360,20),(6739,'2018-07-01 11:19:09',262771588946984963,360,8),(6740,'2018-07-01 11:19:11',306381311923453953,360,12),(6741,'2018-07-01 11:19:11',262771588946984963,360,12),(6742,'2018-07-01 11:19:12',325565391478718464,360,17),(6743,'2018-07-01 11:19:12',211232684209340426,360,15),(6744,'2018-07-01 11:19:12',262771588946984963,360,8),(6745,'2018-07-01 11:19:12',211232684209340426,360,9),(6746,'2018-07-01 11:19:13',211232684209340426,360,14),(6747,'2018-07-01 11:19:14',262771588946984963,360,15),(6748,'2018-07-01 11:19:14',306381311923453953,360,10),(6749,'2018-07-01 11:19:14',211232684209340426,360,12),(6750,'2018-07-01 11:19:15',211232684209340426,360,8),(6751,'2018-07-01 11:50:38',262771588946984963,361,20),(6752,'2018-07-01 11:50:39',274301199841361920,361,12),(6753,'2018-07-01 11:50:39',262771588946984963,361,21),(6754,'2018-07-01 11:50:40',274301199841361920,361,8),(6755,'2018-07-01 11:50:40',390618369545601028,361,18),(6756,'2018-07-01 11:50:40',274301199841361920,361,10),(6757,'2018-07-01 11:50:41',390618369545601028,361,12),(6758,'2018-07-01 11:50:41',262771588946984963,361,14),(6759,'2018-07-01 11:50:42',274301199841361920,361,8),(6760,'2018-07-01 11:50:42',390618369545601028,361,20),(6761,'2018-07-01 11:50:43',274301199841361920,361,13),(6762,'2018-07-01 11:50:43',262771588946984963,361,16),(6763,'2018-07-01 11:50:44',274301199841361920,361,8),(6764,'2018-07-01 11:50:45',390618369545601028,361,8),(6765,'2018-07-01 11:50:45',262771588946984963,361,22),(6766,'2018-07-01 11:50:46',390618369545601028,361,10),(6767,'2018-07-01 11:50:46',262771588946984963,361,11),(6768,'2018-07-01 11:50:47',390618369545601028,361,14),(6769,'2018-07-01 11:50:48',262771588946984963,361,10),(6770,'2018-07-01 11:52:28',200340393596944384,361,11),(6771,'2018-07-01 11:52:29',200340393596944384,361,12),(6772,'2018-07-01 11:52:31',200340393596944384,361,13),(6773,'2018-07-01 11:52:31',438094660712267778,361,13),(6774,'2018-07-01 11:52:32',200340393596944384,361,13),(6775,'2018-07-01 12:05:59',262771588946984963,362,20),(6776,'2018-07-01 12:05:59',200340393596944384,362,15),(6777,'2018-07-01 12:05:59',262771588946984963,362,21),(6778,'2018-07-01 12:05:59',211232684209340426,362,9),(6779,'2018-07-01 12:06:00',262771588946984963,362,18),(6780,'2018-07-01 12:06:00',211232684209340426,362,9),(6781,'2018-07-01 12:06:00',274301199841361920,362,14),(6782,'2018-07-01 12:06:00',433759248800022532,362,11),(6783,'2018-07-01 12:06:00',262771588946984963,362,20),(6784,'2018-07-01 12:06:01',262771588946984963,362,18),(6785,'2018-07-01 12:06:01',211232684209340426,362,10),(6786,'2018-07-01 12:06:01',262771588946984963,362,21),(6787,'2018-07-01 12:06:01',274301199841361920,362,10),(6788,'2018-07-01 12:06:02',262771588946984963,362,23),(6789,'2018-07-01 12:06:02',211232684209340426,362,12),(6790,'2018-07-01 12:06:02',200340393596944384,362,15),(6791,'2018-07-01 12:06:02',274301199841361920,362,9),(6792,'2018-07-01 12:06:02',211232684209340426,362,15),(6793,'2018-07-01 12:06:03',211232684209340426,362,9),(6794,'2018-07-01 12:06:04',211232684209340426,362,19),(6795,'2018-07-01 12:06:05',211232684209340426,362,10),(6796,'2018-07-01 12:06:05',200340393596944384,362,12),(6797,'2018-07-01 12:06:06',130765718525444096,362,14),(6798,'2018-07-01 12:06:08',200340393596944384,362,17),(6799,'2018-07-01 12:06:08',274301199841361920,362,10),(6800,'2018-07-01 12:06:09',274301199841361920,362,8),(6801,'2018-07-01 12:06:10',274301199841361920,362,10),(6802,'2018-07-01 12:06:10',200340393596944384,362,18),(6803,'2018-07-01 12:06:10',130765718525444096,362,14),(6804,'2018-07-01 12:06:11',200340393596944384,362,9),(6805,'2018-07-01 12:06:12',130765718525444096,362,9),(6806,'2018-07-01 12:48:49',262771588946984963,363,23),(6807,'2018-07-01 12:48:50',325565391478718464,363,24),(6808,'2018-07-01 12:48:50',262771588946984963,363,18),(6809,'2018-07-01 12:48:50',200340393596944384,363,12),(6810,'2018-07-01 12:48:50',274301199841361920,363,11),(6811,'2018-07-01 12:48:50',262771588946984963,363,18),(6812,'2018-07-01 12:48:51',201102155896193024,363,9),(6813,'2018-07-01 12:48:51',262771588946984963,363,12),(6814,'2018-07-01 12:48:51',274301199841361920,363,12),(6815,'2018-07-01 12:48:51',274301199841361920,363,6),(6816,'2018-07-01 12:48:51',262771588946984963,363,17),(6817,'2018-07-01 12:48:51',274301199841361920,363,11),(6818,'2018-07-01 12:48:52',201102155896193024,363,17),(6819,'2018-07-01 12:48:52',325565391478718464,363,13),(6820,'2018-07-01 12:48:52',142612779377885185,363,13),(6821,'2018-07-01 12:48:52',262771588946984963,363,12),(6822,'2018-07-01 12:48:52',274301199841361920,363,10),(6823,'2018-07-01 12:48:52',274301199841361920,363,10),(6824,'2018-07-01 12:48:52',262771588946984963,363,18),(6825,'2018-07-01 12:48:52',142612779377885185,363,12),(6826,'2018-07-01 12:48:52',201102155896193024,363,14),(6827,'2018-07-01 12:48:53',142612779377885185,363,13),(6828,'2018-07-01 12:48:53',200340393596944384,363,9),(6829,'2018-07-01 12:48:53',211232684209340426,363,20),(6830,'2018-07-01 12:48:53',142612779377885185,363,13),(6831,'2018-07-01 12:48:53',142612779377885185,363,13),(6832,'2018-07-01 12:48:53',211232684209340426,363,19),(6833,'2018-07-01 12:48:54',201102155896193024,363,12),(6834,'2018-07-01 13:04:37',201102155896193024,364,12),(6835,'2018-07-01 13:04:37',262771588946984963,364,21),(6836,'2018-07-01 13:04:37',201102155896193024,364,13),(6837,'2018-07-01 13:04:37',200340393596944384,364,19),(6838,'2018-07-01 13:04:38',262771588946984963,364,10),(6839,'2018-07-01 13:04:38',201102155896193024,364,17),(6840,'2018-07-01 13:04:38',201102155896193024,364,14),(6841,'2018-07-01 13:04:38',262771588946984963,364,19),(6842,'2018-07-01 13:04:38',211232684209340426,364,18),(6843,'2018-07-01 13:04:38',224083099246395403,364,14),(6844,'2018-07-01 13:04:39',201102155896193024,364,11),(6845,'2018-07-01 13:04:39',262771588946984963,364,12),(6846,'2018-07-01 13:04:39',211232684209340426,364,12),(6847,'2018-07-01 13:04:39',262771588946984963,364,10),(6848,'2018-07-01 13:04:39',274301199841361920,364,14),(6849,'2018-07-01 13:04:39',200340393596944384,364,11),(6850,'2018-07-01 13:04:40',262771588946984963,364,21),(6851,'2018-07-01 13:04:40',224083099246395403,364,10),(6852,'2018-07-01 13:04:40',211232684209340426,364,10),(6853,'2018-07-01 13:04:40',274301199841361920,364,10),(6854,'2018-07-01 13:04:40',262771588946984963,364,11),(6855,'2018-07-01 13:04:40',274301199841361920,364,6),(6856,'2018-07-01 13:04:40',325565391478718464,364,14),(6857,'2018-07-01 13:04:40',224083099246395403,364,11),(6858,'2018-07-01 13:04:40',211232684209340426,364,13),(6859,'2018-07-01 13:04:40',459876383431327746,364,8),(6860,'2018-07-01 13:04:40',200340393596944384,364,19),(6861,'2018-07-01 13:04:41',274301199841361920,364,13),(6862,'2018-07-01 13:04:41',224083099246395403,364,13),(6863,'2018-07-01 13:04:41',211232684209340426,364,10),(6864,'2018-07-01 13:04:41',274301199841361920,364,13),(6865,'2018-07-01 13:04:42',200340393596944384,364,10),(6866,'2018-07-01 13:04:42',211232684209340426,364,10),(6867,'2018-07-01 13:04:43',459876383431327746,364,10),(6868,'2018-07-01 13:04:43',224083099246395403,364,7),(6869,'2018-07-01 13:04:43',211232684209340426,364,16),(6870,'2018-07-01 13:15:26',201102155896193024,365,14),(6871,'2018-07-01 13:15:27',201102155896193024,365,14),(6872,'2018-07-01 13:15:27',224083099246395403,365,10),(6873,'2018-07-01 13:15:27',325565391478718464,365,21),(6874,'2018-07-01 13:15:27',211232684209340426,365,14),(6875,'2018-07-01 13:15:28',201102155896193024,365,12),(6876,'2018-07-01 13:15:28',325565391478718464,365,17),(6877,'2018-07-01 13:15:28',200340393596944384,365,9),(6878,'2018-07-01 13:15:28',325565391478718464,365,18),(6879,'2018-07-01 13:15:28',201102155896193024,365,12),(6880,'2018-07-01 13:15:28',325565391478718464,365,23),(6881,'2018-07-01 13:15:28',211232684209340426,365,19),(6882,'2018-07-01 13:15:28',224083099246395403,365,14),(6883,'2018-07-01 13:15:28',325565391478718464,365,23),(6884,'2018-07-01 13:15:29',201102155896193024,365,10),(6885,'2018-07-01 13:15:29',325565391478718464,365,12),(6886,'2018-07-01 13:15:29',262771588946984963,365,23),(6887,'2018-07-01 13:15:29',211232684209340426,365,19),(6888,'2018-07-01 13:15:29',325565391478718464,365,22),(6889,'2018-07-01 13:15:29',224083099246395403,365,10),(6890,'2018-07-01 13:15:30',211232684209340426,365,14),(6891,'2018-07-01 13:15:30',274301199841361920,365,10),(6892,'2018-07-01 13:15:30',224083099246395403,365,8),(6893,'2018-07-01 13:15:30',262771588946984963,365,24),(6894,'2018-07-01 13:15:30',274301199841361920,365,7),(6895,'2018-07-01 13:15:30',459879057295671296,365,10),(6896,'2018-07-01 13:15:30',211232684209340426,365,19),(6897,'2018-07-01 13:15:30',224083099246395403,365,7),(6898,'2018-07-01 13:15:30',274301199841361920,365,13),(6899,'2018-07-01 13:15:30',459879057295671296,365,12),(6900,'2018-07-01 13:15:31',211232684209340426,365,22),(6901,'2018-07-01 13:15:31',262771588946984963,365,18),(6902,'2018-07-01 13:15:31',459879057295671296,365,11),(6903,'2018-07-01 13:15:31',390618369545601028,365,9),(6904,'2018-07-01 13:15:31',262771588946984963,365,20),(6905,'2018-07-01 13:49:16',262771588946984963,366,25),(6906,'2018-07-01 13:49:17',262771588946984963,366,16),(6907,'2018-07-01 13:49:17',224083099246395403,366,7),(6908,'2018-07-01 13:49:17',262771588946984963,366,20),(6909,'2018-07-01 13:49:18',262771588946984963,366,15),(6910,'2018-07-01 13:49:22',224083099246395403,366,10),(6911,'2018-07-01 13:49:22',262771588946984963,366,23),(6912,'2018-07-01 13:49:22',262771588946984963,366,15),(6913,'2018-07-01 13:49:22',224083099246395403,366,14),(6914,'2018-07-01 13:49:22',262771588946984963,366,15),(6915,'2018-07-01 13:49:22',224083099246395403,366,8),(6916,'2018-07-01 13:49:22',201102155896193024,366,13),(6917,'2018-07-01 13:49:22',224083099246395403,366,10),(6918,'2018-07-01 13:49:22',201102155896193024,366,9),(6919,'2018-07-01 13:49:22',201102155896193024,366,7),(6920,'2018-07-01 13:49:22',201102155896193024,366,12),(6921,'2018-07-01 13:49:22',201102155896193024,366,16),(6922,'2018-07-01 13:49:34',297748308523483138,366,15),(6923,'2018-07-01 13:49:35',297748308523483138,366,9),(6924,'2018-07-01 13:49:36',459881667104997376,366,9),(6925,'2018-07-01 13:49:36',297748308523483138,366,16),(6926,'2018-07-01 13:49:37',459881667104997376,366,6),(6927,'2018-07-01 13:49:37',459881667104997376,366,12),(6928,'2018-07-01 13:49:38',297748308523483138,366,14),(6929,'2018-07-01 13:49:38',459881667104997376,366,10),(6930,'2018-07-01 13:49:38',459881667104997376,366,8),(6931,'2018-07-01 13:49:41',459876383431327746,366,9),(6932,'2018-07-01 13:49:41',297748308523483138,366,7),(6933,'2018-07-01 13:49:42',459876383431327746,366,15),(6934,'2018-07-01 13:49:42',459876383431327746,366,11),(6935,'2018-07-01 13:49:43',297748308523483138,366,7),(6936,'2018-07-01 13:49:43',459876383431327746,366,8),(6937,'2018-07-01 13:49:44',459876383431327746,366,11),(6938,'2018-07-01 13:49:46',297748308523483138,366,15),(6939,'2018-07-01 13:49:49',459883167160205313,366,13),(6940,'2018-07-01 13:49:49',459883167160205313,366,9),(6941,'2018-07-01 13:49:50',297748308523483138,366,12),(6942,'2018-07-01 13:49:50',459883167160205313,366,11),(6943,'2018-07-01 14:03:05',459881667104997376,367,13),(6944,'2018-07-01 14:03:05',262771588946984963,367,20),(6945,'2018-07-01 14:03:05',262771588946984963,367,20),(6946,'2018-07-01 14:03:05',211232684209340426,367,18),(6947,'2018-07-01 14:03:06',262771588946984963,367,17),(6948,'2018-07-01 14:03:06',211232684209340426,367,8),(6949,'2018-07-01 14:03:06',262771588946984963,367,17),(6950,'2018-07-01 14:03:07',262771588946984963,367,19),(6951,'2018-07-01 14:03:07',211232684209340426,367,10),(6952,'2018-07-01 14:03:07',262771588946984963,367,11),(6953,'2018-07-01 14:03:07',262771588946984963,367,21),(6954,'2018-07-01 14:03:14',459883167160205313,367,9),(6955,'2018-07-01 14:03:14',459883167160205313,367,10),(6956,'2018-07-01 14:03:15',459883167160205313,367,8),(6957,'2018-07-01 14:03:16',459883167160205313,367,10),(6958,'2018-07-01 14:03:16',459883167160205313,367,14),(6959,'2018-07-01 14:03:17',459883167160205313,367,7),(6960,'2018-07-01 14:03:21',424563962303086594,367,9),(6961,'2018-07-01 14:03:23',459876383431327746,367,8),(6962,'2018-07-01 14:03:24',459876383431327746,367,11),(6963,'2018-07-01 14:03:25',459876383431327746,367,9),(6964,'2018-07-01 14:03:26',211232684209340426,367,12),(6965,'2018-07-01 14:03:26',459876383431327746,367,16),(6966,'2018-07-01 14:03:27',459876383431327746,367,10),(6967,'2018-07-01 14:03:27',211232684209340426,367,21),(6968,'2018-07-01 14:03:30',211232684209340426,367,14),(6969,'2018-07-01 14:20:19',262771588946984963,368,17),(6970,'2018-07-01 14:20:19',262771588946984963,368,19),(6971,'2018-07-01 14:20:20',274301199841361920,368,10),(6972,'2018-07-01 14:20:20',201102155896193024,368,18),(6973,'2018-07-01 14:20:20',262771588946984963,368,18),(6974,'2018-07-01 14:20:20',274301199841361920,368,9),(6975,'2018-07-01 14:20:20',274301199841361920,368,11),(6976,'2018-07-01 14:20:20',262771588946984963,368,23),(6977,'2018-07-01 14:20:20',211232684209340426,368,13),(6978,'2018-07-01 14:20:21',200340393596944384,368,8),(6979,'2018-07-01 14:20:21',274301199841361920,368,10),(6980,'2018-07-01 14:20:21',262771588946984963,368,13),(6981,'2018-07-01 14:20:21',211232684209340426,368,15),(6982,'2018-07-01 15:20:07',200340393596944384,369,15),(6983,'2018-07-01 15:20:07',211232684209340426,369,10),(6984,'2018-07-01 15:20:08',274301199841361920,369,13),(6985,'2018-07-01 15:20:08',200340393596944384,369,13),(6986,'2018-07-01 15:20:08',262771588946984963,369,20),(6987,'2018-07-01 15:20:08',211232684209340426,369,16),(6988,'2018-07-01 15:20:08',274301199841361920,369,11),(6989,'2018-07-01 15:20:08',200340393596944384,369,13),(6990,'2018-07-01 15:20:09',211232684209340426,369,9),(6991,'2018-07-01 15:20:09',262771588946984963,369,12),(6992,'2018-07-01 15:20:09',274301199841361920,369,11),(6993,'2018-07-01 15:20:09',211232684209340426,369,8),(6994,'2018-07-01 15:20:09',262771588946984963,369,25),(6995,'2018-07-01 15:20:09',200340393596944384,369,13),(6996,'2018-07-01 15:20:09',325565391478718464,369,13),(6997,'2018-07-01 15:20:09',274301199841361920,369,10),(6998,'2018-07-01 15:20:09',274301199841361920,369,10),(6999,'2018-07-01 15:20:09',262771588946984963,369,13),(7000,'2018-07-01 15:20:10',211232684209340426,369,16),(7001,'2018-07-01 16:03:16',325565391478718464,370,13),(7002,'2018-07-01 16:03:16',200340393596944384,370,18),(7003,'2018-07-01 16:03:17',390618369545601028,370,19),(7004,'2018-07-01 16:03:17',200340393596944384,370,13),(7005,'2018-07-01 16:03:17',325565391478718464,370,23),(7006,'2018-07-01 16:03:17',274301199841361920,370,11),(7007,'2018-07-01 16:03:18',211232684209340426,370,20),(7008,'2018-07-01 16:03:18',274301199841361920,370,7),(7009,'2018-07-01 16:03:18',390618369545601028,370,14),(7010,'2018-07-01 16:03:18',325565391478718464,370,11),(7011,'2018-07-01 16:03:18',200340393596944384,370,9),(7012,'2018-07-01 16:03:18',274301199841361920,370,14),(7013,'2018-07-01 16:03:18',211232684209340426,370,15),(7014,'2018-07-01 16:03:18',390618369545601028,370,17),(7015,'2018-07-01 16:03:18',200340393596944384,370,20),(7016,'2018-07-01 16:03:18',211232684209340426,370,19),(7017,'2018-07-01 16:03:19',325565391478718464,370,12),(7018,'2018-07-01 16:03:19',390618369545601028,370,8),(7019,'2018-07-01 16:03:19',200340393596944384,370,15),(7020,'2018-07-01 16:32:13',325565391478718464,371,18),(7021,'2018-07-01 16:32:13',274301199841361920,371,14),(7022,'2018-07-01 16:32:14',325565391478718464,371,19),(7023,'2018-07-01 16:32:14',274301199841361920,371,15),(7024,'2018-07-01 16:32:14',274301199841361920,371,13),(7025,'2018-07-01 16:32:14',325565391478718464,371,14),(7026,'2018-07-01 16:32:14',274301199841361920,371,13),(7027,'2018-07-01 16:32:14',200340393596944384,371,14),(7028,'2018-07-01 16:32:14',325565391478718464,371,26),(7029,'2018-07-01 16:32:15',246788321404125185,371,11),(7030,'2018-07-01 16:32:15',274301199841361920,371,13),(7031,'2018-07-01 16:32:15',325565391478718464,371,25),(7032,'2018-07-01 16:32:15',200340393596944384,371,20),(7033,'2018-07-01 16:32:15',274301199841361920,371,15),(7034,'2018-07-01 16:32:15',200340393596944384,371,15),(7035,'2018-07-01 16:32:16',325565391478718464,371,13),(7036,'2018-07-01 16:43:53',246788321404125185,372,13),(7037,'2018-07-01 16:43:54',211232684209340426,372,20),(7038,'2018-07-01 16:43:55',211232684209340426,372,17),(7039,'2018-07-01 16:43:56',246788321404125185,372,7),(7040,'2018-07-01 16:43:56',297748308523483138,372,16),(7041,'2018-07-01 16:43:56',325565391478718464,372,16),(7042,'2018-07-01 16:43:56',325565391478718464,372,13),(7043,'2018-07-01 16:43:57',297748308523483138,372,15),(7044,'2018-07-01 16:43:57',211232684209340426,372,10),(7045,'2018-07-01 16:43:57',325565391478718464,372,16),(7046,'2018-07-01 16:43:57',297748308523483138,372,7),(7047,'2018-07-01 16:43:58',325565391478718464,372,13),(7048,'2018-07-01 16:43:58',211232684209340426,372,12),(7049,'2018-07-01 16:43:58',200340393596944384,372,12),(7050,'2018-07-01 16:43:58',297748308523483138,372,11),(7051,'2018-07-01 16:43:58',325565391478718464,372,21),(7052,'2018-07-01 16:43:58',200340393596944384,372,15),(7053,'2018-07-01 16:43:59',211232684209340426,372,21),(7054,'2018-07-01 16:43:59',200340393596944384,372,14),(7055,'2018-07-01 16:43:59',297748308523483138,372,9),(7056,'2018-07-01 16:43:59',200340393596944384,372,12),(7057,'2018-07-01 16:43:59',325565391478718464,372,26),(7058,'2018-07-01 17:14:20',211232684209340426,373,21),(7059,'2018-07-01 17:14:21',211232684209340426,373,16),(7060,'2018-07-01 17:14:22',211232684209340426,373,13),(7061,'2018-07-01 17:14:22',297748308523483138,373,10),(7062,'2018-07-01 17:14:24',211232684209340426,373,21),(7063,'2018-07-01 17:14:24',200340393596944384,373,14),(7064,'2018-07-01 17:14:24',200340393596944384,373,8),(7065,'2018-07-01 17:14:25',411878868274642945,373,8),(7066,'2018-07-01 17:14:25',297748308523483138,373,7),(7067,'2018-07-01 17:14:25',201102155896193024,373,12),(7068,'2018-07-01 17:14:25',200340393596944384,373,8),(7069,'2018-07-01 17:14:25',211232684209340426,373,14),(7070,'2018-07-01 17:14:26',200340393596944384,373,20),(7071,'2018-07-01 17:14:27',201102155896193024,373,18),(7072,'2018-07-01 17:14:27',211232684209340426,373,17),(7073,'2018-07-01 17:14:27',201102155896193024,373,8),(7074,'2018-07-01 17:14:27',200340393596944384,373,14),(7075,'2018-07-01 17:14:28',411878868274642945,373,10),(7076,'2018-07-01 17:14:28',201102155896193024,373,10),(7077,'2018-07-01 17:14:28',200340393596944384,373,8),(7078,'2018-07-01 17:14:29',201102155896193024,373,8),(7079,'2018-07-01 17:14:29',297748308523483138,373,14),(7080,'2018-07-01 17:14:30',200340393596944384,373,9),(7081,'2018-07-01 17:14:30',297748308523483138,373,8),(7082,'2018-07-01 17:14:30',411878868274642945,373,10),(7083,'2018-07-01 17:14:30',297748308523483138,373,11),(7084,'2018-07-01 17:14:31',200340393596944384,373,17),(7085,'2018-07-01 17:14:31',297748308523483138,373,6),(7086,'2018-07-01 17:14:33',411878868274642945,373,11),(7087,'2018-07-01 17:14:33',297748308523483138,373,15),(7088,'2018-07-01 17:14:33',201102155896193024,373,17),(7089,'2018-07-01 17:14:34',211232684209340426,373,9),(7090,'2018-07-01 17:14:34',297748308523483138,373,11),(7091,'2018-07-01 17:14:34',411878868274642945,373,14),(7092,'2018-07-01 17:14:35',211232684209340426,373,13),(7093,'2018-07-01 17:14:35',433759248800022532,373,8),(7094,'2018-07-01 17:14:35',297748308523483138,373,11),(7095,'2018-07-01 17:14:35',433759248800022532,373,9),(7096,'2018-07-01 17:14:36',211232684209340426,373,16),(7097,'2018-07-01 17:14:36',433759248800022532,373,13),(7098,'2018-07-01 17:14:37',433759248800022532,373,12),(7099,'2018-07-01 17:14:37',211232684209340426,373,13),(7100,'2018-07-01 17:51:45',262771588946984963,374,9),(7101,'2018-07-01 17:51:45',201102155896193024,374,19),(7102,'2018-07-01 17:51:45',294927961310625793,374,24),(7103,'2018-07-01 17:51:45',262771588946984963,374,19),(7104,'2018-07-01 17:51:46',200340393596944384,374,14),(7105,'2018-07-01 17:51:46',200340393596944384,374,15),(7106,'2018-07-01 17:51:46',201102155896193024,374,8),(7107,'2018-07-01 17:51:46',262771588946984963,374,15),(7108,'2018-07-01 17:51:46',457300954660995114,374,12),(7109,'2018-07-01 17:51:46',325565391478718464,374,14),(7110,'2018-07-01 17:51:46',294927961310625793,374,23),(7111,'2018-07-01 17:51:46',201102155896193024,374,19),(7112,'2018-07-01 17:51:46',262771588946984963,374,23),(7113,'2018-07-01 17:51:46',200340393596944384,374,9),(7114,'2018-07-01 17:51:47',294927961310625793,374,14),(7115,'2018-07-01 17:51:47',200340393596944384,374,17),(7116,'2018-07-01 17:51:47',262771588946984963,374,21),(7117,'2018-07-01 17:51:47',201102155896193024,374,13),(7118,'2018-07-01 17:51:47',200340393596944384,374,18),(7119,'2018-07-01 17:51:47',294927961310625793,374,13),(7120,'2018-07-01 17:51:47',262771588946984963,374,9),(7121,'2018-07-01 17:51:47',201102155896193024,374,11),(7122,'2018-07-01 17:51:47',294927961310625793,374,21),(7123,'2018-07-01 17:51:48',262771588946984963,374,13),(7124,'2018-07-01 17:51:48',130765718525444096,374,10),(7125,'2018-07-01 17:51:48',294927961310625793,374,19),(7126,'2018-07-01 17:51:48',200340393596944384,374,13),(7127,'2018-07-01 17:51:48',294927961310625793,374,23),(7128,'2018-07-01 17:51:48',325565391478718464,374,21),(7129,'2018-07-01 17:51:49',294927961310625793,374,22),(7130,'2018-07-01 18:04:33',211232684209340426,375,14),(7131,'2018-07-01 18:04:33',325565391478718464,375,17),(7132,'2018-07-01 18:04:33',211232684209340426,375,12),(7133,'2018-07-01 18:04:33',262771588946984963,375,19),(7134,'2018-07-01 18:04:33',274301199841361920,375,16),(7135,'2018-07-01 18:04:33',211232684209340426,375,14),(7136,'2018-07-01 18:04:34',294927961310625793,375,24),(7137,'2018-07-01 18:04:34',262771588946984963,375,15),(7138,'2018-07-01 18:04:34',325565391478718464,375,17),(7139,'2018-07-01 18:04:34',274301199841361920,375,14),(7140,'2018-07-01 18:04:34',211232684209340426,375,16),(7141,'2018-07-01 19:16:25',200340393596944384,377,19),(7142,'2018-07-01 19:16:25',262771588946984963,377,17),(7143,'2018-07-01 19:16:25',200340393596944384,377,13),(7144,'2018-07-01 19:16:25',211232684209340426,377,11),(7145,'2018-07-01 19:16:25',457300954660995114,377,16),(7146,'2018-07-01 19:16:26',211232684209340426,377,20),(7147,'2018-07-01 19:16:26',262771588946984963,377,17),(7148,'2018-07-01 19:16:26',200340393596944384,377,8),(7149,'2018-07-01 19:16:26',211232684209340426,377,13),(7150,'2018-07-01 19:16:26',262771588946984963,377,20),(7151,'2018-07-01 19:16:26',211232684209340426,377,18),(7152,'2018-07-01 19:16:26',200340393596944384,377,15),(7153,'2018-07-01 19:16:26',262771588946984963,377,11),(7154,'2018-07-01 19:16:26',211232684209340426,377,13),(7155,'2018-07-01 19:16:27',200340393596944384,377,13),(7156,'2018-07-01 19:16:27',262771588946984963,377,22),(7157,'2018-07-01 19:16:27',424563962303086594,377,16),(7158,'2018-07-01 19:16:27',211232684209340426,377,19),(7159,'2018-07-01 19:16:27',200340393596944384,377,11),(7160,'2018-07-01 19:16:27',211232684209340426,377,16),(7161,'2018-07-01 19:16:27',211232684209340426,377,14),(7162,'2018-07-01 19:16:27',200340393596944384,377,16),(7163,'2018-07-01 19:16:28',262771588946984963,377,9),(7164,'2018-07-01 19:16:28',211232684209340426,377,22),(7165,'2018-07-01 19:16:28',306381311923453953,377,15),(7166,'2018-07-01 19:16:28',200340393596944384,377,12),(7167,'2018-07-01 19:16:28',211232684209340426,377,16),(7168,'2018-07-01 19:16:28',262771588946984963,377,23),(7169,'2018-07-01 19:16:29',306381311923453953,377,16),(7170,'2018-07-01 19:16:30',433759248800022532,377,12),(7171,'2018-07-01 19:16:30',433759248800022532,377,12),(7172,'2018-07-01 19:16:30',433759248800022532,377,11),(7173,'2018-07-01 19:16:32',306381311923453953,377,15),(7174,'2018-07-01 19:16:33',306381311923453953,377,13),(7175,'2018-07-01 19:16:33',433759248800022532,377,9),(7176,'2018-07-01 19:16:34',433759248800022532,377,9),(7177,'2018-07-01 19:16:34',457300954660995114,377,23),(7178,'2018-07-01 19:49:29',246788321404125185,378,11),(7179,'2018-07-01 19:49:29',200340393596944384,378,19),(7180,'2018-07-01 19:49:29',200340393596944384,378,10),(7181,'2018-07-01 19:49:30',200340393596944384,378,10),(7182,'2018-07-01 19:49:30',200340393596944384,378,12),(7183,'2018-07-01 19:49:31',211232684209340426,378,15),(7184,'2018-07-01 19:49:32',200340393596944384,378,8),(7185,'2018-07-01 19:49:32',457300954660995114,378,16),(7186,'2018-07-01 19:49:33',211232684209340426,378,13),(7187,'2018-07-01 19:49:33',200340393596944384,378,17),(7188,'2018-07-01 19:49:34',457300954660995114,378,19),(7189,'2018-07-01 19:49:34',201102155896193024,378,15),(7190,'2018-07-01 19:49:34',200340393596944384,378,14),(7191,'2018-07-01 19:49:35',201102155896193024,378,15),(7192,'2018-07-01 19:49:35',200340393596944384,378,14),(7193,'2018-07-01 19:49:35',201102155896193024,378,17),(7194,'2018-07-01 19:49:36',201102155896193024,378,11),(7195,'2018-07-01 19:49:36',457300954660995114,378,18),(7196,'2018-07-01 19:49:36',201102155896193024,378,7),(7197,'2018-07-01 19:49:38',211232684209340426,378,10),(7198,'2018-07-01 19:49:39',211232684209340426,378,15),(7199,'2018-07-01 19:49:40',211232684209340426,378,17),(7200,'2018-07-01 19:49:42',433759248800022532,378,6),(7201,'2018-07-01 19:49:43',433759248800022532,378,6),(7202,'2018-07-01 19:49:44',433759248800022532,378,12),(7203,'2018-07-01 19:49:45',211232684209340426,378,21),(7204,'2018-07-01 19:49:45',433759248800022532,378,14),(7205,'2018-07-01 19:49:46',433759248800022532,378,14),(7206,'2018-07-01 19:49:46',457300954660995114,378,13),(7207,'2018-07-01 19:49:46',433759248800022532,378,6),(7208,'2018-07-01 19:49:47',433759248800022532,378,12),(7209,'2018-07-01 19:49:48',457300954660995114,378,12),(7210,'2018-07-01 19:49:48',433759248800022532,378,11),(7211,'2018-07-01 19:49:51',457300954660995114,378,21),(7212,'2018-07-01 19:49:52',454823752925052930,378,14),(7213,'2018-07-01 20:35:06',201102155896193024,379,15),(7214,'2018-07-01 20:35:07',201102155896193024,379,12),(7215,'2018-07-01 20:35:07',457300954660995114,379,21),(7216,'2018-07-01 20:35:09',457300954660995114,379,11),(7217,'2018-07-01 20:35:12',459884642192064512,379,7),(7218,'2018-07-01 20:35:12',459884642192064512,379,13),(7219,'2018-07-01 20:35:12',457300954660995114,379,9),(7220,'2018-07-01 20:35:13',459884642192064512,379,7),(7221,'2018-07-01 20:35:14',459884642192064512,379,7),(7222,'2018-07-01 20:35:15',457300954660995114,379,16),(7223,'2018-07-01 20:35:17',459884642192064512,379,14),(7224,'2018-07-01 20:35:18',457300954660995114,379,23),(7225,'2018-07-01 20:35:20',459881667104997376,379,9),(7226,'2018-07-01 20:35:21',459881667104997376,379,10),(7227,'2018-07-01 20:35:22',459881667104997376,379,12),(7228,'2018-07-01 20:35:22',457300954660995114,379,17),(7229,'2018-07-01 20:35:22',459881667104997376,379,6),(7230,'2018-07-01 20:35:23',459881667104997376,379,11),(7231,'2018-07-01 20:35:25',457300954660995114,379,21),(7232,'2018-07-01 20:35:29',457300954660995114,379,18),(7233,'2018-07-01 20:35:29',459873273308643328,379,9),(7234,'2018-07-01 20:35:30',459873273308643328,379,11),(7235,'2018-07-01 20:35:31',459873273308643328,379,11),(7236,'2018-07-01 20:35:32',459873273308643328,379,17),(7237,'2018-07-01 20:35:35',459873273308643328,379,12),(7238,'2018-07-01 20:35:36',459873273308643328,379,13),(7239,'2018-07-01 20:35:38',459873273308643328,379,8),(7240,'2018-07-01 20:36:19',262771588946984963,379,26),(7241,'2018-07-01 20:36:20',262771588946984963,379,11),(7242,'2018-07-01 20:36:22',262771588946984963,379,17),(7243,'2018-07-01 20:36:24',262771588946984963,379,12),(7244,'2018-07-01 20:36:26',262771588946984963,379,20),(7245,'2018-07-01 20:36:27',262771588946984963,379,26),(7246,'2018-07-01 20:36:29',262771588946984963,379,21),(7247,'2018-07-01 20:36:39',459884642192064512,379,11),(7248,'2018-07-01 20:36:40',262771588946984963,379,24),(7249,'2018-07-01 20:36:40',459884642192064512,379,6),(7250,'2018-07-01 20:36:53',424563962303086594,379,14),(7251,'2018-07-01 20:37:01',424563962303086594,379,12),(7252,'2018-07-01 20:37:08',424563962303086594,379,16),(7253,'2018-07-01 20:37:23',424563962303086594,379,12),(7254,'2018-07-01 20:37:29',424563962303086594,379,11),(7255,'2018-07-01 20:37:34',424563962303086594,379,7),(7256,'2018-07-01 20:37:56',150649616772235264,379,14),(7257,'2018-07-01 20:38:01',150649616772235264,379,7),(7258,'2018-07-01 20:38:03',150649616772235264,379,14),(7259,'2018-07-01 20:38:31',457300954660995114,379,20),(7260,'2018-07-01 21:06:51',262771588946984963,380,22),(7261,'2018-07-01 21:06:56',262771588946984963,380,22),(7262,'2018-07-01 21:06:58',262771588946984963,380,24),(7263,'2018-07-01 21:07:01',262771588946984963,380,10),(7264,'2018-07-01 21:07:04',262771588946984963,380,26),(7265,'2018-07-01 21:07:06',262771588946984963,380,23),(7266,'2018-07-01 21:07:07',262771588946984963,380,14),(7267,'2018-07-01 21:07:11',274301199841361920,380,17),(7268,'2018-07-01 21:07:11',457300954660995114,380,16),(7269,'2018-07-01 21:07:11',274301199841361920,380,17),(7270,'2018-07-01 21:07:12',274301199841361920,380,16),(7271,'2018-07-01 21:07:14',274301199841361920,380,12),(7272,'2018-07-01 21:07:15',457300954660995114,380,11),(7273,'2018-07-01 21:07:22',457300954660995114,380,16),(7274,'2018-07-01 21:07:23',274301199841361920,380,17),(7275,'2018-07-01 21:07:24',274301199841361920,380,12),(7276,'2018-07-01 21:07:28',457300954660995114,380,14),(7277,'2018-07-01 21:07:37',457300954660995114,380,14),(7278,'2018-07-01 21:07:39',200340393596944384,380,16),(7279,'2018-07-01 21:07:41',200340393596944384,380,9),(7280,'2018-07-01 21:07:45',200340393596944384,380,16),(7281,'2018-07-01 21:07:53',390618369545601028,380,20),(7282,'2018-07-01 21:07:55',390618369545601028,380,9),(7283,'2018-07-01 21:07:56',390618369545601028,380,17),(7284,'2018-07-01 21:07:58',390618369545601028,380,11),(7285,'2018-07-01 21:07:59',390618369545601028,380,19),(7286,'2018-07-01 21:08:00',390618369545601028,380,21),(7287,'2018-07-01 21:08:03',294927961310625793,380,28),(7288,'2018-07-01 21:08:05',294927961310625793,380,10),(7289,'2018-07-01 21:08:07',294927961310625793,380,26),(7290,'2018-07-01 21:08:07',294927961310625793,380,27),(7291,'2018-07-01 21:22:33',454823752925052930,381,18),(7292,'2018-07-01 21:22:34',454823752925052930,381,18),(7293,'2018-07-01 21:22:35',454823752925052930,381,10),(7294,'2018-07-01 21:22:36',454823752925052930,381,14),(7295,'2018-07-01 21:22:37',454823752925052930,381,14),(7296,'2018-07-01 21:22:42',454823752925052930,381,10),(7297,'2018-07-01 21:22:42',454823752925052930,381,11),(7298,'2018-07-01 21:22:44',262771588946984963,381,22),(7299,'2018-07-01 21:22:47',262771588946984963,381,21),(7300,'2018-07-01 21:22:49',201102155896193024,381,11),(7301,'2018-07-01 21:22:49',262771588946984963,381,11),(7302,'2018-07-01 21:22:50',201102155896193024,381,19),(7303,'2018-07-01 21:22:50',433759248800022532,381,10),(7304,'2018-07-01 21:22:50',433759248800022532,381,10),(7305,'2018-07-01 21:22:51',201102155896193024,381,11),(7306,'2018-07-01 21:22:51',262771588946984963,381,18),(7307,'2018-07-01 21:22:51',433759248800022532,381,10),(7308,'2018-07-01 21:22:52',201102155896193024,381,18),(7309,'2018-07-01 21:22:52',433759248800022532,381,11),(7310,'2018-07-01 21:22:53',433759248800022532,381,10),(7311,'2018-07-01 21:22:53',262771588946984963,381,11),(7312,'2018-07-01 21:22:53',201102155896193024,381,11),(7313,'2018-07-01 21:22:53',433759248800022532,381,7),(7314,'2018-07-01 21:22:54',433759248800022532,381,12),(7315,'2018-07-01 21:22:54',262771588946984963,381,20),(7316,'2018-07-01 22:18:26',211232684209340426,382,9),(7317,'2018-07-01 22:18:27',211232684209340426,382,24),(7318,'2018-07-01 22:18:27',294927961310625793,382,25),(7319,'2018-07-01 22:18:28',200340393596944384,382,18),(7320,'2018-07-01 22:18:29',200340393596944384,382,9),(7321,'2018-07-01 22:18:30',294927961310625793,382,25),(7322,'2018-07-01 22:18:32',211232684209340426,382,23),(7323,'2018-07-01 22:18:34',211232684209340426,382,13),(7324,'2018-07-01 22:18:35',294927961310625793,382,16),(7325,'2018-07-01 22:18:35',211232684209340426,382,21),(7326,'2018-07-01 22:18:36',262771588946984963,382,16),(7327,'2018-07-01 22:18:36',211232684209340426,382,18),(7328,'2018-07-01 22:18:37',433759248800022532,382,13),(7329,'2018-07-01 22:18:38',433759248800022532,382,8),(7330,'2018-07-01 22:18:38',294927961310625793,382,25),(7331,'2018-07-01 22:18:38',211232684209340426,382,17),(7332,'2018-07-01 22:18:38',433759248800022532,382,6),(7333,'2018-07-01 22:18:39',433759248800022532,382,11),(7334,'2018-07-01 22:18:39',433759248800022532,382,14),(7335,'2018-07-01 22:18:39',211232684209340426,382,21),(7336,'2018-07-01 22:18:39',262771588946984963,382,16),(7337,'2018-07-01 22:18:40',433759248800022532,382,9),(7338,'2018-07-01 22:18:40',433759248800022532,382,15),(7339,'2018-07-01 22:18:40',211232684209340426,382,18),(7340,'2018-07-01 22:18:40',433759248800022532,382,11),(7341,'2018-07-01 22:18:40',294927961310625793,382,12),(7342,'2018-07-01 22:18:41',274301199841361920,382,13),(7343,'2018-07-01 22:18:41',294927961310625793,382,19),(7344,'2018-07-01 22:18:41',294927961310625793,382,24),(7345,'2018-07-01 22:18:41',262771588946984963,382,17),(7346,'2018-07-01 22:18:41',294927961310625793,382,19),(7347,'2018-07-01 22:18:43',262771588946984963,382,21),(7348,'2018-07-01 22:18:43',454823752925052930,382,8),(7349,'2018-07-01 22:18:44',211232684209340426,382,23),(7350,'2018-07-01 22:18:46',262771588946984963,382,23),(7351,'2018-07-01 22:31:21',297748308523483138,383,14),(7352,'2018-07-01 22:31:22',297748308523483138,383,11),(7353,'2018-07-01 22:31:24',297748308523483138,383,11),(7354,'2018-07-01 22:31:25',297748308523483138,383,11),(7355,'2018-07-01 22:31:26',294927961310625793,383,22),(7356,'2018-07-01 22:31:26',211232684209340426,383,17),(7357,'2018-07-01 22:31:27',433759248800022532,383,14),(7358,'2018-07-01 22:31:27',297748308523483138,383,11),(7359,'2018-07-01 22:31:27',433759248800022532,383,8),(7360,'2018-07-01 22:31:28',433759248800022532,383,8),(7361,'2018-07-01 22:31:28',297748308523483138,383,15),(7362,'2018-07-01 22:31:29',433759248800022532,383,17),(7363,'2018-07-01 22:31:29',294927961310625793,383,18),(7364,'2018-07-01 22:31:30',294927961310625793,383,26),(7365,'2018-07-01 22:31:30',294927961310625793,383,21),(7366,'2018-07-01 22:31:31',294927961310625793,383,26),(7367,'2018-07-01 22:31:31',297748308523483138,383,7),(7368,'2018-07-01 22:31:31',297748308523483138,383,15),(7369,'2018-07-01 22:31:31',294927961310625793,383,20),(7370,'2018-07-01 22:31:34',433759248800022532,383,16),(7371,'2018-07-01 22:31:34',433759248800022532,383,17),(7372,'2018-07-01 22:31:35',211232684209340426,383,24),(7373,'2018-07-01 22:31:35',411878868274642945,383,16),(7374,'2018-07-01 22:31:35',211232684209340426,383,17),(7375,'2018-07-01 22:31:35',411878868274642945,383,12),(7376,'2018-07-01 22:31:36',411878868274642945,383,7),(7377,'2018-07-01 22:31:37',411878868274642945,383,12),(7378,'2018-07-01 23:07:16',454823752925052930,384,10),(7379,'2018-07-01 23:07:16',454823752925052930,384,11),(7380,'2018-07-01 23:07:17',454823752925052930,384,12),(7381,'2018-07-01 23:07:17',454823752925052930,384,19),(7382,'2018-07-01 23:07:18',454823752925052930,384,20),(7383,'2018-07-01 23:07:18',454823752925052930,384,13),(7384,'2018-07-01 23:07:19',454823752925052930,384,16),(7385,'2018-07-01 23:07:19',454823752925052930,384,14),(7386,'2018-07-01 23:07:19',211232684209340426,384,10),(7387,'2018-07-01 23:07:21',433759248800022532,384,17),(7388,'2018-07-01 23:07:22',433759248800022532,384,9),(7389,'2018-07-01 23:07:23',460761978135248896,384,22),(7390,'2018-07-01 23:07:23',433759248800022532,384,15),(7391,'2018-07-01 23:07:24',433759248800022532,384,12),(7392,'2018-07-01 23:07:25',433759248800022532,384,14),(7393,'2018-07-01 23:07:25',460761978135248896,384,23),(7394,'2018-07-01 23:07:26',433759248800022532,384,16),(7395,'2018-07-01 23:07:26',433759248800022532,384,14),(7396,'2018-07-01 23:07:27',433759248800022532,384,13),(7397,'2018-07-01 23:07:28',211232684209340426,384,23),(7398,'2018-07-01 23:07:29',460761978135248896,384,11),(7399,'2018-07-01 23:07:29',200340393596944384,384,17),(7400,'2018-07-01 23:07:30',200340393596944384,384,20),(7401,'2018-07-01 23:07:30',211232684209340426,384,17),(7402,'2018-07-01 23:07:31',200340393596944384,384,13),(7403,'2018-07-01 23:07:31',460761978135248896,384,12),(7404,'2018-07-01 23:07:32',211232684209340426,384,18),(7405,'2018-07-01 23:07:32',200340393596944384,384,13),(7406,'2018-07-01 23:07:32',457300954660995114,384,21),(7407,'2018-07-01 23:07:33',200340393596944384,384,19),(7408,'2018-07-01 23:07:34',274301199841361920,384,10),(7409,'2018-07-01 23:07:34',200340393596944384,384,12),(7410,'2018-07-01 23:07:34',274301199841361920,384,16),(7411,'2018-07-01 23:07:35',274301199841361920,384,12),(7412,'2018-07-01 23:07:35',200340393596944384,384,10),(7413,'2018-07-01 23:07:35',274301199841361920,384,15),(7414,'2018-07-01 23:07:35',460761978135248896,384,10),(7415,'2018-07-01 23:07:35',200340393596944384,384,9),(7416,'2018-07-01 23:07:36',274301199841361920,384,13),(7417,'2018-07-01 23:07:37',274301199841361920,384,17),(7418,'2018-07-01 23:07:38',460761978135248896,384,15),(7419,'2018-07-01 23:07:39',211232684209340426,384,10),(7420,'2018-07-01 23:07:40',211232684209340426,384,25),(7421,'2018-07-01 23:07:41',460761978135248896,384,10),(7422,'2018-07-01 23:07:43',297748308523483138,384,8),(7423,'2018-07-01 23:07:45',297748308523483138,384,12),(7424,'2018-07-01 23:07:46',262771588946984963,384,19),(7425,'2018-07-01 23:07:47',297748308523483138,384,8),(7426,'2018-07-01 23:07:48',457300954660995114,384,15),(7427,'2018-07-01 23:07:49',297748308523483138,384,10),(7428,'2018-07-01 23:07:51',297748308523483138,384,11),(7429,'2018-07-01 23:07:52',262771588946984963,384,11),(7430,'2018-07-01 23:07:52',297748308523483138,384,16),(7431,'2018-07-01 23:07:54',262771588946984963,384,16),(7432,'2018-07-01 23:07:54',457300954660995114,384,12),(7433,'2018-07-01 23:07:55',297748308523483138,384,13),(7434,'2018-07-01 23:07:55',262771588946984963,384,26),(7435,'2018-07-02 00:02:36',454823752925052930,385,19),(7436,'2018-07-02 00:02:36',454823752925052930,385,15),(7437,'2018-07-02 00:02:37',457300954660995114,385,15),(7438,'2018-07-02 00:02:37',454823752925052930,385,22),(7439,'2018-07-02 00:02:37',454823752925052930,385,9),(7440,'2018-07-02 00:02:38',454823752925052930,385,11),(7441,'2018-07-02 00:02:39',454823752925052930,385,11),(7442,'2018-07-02 00:02:39',454823752925052930,385,12),(7443,'2018-07-02 00:02:40',454823752925052930,385,10),(7444,'2018-07-02 00:02:40',460761978135248896,385,21),(7445,'2018-07-02 00:02:42',457300954660995114,385,19),(7446,'2018-07-02 00:02:46',262771588946984963,385,16),(7447,'2018-07-02 00:02:47',457300954660995114,385,23),(7448,'2018-07-02 00:02:48',262771588946984963,385,24),(7449,'2018-07-02 00:02:50',262771588946984963,385,19),(7450,'2018-07-02 00:02:51',460761978135248896,385,19),(7451,'2018-07-02 00:02:51',200340393596944384,385,21),(7452,'2018-07-02 00:02:52',457300954660995114,385,12),(7453,'2018-07-02 00:02:52',262771588946984963,385,18),(7454,'2018-07-02 00:02:54',262771588946984963,385,15),(7455,'2018-07-02 00:02:55',200340393596944384,385,19),(7456,'2018-07-02 00:02:55',460761978135248896,385,16),(7457,'2018-07-02 00:02:55',262771588946984963,385,19),(7458,'2018-07-02 00:02:56',457300954660995114,385,12),(7459,'2018-07-02 00:02:57',262771588946984963,385,13),(7460,'2018-07-02 00:03:02',200340393596944384,385,17),(7461,'2018-07-02 00:03:03',457300954660995114,385,9),(7462,'2018-07-02 00:03:04',200340393596944384,385,22),(7463,'2018-07-02 00:03:06',460761978135248896,385,9),(7464,'2018-07-02 00:03:07',200340393596944384,385,16),(7465,'2018-07-02 00:03:08',294927961310625793,385,20),(7466,'2018-07-02 00:03:09',457300954660995114,385,10),(7467,'2018-07-02 00:03:10',200340393596944384,385,15),(7468,'2018-07-02 00:51:54',297748308523483138,386,10),(7469,'2018-07-02 00:52:03',297748308523483138,386,14),(7470,'2018-07-02 00:52:04',297748308523483138,386,10),(7471,'2018-07-02 00:52:05',297748308523483138,386,12),(7472,'2018-07-02 00:52:06',297748308523483138,386,12),(7473,'2018-07-02 00:52:09',297748308523483138,386,17),(7474,'2018-07-02 00:52:17',297748308523483138,386,8),(7475,'2018-07-02 00:52:18',297748308523483138,386,12),(7476,'2018-07-02 00:52:41',131968711312539648,386,10),(7477,'2018-07-02 00:52:44',131968711312539648,386,9),(7478,'2018-07-02 00:52:45',131968711312539648,386,14),(7479,'2018-07-02 00:52:47',131968711312539648,386,13),(7480,'2018-07-02 00:52:49',131968711312539648,386,8),(7481,'2018-07-02 00:53:19',297748308523483138,386,16),(7482,'2018-07-02 00:53:37',286105785052954626,386,9),(7483,'2018-07-02 00:53:38',286105785052954626,386,14),(7484,'2018-07-02 00:53:53',286105785052954626,386,14),(7485,'2018-07-02 00:53:55',286105785052954626,386,12),(7486,'2018-07-02 00:53:57',286105785052954626,386,17),(7487,'2018-07-02 00:54:05',286105785052954626,386,13),(7488,'2018-07-02 00:54:06',286105785052954626,386,11),(7489,'2018-07-02 00:54:11',457300954660995114,386,13),(7490,'2018-07-02 00:54:19',457300954660995114,386,17),(7491,'2018-07-02 00:54:23',457300954660995114,386,23),(7492,'2018-07-02 00:54:30',457300954660995114,386,16),(7493,'2018-07-02 00:54:34',457300954660995114,386,16),(7494,'2018-07-02 00:54:39',457300954660995114,386,13),(7495,'2018-07-02 00:54:43',200340393596944384,386,23),(7496,'2018-07-02 00:54:44',200340393596944384,386,12),(7497,'2018-07-02 01:00:50',200340393596944384,387,18),(7498,'2018-07-02 01:00:51',200340393596944384,387,13),(7499,'2018-07-02 01:00:53',200340393596944384,387,23),(7500,'2018-07-02 01:00:54',200340393596944384,387,13),(7501,'2018-07-02 01:00:55',200340393596944384,387,21),(7502,'2018-07-02 01:00:57',200340393596944384,387,15),(7503,'2018-07-02 01:00:57',457300954660995114,387,10),(7504,'2018-07-02 01:01:01',457300954660995114,387,22),(7505,'2018-07-02 01:01:03',297748308523483138,387,12),(7506,'2018-07-02 01:01:05',297748308523483138,387,12),(7507,'2018-07-02 01:01:06',457300954660995114,387,18),(7508,'2018-07-02 01:01:10',457300954660995114,387,13),(7509,'2018-07-02 01:01:12',200340393596944384,387,11),(7510,'2018-07-02 01:01:13',200340393596944384,387,17),(7511,'2018-07-02 01:01:22',286105785052954626,387,9),(7512,'2018-07-02 01:01:23',286105785052954626,387,15),(7513,'2018-07-02 01:01:26',457300954660995114,387,22),(7514,'2018-07-02 01:01:27',286105785052954626,387,10),(7515,'2018-07-02 01:01:29',286105785052954626,387,16),(7516,'2018-07-02 01:01:30',457300954660995114,387,11),(7517,'2018-07-02 01:01:33',297748308523483138,387,10),(7518,'2018-07-02 01:01:35',297748308523483138,387,12),(7519,'2018-07-02 01:02:03',454823752925052930,387,11),(7520,'2018-07-02 01:36:03',286105785052954626,388,12),(7521,'2018-07-02 01:36:05',286105785052954626,388,17),(7522,'2018-07-02 01:36:07',286105785052954626,388,13),(7523,'2018-07-02 01:36:09',286105785052954626,388,12),(7524,'2018-07-02 01:36:13',200340393596944384,388,10),(7525,'2018-07-02 01:36:14',297748308523483138,388,14),(7526,'2018-07-02 01:36:16',297748308523483138,388,17),(7527,'2018-07-02 01:36:16',200340393596944384,388,18),(7528,'2018-07-02 01:36:17',457300954660995114,388,14),(7529,'2018-07-02 01:36:18',200340393596944384,388,17),(7530,'2018-07-02 01:36:20',200340393596944384,388,18),(7531,'2018-07-02 01:36:22',457300954660995114,388,18),(7532,'2018-07-02 01:36:22',200340393596944384,388,12),(7533,'2018-07-02 01:36:24',200340393596944384,388,21),(7534,'2018-07-02 01:36:25',457300954660995114,388,22),(7535,'2018-07-02 01:36:27',200340393596944384,388,23),(7536,'2018-07-02 01:36:28',297748308523483138,388,10),(7537,'2018-07-02 01:36:29',457300954660995114,388,10),(7538,'2018-07-02 01:36:31',297748308523483138,388,16),(7539,'2018-07-02 01:36:31',286105785052954626,388,12),(7540,'2018-07-02 01:36:31',200340393596944384,388,15),(7541,'2018-07-02 01:36:32',286105785052954626,388,12),(7542,'2018-07-02 01:36:33',297748308523483138,388,16),(7543,'2018-07-02 01:36:35',457300954660995114,388,17),(7544,'2018-07-02 01:36:37',297748308523483138,388,15),(7545,'2018-07-02 01:36:37',286105785052954626,388,22),(7546,'2018-07-02 01:36:46',297748308523483138,388,14),(7547,'2018-07-02 01:36:47',297748308523483138,388,12),(7548,'2018-07-02 01:36:48',200340393596944384,388,23),(7549,'2018-07-02 01:36:49',457300954660995114,388,18),(7550,'2018-07-02 01:36:51',286105785052954626,388,16),(7551,'2018-07-02 01:36:57',457300954660995114,388,23),(7552,'2018-07-02 01:36:58',297748308523483138,388,17),(7553,'2018-07-02 01:37:04',457300954660995114,388,10),(7554,'2018-07-02 01:37:13',457300954660995114,388,17),(7555,'2018-07-02 01:38:03',454823752925052930,388,19),(7556,'2018-07-02 01:38:06',454823752925052930,388,14),(7557,'2018-07-02 01:38:07',454823752925052930,388,9),(7558,'2018-07-02 01:59:17',286105785052954626,389,15),(7559,'2018-07-02 01:59:19',286105785052954626,389,14),(7560,'2018-07-02 01:59:21',286105785052954626,389,13),(7561,'2018-07-02 01:59:28',286105785052954626,389,18),(7562,'2018-07-02 01:59:30',286105785052954626,389,15),(7563,'2018-07-02 01:59:31',286105785052954626,389,21),(7564,'2018-07-02 01:59:32',286105785052954626,389,15),(7565,'2018-07-02 01:59:43',457300954660995114,389,14),(7566,'2018-07-02 01:59:51',460761978135248896,389,9),(7567,'2018-07-02 01:59:59',460761978135248896,389,15),(7568,'2018-07-02 02:00:06',460761978135248896,389,9),(7569,'2018-07-02 02:00:12',460761978135248896,389,19),(7570,'2018-07-02 02:00:12',457300954660995114,389,9),(7571,'2018-07-02 02:00:17',460761978135248896,389,12),(7572,'2018-07-02 02:00:21',457300954660995114,389,18),(7573,'2018-07-02 02:00:26',218498162745278474,389,10),(7574,'2018-07-02 02:00:30',460761978135248896,389,20),(7575,'2018-07-02 02:00:30',218498162745278474,389,22),(7576,'2018-07-02 02:00:37',457300954660995114,389,12),(7577,'2018-07-02 02:00:38',460761978135248896,389,23),(7578,'2018-07-02 02:00:39',218498162745278474,389,11),(7579,'2018-07-02 02:00:43',460761978135248896,389,23),(7580,'2018-07-02 02:00:48',246788321404125185,389,11),(7581,'2018-07-02 02:00:51',218498162745278474,389,15),(7582,'2018-07-02 02:14:56',286105785052954626,390,9),(7583,'2018-07-02 02:14:59',286105785052954626,390,16),(7584,'2018-07-02 02:15:01',286105785052954626,390,12),(7585,'2018-07-02 02:15:03',286105785052954626,390,13),(7586,'2018-07-02 02:15:05',286105785052954626,390,19),(7587,'2018-07-02 02:15:22',460761978135248896,390,13),(7588,'2018-07-02 02:15:31',185698541052755968,390,16),(7589,'2018-07-02 02:15:33',185698541052755968,390,16),(7590,'2018-07-02 02:15:34',185698541052755968,390,9),(7591,'2018-07-02 02:15:36',185698541052755968,390,11),(7592,'2018-07-02 02:15:38',185698541052755968,390,16),(7593,'2018-07-02 02:15:38',460761978135248896,390,14),(7594,'2018-07-02 02:15:40',185698541052755968,390,6),(7595,'2018-07-02 02:15:43',185698541052755968,390,8),(7596,'2018-07-02 02:15:46',460761978135248896,390,12),(7597,'2018-07-02 02:15:51',457300954660995114,390,22),(7598,'2018-07-02 02:15:53',460761978135248896,390,17),(7599,'2018-07-02 02:16:06',460761978135248896,390,19),(7600,'2018-07-02 02:16:11',457300954660995114,390,15),(7601,'2018-07-02 02:16:32',457300954660995114,390,22),(7602,'2018-07-02 02:16:37',457300954660995114,390,19),(7603,'2018-07-02 02:16:42',457300954660995114,390,16),(7604,'2018-07-02 02:16:47',457300954660995114,390,16),(7605,'2018-07-02 02:16:52',457300954660995114,390,19),(7606,'2018-07-02 02:16:53',185698541052755968,390,7),(7607,'2018-07-02 02:46:16',460761978135248896,391,16),(7608,'2018-07-02 02:46:20',297748308523483138,391,7),(7609,'2018-07-02 02:46:22',297748308523483138,391,8),(7610,'2018-07-02 02:46:24',460761978135248896,391,19),(7611,'2018-07-02 02:46:24',297748308523483138,391,16),(7612,'2018-07-02 02:46:26',457300954660995114,391,14),(7613,'2018-07-02 02:46:27',297748308523483138,391,8),(7614,'2018-07-02 02:46:28',460761978135248896,391,16),(7615,'2018-07-02 02:46:30',297748308523483138,391,14),(7616,'2018-07-02 02:46:31',457300954660995114,391,13),(7617,'2018-07-02 02:46:34',460761978135248896,391,20),(7618,'2018-07-02 02:46:37',297748308523483138,391,15),(7619,'2018-07-02 02:46:40',460761978135248896,391,9),(7620,'2018-07-02 02:46:40',286105785052954626,391,17),(7621,'2018-07-02 02:46:44',286105785052954626,391,11),(7622,'2018-07-02 02:46:45',297748308523483138,391,15),(7623,'2018-07-02 02:46:45',460761978135248896,391,19),(7624,'2018-07-02 02:46:48',286105785052954626,391,16),(7625,'2018-07-02 02:46:50',286105785052954626,391,13),(7626,'2018-07-02 02:46:53',457300954660995114,391,19),(7627,'2018-07-02 02:46:55',460761978135248896,391,20),(7628,'2018-07-02 02:46:58',297748308523483138,391,10),(7629,'2018-07-02 02:47:01',297748308523483138,391,9),(7630,'2018-07-02 02:47:12',460761978135248896,391,9),(7631,'2018-07-02 02:49:04',460761978135248896,391,23),(7632,'2018-07-02 02:49:07',185698541052755968,391,14),(7633,'2018-07-02 02:49:10',185698541052755968,391,11),(7634,'2018-07-02 02:49:12',185698541052755968,391,11),(7635,'2018-07-02 02:49:14',185698541052755968,391,15),(7636,'2018-07-02 02:49:16',185698541052755968,391,11),(7637,'2018-07-02 02:49:18',185698541052755968,391,14),(7638,'2018-07-02 02:49:21',185698541052755968,391,8),(7639,'2018-07-02 03:19:28',459883167160205313,392,10),(7640,'2018-07-02 03:19:29',459883167160205313,392,9),(7641,'2018-07-02 03:19:29',459883167160205313,392,11),(7642,'2018-07-02 03:19:30',200340393596944384,392,9),(7643,'2018-07-02 03:19:30',459883167160205313,392,11),(7644,'2018-07-02 03:19:30',459883167160205313,392,8),(7645,'2018-07-02 03:19:30',200340393596944384,392,14),(7646,'2018-07-02 03:19:31',459883167160205313,392,12),(7647,'2018-07-02 03:19:31',200340393596944384,392,13),(7648,'2018-07-02 03:19:31',185698541052755968,392,9),(7649,'2018-07-02 03:19:32',460761978135248896,392,12),(7650,'2018-07-02 03:19:32',200340393596944384,392,15),(7651,'2018-07-02 03:19:32',200340393596944384,392,16),(7652,'2018-07-02 03:19:33',297748308523483138,392,16),(7653,'2018-07-02 03:19:34',200340393596944384,392,13),(7654,'2018-07-02 03:19:34',200340393596944384,392,13),(7655,'2018-07-02 03:19:34',185698541052755968,392,14),(7656,'2018-07-02 03:19:35',459884642192064512,392,7),(7657,'2018-07-02 03:19:35',200340393596944384,392,13),(7658,'2018-07-02 03:19:35',459884642192064512,392,10),(7659,'2018-07-02 03:19:36',459884642192064512,392,12),(7660,'2018-07-02 03:19:36',459884642192064512,392,7),(7661,'2018-07-02 03:19:37',460761978135248896,392,12),(7662,'2018-07-02 03:19:37',459884642192064512,392,15),(7663,'2018-07-02 03:19:39',459884642192064512,392,10),(7664,'2018-07-02 03:19:40',460761978135248896,392,11),(7665,'2018-07-02 03:19:42',185698541052755968,392,10),(7666,'2018-07-02 03:19:43',460761978135248896,392,9),(7667,'2018-07-02 03:19:43',454823752925052930,392,8),(7668,'2018-07-02 03:47:17',200340393596944384,393,9),(7669,'2018-07-02 03:47:18',200340393596944384,393,21),(7670,'2018-07-02 03:47:19',200340393596944384,393,18),(7671,'2018-07-02 03:47:21',200340393596944384,393,11),(7672,'2018-07-02 03:47:29',200340393596944384,393,12),(7673,'2018-07-02 03:47:31',200340393596944384,393,21),(7674,'2018-07-02 03:47:31',297748308523483138,393,15),(7675,'2018-07-02 03:47:36',457300954660995114,393,12),(7676,'2018-07-02 03:47:39',454823752925052930,393,16),(7677,'2018-07-02 03:47:41',454823752925052930,393,19),(7678,'2018-07-02 03:47:42',454823752925052930,393,19),(7679,'2018-07-02 03:47:43',297748308523483138,393,12),(7680,'2018-07-02 03:47:44',454823752925052930,393,12),(7681,'2018-07-02 03:47:45',454823752925052930,393,17),(7682,'2018-07-02 03:47:47',297748308523483138,393,18),(7683,'2018-07-02 03:47:48',460761978135248896,393,19),(7684,'2018-07-02 03:47:53',185698541052755968,393,10),(7685,'2018-07-02 03:47:53',454823752925052930,393,19),(7686,'2018-07-02 03:47:54',185698541052755968,393,11),(7687,'2018-07-02 03:47:55',460761978135248896,393,21),(7688,'2018-07-02 03:47:55',454823752925052930,393,19),(7689,'2018-07-02 03:47:56',185698541052755968,393,14),(7690,'2018-07-02 03:47:59',185698541052755968,393,15),(7691,'2018-07-02 03:47:59',460761978135248896,393,23),(7692,'2018-07-02 03:48:01',454823752925052930,393,19),(7693,'2018-07-02 03:48:02',185698541052755968,393,8),(7694,'2018-07-02 03:48:04',185698541052755968,393,9),(7695,'2018-07-02 03:48:06',185698541052755968,393,9),(7696,'2018-07-02 03:48:07',460761978135248896,393,9),(7697,'2018-07-02 03:48:08',185698541052755968,393,13),(7698,'2018-07-02 03:48:13',297748308523483138,393,19),(7699,'2018-07-02 03:48:18',460761978135248896,393,10),(7700,'2018-07-02 03:48:20',457300954660995114,393,20),(7701,'2018-07-02 03:48:22',460761978135248896,393,14),(7702,'2018-07-02 03:48:25',457300954660995114,393,16),(7703,'2018-07-02 03:48:30',460761978135248896,393,17),(7704,'2018-07-02 03:48:32',457300954660995114,393,10),(7705,'2018-07-02 03:48:37',457300954660995114,393,21),(7706,'2018-07-02 03:48:37',185698541052755968,393,15),(7707,'2018-07-02 04:29:29',460761978135248896,394,10),(7708,'2018-07-02 04:29:34',460761978135248896,394,18),(7709,'2018-07-02 04:29:39',460761978135248896,394,11),(7710,'2018-07-02 04:29:43',460761978135248896,394,20),(7711,'2018-07-02 04:29:48',457300954660995114,394,14),(7712,'2018-07-02 04:29:53',457300954660995114,394,17),(7713,'2018-07-02 04:29:57',460761978135248896,394,17),(7714,'2018-07-02 04:29:57',457300954660995114,394,17),(7715,'2018-07-02 04:30:03',460761978135248896,394,14),(7716,'2018-07-02 04:30:05',457300954660995114,394,9),(7717,'2018-07-02 04:30:10',460761978135248896,394,10),(7718,'2018-07-02 04:30:14',457300954660995114,394,9),(7719,'2018-07-02 04:30:18',460761978135248896,394,20),(7720,'2018-07-02 04:30:35',457300954660995114,394,14),(7721,'2018-07-02 04:30:52',460761978135248896,394,17),(7722,'2018-07-02 04:30:54',457300954660995114,394,9),(7723,'2018-07-02 04:30:58',200340393596944384,394,23),(7724,'2018-07-02 04:30:59',200340393596944384,394,9),(7725,'2018-07-02 04:31:06',457300954660995114,394,15),(7726,'2018-07-02 04:31:06',200340393596944384,394,11),(7727,'2018-07-02 04:31:12',370495051815714816,394,14),(7728,'2018-07-02 04:31:13',200340393596944384,394,17),(7729,'2018-07-02 04:31:16',457300954660995114,394,13),(7730,'2018-07-02 04:31:18',200340393596944384,394,20),(7731,'2018-07-02 04:31:29',454823752925052930,394,15),(7732,'2018-07-02 04:31:31',454823752925052930,394,14),(7733,'2018-07-02 04:31:34',454823752925052930,394,15),(7734,'2018-07-02 04:31:37',454823752925052930,394,9),(7735,'2018-07-02 04:31:41',454823752925052930,394,16),(7736,'2018-07-02 04:48:28',457300954660995114,395,15),(7737,'2018-07-02 04:48:31',460761978135248896,395,10),(7738,'2018-07-02 04:48:34',457300954660995114,395,20),(7739,'2018-07-02 04:48:37',454823752925052930,395,13),(7740,'2018-07-02 04:48:38',460761978135248896,395,16),(7741,'2018-07-02 04:48:38',454823752925052930,395,15),(7742,'2018-07-02 04:48:41',457300954660995114,395,13),(7743,'2018-07-02 04:48:44',460761978135248896,395,9),(7744,'2018-07-02 04:48:45',454823752925052930,395,12),(7745,'2018-07-02 04:48:50',457300954660995114,395,19),(7746,'2018-07-02 04:48:51',454823752925052930,395,17),(7747,'2018-07-02 04:48:55',460761978135248896,395,13),(7748,'2018-07-02 04:49:06',460761978135248896,395,14),(7749,'2018-07-02 04:49:14',457300954660995114,395,11),(7750,'2018-07-02 04:49:16',460761978135248896,395,19),(7751,'2018-07-02 04:49:19',457300954660995114,395,13),(7752,'2018-07-02 04:49:23',460761978135248896,395,18),(7753,'2018-07-02 04:49:25',457300954660995114,395,21),(7754,'2018-07-02 04:49:30',460761978135248896,395,19),(7755,'2018-07-02 04:49:30',457300954660995114,395,19),(7756,'2018-07-02 04:49:48',460761978135248896,395,21),(7757,'2018-07-02 04:49:54',457300954660995114,395,13),(7758,'2018-07-02 04:50:05',294927961310625793,395,29),(7759,'2018-07-02 04:50:09',294927961310625793,395,21),(7760,'2018-07-02 04:50:10',294927961310625793,395,26),(7761,'2018-07-02 04:50:10',294927961310625793,395,21),(7762,'2018-07-02 04:50:12',294927961310625793,395,19),(7763,'2018-07-02 04:50:15',294927961310625793,395,18),(7764,'2018-07-02 04:50:16',294927961310625793,395,24),(7765,'2018-07-02 04:50:17',294927961310625793,395,13),(7766,'2018-07-02 04:50:33',200340393596944384,395,11),(7767,'2018-07-02 04:50:44',200340393596944384,395,13),(7768,'2018-07-02 04:50:46',200340393596944384,395,9),(7769,'2018-07-02 05:00:49',306381311923453953,396,9),(7770,'2018-07-02 05:00:51',306381311923453953,396,9),(7771,'2018-07-02 05:00:55',306381311923453953,396,13),(7772,'2018-07-02 05:01:37',306381311923453953,396,11),(7773,'2018-07-02 05:01:40',460761978135248896,396,10),(7774,'2018-07-02 05:02:03',306381311923453953,396,13),(7775,'2018-07-02 05:02:06',459883167160205313,396,8),(7776,'2018-07-02 05:02:07',459883167160205313,396,13),(7777,'2018-07-02 05:02:09',459883167160205313,396,12),(7778,'2018-07-02 05:02:10',459883167160205313,396,7),(7779,'2018-07-02 05:02:11',459883167160205313,396,12),(7780,'2018-07-02 05:02:13',459883167160205313,396,11),(7781,'2018-07-02 05:02:25',459884642192064512,396,10),(7782,'2018-07-02 05:02:27',459884642192064512,396,12),(7783,'2018-07-02 05:02:29',459884642192064512,396,14),(7784,'2018-07-02 05:02:38',459884642192064512,396,8),(7785,'2018-07-02 05:02:42',460761978135248896,396,16),(7786,'2018-07-02 05:02:52',460761978135248896,396,21),(7787,'2018-07-02 05:02:57',460761978135248896,396,9),(7788,'2018-07-02 05:03:01',457300954660995114,396,21),(7789,'2018-07-02 05:03:02',460761978135248896,396,17),(7790,'2018-07-02 05:21:36',294927961310625793,397,17),(7791,'2018-07-02 05:21:40',294927961310625793,397,20),(7792,'2018-07-02 05:21:41',294927961310625793,397,13),(7793,'2018-07-02 05:21:42',294927961310625793,397,25),(7794,'2018-07-02 05:21:43',294927961310625793,397,24),(7795,'2018-07-02 05:21:45',294927961310625793,397,17),(7796,'2018-07-02 05:21:46',294927961310625793,397,22),(7797,'2018-07-02 05:21:47',294927961310625793,397,24),(7798,'2018-07-02 05:21:54',460761978135248896,397,10),(7799,'2018-07-02 05:21:57',200340393596944384,397,19),(7800,'2018-07-02 05:21:59',200340393596944384,397,23),(7801,'2018-07-02 05:21:59',460761978135248896,397,17),(7802,'2018-07-02 05:22:00',200340393596944384,397,10),(7803,'2018-07-02 05:22:03',460761978135248896,397,16),(7804,'2018-07-02 05:22:06',200340393596944384,397,20),(7805,'2018-07-02 05:22:14',460761978135248896,397,13),(7806,'2018-07-02 05:22:24',460761978135248896,397,12),(7807,'2018-07-02 05:22:28',306381311923453953,397,8),(7808,'2018-07-02 05:22:36',460761978135248896,397,16),(7809,'2018-07-02 05:22:37',294927961310625793,397,19),(7810,'2018-07-02 05:22:38',454823752925052930,397,12),(7811,'2018-07-02 05:22:39',454823752925052930,397,15),(7812,'2018-07-02 06:16:58',388505302292627456,399,17),(7813,'2018-07-02 06:17:03',388505302292627456,399,10),(7814,'2018-07-02 06:17:05',306381311923453953,399,12),(7815,'2018-07-02 06:17:06',388505302292627456,399,8),(7816,'2018-07-02 06:17:07',306381311923453953,399,14),(7817,'2018-07-02 06:17:09',388505302292627456,399,8),(7818,'2018-07-02 06:17:12',388505302292627456,399,9),(7819,'2018-07-02 06:17:13',306381311923453953,399,7),(7820,'2018-07-02 06:17:14',388505302292627456,399,8),(7821,'2018-07-02 06:17:17',306381311923453953,399,12),(7822,'2018-07-02 06:17:22',388505302292627456,399,10),(7823,'2018-07-02 06:17:26',388505302292627456,399,14),(7824,'2018-07-02 06:17:36',457300954660995114,399,20),(7825,'2018-07-02 06:17:43',457300954660995114,399,24),(7826,'2018-07-02 06:17:47',460761978135248896,399,16),(7827,'2018-07-02 06:17:49',457300954660995114,399,20),(7828,'2018-07-02 06:17:57',457300954660995114,399,14),(7829,'2018-07-02 06:17:58',460761978135248896,399,11),(7830,'2018-07-02 06:18:06',457300954660995114,399,22),(7831,'2018-07-02 06:18:10',325565391478718464,399,19),(7832,'2018-07-02 06:18:16',325565391478718464,399,23),(7833,'2018-07-02 06:18:18',460761978135248896,399,16),(7834,'2018-07-02 06:18:19',325565391478718464,399,12),(7835,'2018-07-02 06:18:21',325565391478718464,399,17),(7836,'2018-07-02 06:18:21',457300954660995114,399,11),(7837,'2018-07-02 06:46:01',457300954660995114,400,20),(7838,'2018-07-02 06:46:14',457300954660995114,400,19),(7839,'2018-07-02 06:46:25',460761978135248896,400,13),(7840,'2018-07-02 07:24:54',390618369545601028,401,13),(7841,'2018-07-02 07:24:57',390618369545601028,401,21),(7842,'2018-07-02 07:24:59',390618369545601028,401,16),(7843,'2018-07-02 07:25:01',390618369545601028,401,8),(7844,'2018-07-02 07:25:03',390618369545601028,401,14),(7845,'2018-07-02 07:25:05',390618369545601028,401,20),(7846,'2018-07-02 08:00:08',306381311923453953,402,14),(7847,'2018-07-02 08:00:08',325565391478718464,402,15),(7848,'2018-07-02 08:00:10',306381311923453953,402,8),(7849,'2018-07-02 08:00:12',306381311923453953,402,9),(7850,'2018-07-02 08:00:15',325565391478718464,402,13),(7851,'2018-07-02 08:00:16',306381311923453953,402,7),(7852,'2018-07-02 08:00:18',306381311923453953,402,16),(7853,'2018-07-02 08:00:21',325565391478718464,402,15),(7854,'2018-07-02 08:00:33',325565391478718464,402,19),(7855,'2018-07-02 08:00:35',325565391478718464,402,14),(7856,'2018-07-02 08:00:37',306381311923453953,402,9),(7857,'2018-07-02 08:00:39',325565391478718464,402,15),(7858,'2018-07-02 08:00:59',325565391478718464,402,23),(7859,'2018-07-02 08:01:51',325565391478718464,402,12),(7860,'2018-07-02 08:31:44',262771588946984963,403,17),(7861,'2018-07-02 08:31:48',262771588946984963,403,26),(7862,'2018-07-02 08:31:50',262771588946984963,403,24),(7863,'2018-07-02 08:31:53',262771588946984963,403,10),(7864,'2018-07-02 08:31:56',262771588946984963,403,26),(7865,'2018-07-02 08:31:59',262771588946984963,403,20),(7866,'2018-07-02 08:32:12',262771588946984963,403,13),(7867,'2018-07-02 08:33:24',262771588946984963,403,26),(7868,'2018-07-02 08:34:35',262771588946984963,403,23),(7869,'2018-07-02 09:48:59',325565391478718464,405,16),(7870,'2018-07-02 09:49:00',325565391478718464,405,16),(7871,'2018-07-02 09:49:00',325565391478718464,405,20),(7872,'2018-07-02 09:49:05',325565391478718464,405,23),(7873,'2018-07-02 09:49:07',325565391478718464,405,21),(7874,'2018-07-02 09:49:08',325565391478718464,405,17),(7875,'2018-07-02 09:49:09',325565391478718464,405,28),(7876,'2018-07-02 09:49:10',262771588946984963,405,24),(7877,'2018-07-02 09:49:11',262771588946984963,405,11),(7878,'2018-07-02 09:49:12',262771588946984963,405,20),(7879,'2018-07-02 09:49:12',262771588946984963,405,11),(7880,'2018-07-02 09:49:13',262771588946984963,405,21),(7881,'2018-07-02 09:49:14',262771588946984963,405,25),(7882,'2018-07-02 09:49:15',262771588946984963,405,12),(7883,'2018-07-02 09:49:42',185698541052755968,405,8),(7884,'2018-07-02 09:49:44',185698541052755968,405,13),(7885,'2018-07-02 09:49:46',185698541052755968,405,10),(7886,'2018-07-02 09:49:48',185698541052755968,405,13),(7887,'2018-07-02 09:49:50',185698541052755968,405,14),(7888,'2018-07-02 09:49:52',185698541052755968,405,12),(7889,'2018-07-02 09:49:54',185698541052755968,405,12),(7890,'2018-07-02 09:49:58',410462121063874561,405,9),(7891,'2018-07-02 09:50:01',185698541052755968,405,11),(7892,'2018-07-02 09:50:06',410462121063874561,405,14),(7893,'2018-07-02 09:50:18',410462121063874561,405,13),(7894,'2018-07-02 09:50:42',262771588946984963,405,23),(7895,'2018-07-02 09:50:43',410462121063874561,405,6),(7896,'2018-07-02 10:06:06',262771588946984963,406,23),(7897,'2018-07-02 10:06:06',262771588946984963,406,13),(7898,'2018-07-02 10:06:07',262771588946984963,406,13),(7899,'2018-07-02 10:06:08',262771588946984963,406,17),(7900,'2018-07-02 10:06:09',262771588946984963,406,22),(7901,'2018-07-02 10:06:09',262771588946984963,406,19),(7902,'2018-07-02 10:06:11',262771588946984963,406,20),(7903,'2018-07-02 10:08:27',325565391478718464,406,20),(7904,'2018-07-02 10:08:39',262771588946984963,406,24),(7905,'2018-07-02 10:08:46',262771588946984963,406,18),(7906,'2018-07-02 10:15:55',211232684209340426,407,13),(7907,'2018-07-02 10:15:56',211232684209340426,407,22),(7908,'2018-07-02 10:15:57',211232684209340426,407,20),(7909,'2018-07-02 10:15:58',211232684209340426,407,11),(7910,'2018-07-02 10:16:02',211232684209340426,407,15),(7911,'2018-07-02 10:16:03',211232684209340426,407,19),(7912,'2018-07-02 10:16:04',265907268942299136,407,15),(7913,'2018-07-02 10:16:04',262771588946984963,407,20),(7914,'2018-07-02 10:16:04',211232684209340426,407,23),(7915,'2018-07-02 10:16:06',211232684209340426,407,26),(7916,'2018-07-02 10:16:06',262771588946984963,407,24),(7917,'2018-07-02 10:16:07',211232684209340426,407,25),(7918,'2018-07-02 10:16:08',211232684209340426,407,22),(7919,'2018-07-02 10:16:09',262771588946984963,407,20),(7920,'2018-07-02 10:16:20',265907268942299136,407,13),(7921,'2018-07-02 10:16:23',265907268942299136,407,13),(7922,'2018-07-02 10:16:25',265907268942299136,407,16),(7923,'2018-07-02 10:16:26',265907268942299136,407,9),(7924,'2018-07-02 10:16:28',265907268942299136,407,13),(7925,'2018-07-02 10:16:35',211232684209340426,407,16),(7926,'2018-07-02 10:16:37',262771588946984963,407,24),(7927,'2018-07-02 10:17:38',265907268942299136,407,11),(7928,'2018-07-02 10:18:23',274301199841361920,407,14),(7929,'2018-07-02 10:18:26',274301199841361920,407,17),(7930,'2018-07-02 10:18:28',274301199841361920,407,17),(7931,'2018-07-02 10:18:31',274301199841361920,407,14),(7932,'2018-07-02 10:18:34',274301199841361920,407,12),(7933,'2018-07-02 10:36:09',211232684209340426,408,20),(7934,'2018-07-02 10:36:10',211232684209340426,408,17),(7935,'2018-07-02 10:36:10',274301199841361920,408,11),(7936,'2018-07-02 10:36:11',274301199841361920,408,9),(7937,'2018-07-02 10:36:11',211232684209340426,408,13),(7938,'2018-07-02 10:36:12',265907268942299136,408,10),(7939,'2018-07-02 10:36:12',274301199841361920,408,18),(7940,'2018-07-02 10:36:13',274301199841361920,408,9),(7941,'2018-07-02 10:36:13',274301199841361920,408,14),(7942,'2018-07-02 10:36:13',274301199841361920,408,17),(7943,'2018-07-02 10:36:15',265907268942299136,408,15),(7944,'2018-07-02 10:36:18',211232684209340426,408,20),(7945,'2018-07-02 10:36:19',265907268942299136,408,16),(7946,'2018-07-02 10:36:20',211232684209340426,408,17),(7947,'2018-07-02 10:36:21',265907268942299136,408,13),(7948,'2018-07-02 10:36:21',265907268942299136,408,12),(7949,'2018-07-02 10:36:22',265907268942299136,408,14),(7950,'2018-07-02 10:36:34',390618369545601028,408,21),(7951,'2018-07-02 10:36:36',390618369545601028,408,10),(7952,'2018-07-02 10:36:37',390618369545601028,408,15),(7953,'2018-07-02 10:36:39',390618369545601028,408,12),(7954,'2018-07-02 10:36:40',390618369545601028,408,20),(7955,'2018-07-02 10:36:42',390618369545601028,408,19),(7956,'2018-07-02 10:36:43',274301199841361920,408,18),(7957,'2018-07-02 10:46:51',211232684209340426,409,10),(7958,'2018-07-02 10:47:30',262771588946984963,409,25),(7959,'2018-07-02 10:47:37',262771588946984963,409,27),(7960,'2018-07-02 10:47:38',262771588946984963,409,17),(7961,'2018-07-02 10:47:38',262771588946984963,409,17),(7962,'2018-07-02 10:47:39',262771588946984963,409,29),(7963,'2018-07-02 10:47:40',262771588946984963,409,14),(7964,'2018-07-02 10:47:40',274301199841361920,409,14),(7965,'2018-07-02 10:47:40',262771588946984963,409,19),(7966,'2018-07-02 10:47:42',274301199841361920,409,12),(7967,'2018-07-02 10:47:44',274301199841361920,409,13),(7968,'2018-07-02 10:47:46',274301199841361920,409,15),(7969,'2018-07-02 10:47:47',274301199841361920,409,13),(7970,'2018-07-02 10:48:37',185698541052755968,409,11),(7971,'2018-07-02 10:48:39',185698541052755968,409,9),(7972,'2018-07-02 10:48:41',185698541052755968,409,7),(7973,'2018-07-02 10:48:44',185698541052755968,409,14),(7974,'2018-07-02 10:48:52',185698541052755968,409,11),(7975,'2018-07-02 10:48:54',185698541052755968,409,15),(7976,'2018-07-02 10:48:56',185698541052755968,409,13),(7977,'2018-07-02 10:48:58',185698541052755968,409,11),(7978,'2018-07-02 10:48:59',274301199841361920,409,12),(7979,'2018-07-02 10:49:07',306381311923453953,409,15),(7980,'2018-07-02 10:49:10',306381311923453953,409,7),(7981,'2018-07-02 10:49:13',306381311923453953,409,11),(7982,'2018-07-02 10:49:16',306381311923453953,409,14),(7983,'2018-07-02 10:49:19',306381311923453953,409,17),(7984,'2018-07-02 10:49:21',262771588946984963,409,13),(7985,'2018-07-02 10:50:36',262771588946984963,409,23),(7986,'2018-07-02 10:50:46',185698541052755968,409,15),(7987,'2018-07-02 10:50:47',274301199841361920,409,12),(7988,'2018-07-02 10:50:53',306381311923453953,409,14),(7989,'2018-07-02 11:05:37',262771588946984963,410,19),(7990,'2018-07-02 11:05:40',262771588946984963,410,27),(7991,'2018-07-02 11:05:41',262771588946984963,410,12),(7992,'2018-07-02 11:05:43',262771588946984963,410,19),(7993,'2018-07-02 11:05:44',262771588946984963,410,20),(7994,'2018-07-02 11:05:46',262771588946984963,410,14),(7995,'2018-07-02 11:05:47',262771588946984963,410,28),(7996,'2018-07-02 11:06:22',211232684209340426,410,22),(7997,'2018-07-02 11:06:35',262771588946984963,410,27),(7998,'2018-07-02 11:06:45',185698541052755968,410,8),(7999,'2018-07-02 11:07:33',306381311923453953,410,8),(8000,'2018-07-02 11:07:38',306381311923453953,410,14),(8001,'2018-07-02 11:07:41',306381311923453953,410,12),(8002,'2018-07-02 11:07:43',306381311923453953,410,14),(8003,'2018-07-02 11:07:45',306381311923453953,410,7),(8004,'2018-07-02 11:07:48',306381311923453953,410,13),(8005,'2018-07-02 12:22:00',274301199841361920,411,17),(8006,'2018-07-02 12:22:02',211232684209340426,411,14),(8007,'2018-07-02 12:22:04',211232684209340426,411,26),(8008,'2018-07-02 12:22:12',211232684209340426,411,12),(8009,'2018-07-02 12:22:20',211232684209340426,411,18),(8010,'2018-07-02 12:22:41',357981974931046400,411,12),(8011,'2018-07-02 12:22:42',218498162745278474,411,12),(8012,'2018-07-02 12:23:26',200340393596944384,411,22),(8013,'2018-07-02 12:23:29',200340393596944384,411,10),(8014,'2018-07-02 12:23:31',200340393596944384,411,20),(8015,'2018-07-02 12:23:33',200340393596944384,411,12),(8016,'2018-07-02 12:23:34',200340393596944384,411,15),(8017,'2018-07-02 12:23:36',200340393596944384,411,17),(8018,'2018-07-02 12:23:38',200340393596944384,411,12),(8019,'2018-07-02 12:23:40',200340393596944384,411,17),(8020,'2018-07-02 12:23:41',274301199841361920,411,13),(8021,'2018-07-02 12:23:55',357981974931046400,411,8),(8022,'2018-07-02 12:24:00',433759248800022532,411,10),(8023,'2018-07-02 12:24:02',433759248800022532,411,15),(8024,'2018-07-02 12:24:03',433759248800022532,411,14),(8025,'2018-07-02 12:24:05',433759248800022532,411,10),(8026,'2018-07-02 12:24:06',433759248800022532,411,12),(8027,'2018-07-02 12:24:08',433759248800022532,411,7),(8028,'2018-07-02 12:24:10',433759248800022532,411,11),(8029,'2018-07-02 12:24:20',433759248800022532,411,17),(8030,'2018-07-02 12:24:47',274301199841361920,411,10),(8031,'2018-07-02 12:24:56',357981974931046400,411,7),(8032,'2018-07-02 12:24:57',218498162745278474,411,10),(8033,'2018-07-02 12:24:59',357981974931046400,411,14),(8034,'2018-07-02 12:25:01',357981974931046400,411,13),(8035,'2018-07-02 12:34:44',357981974931046400,412,6),(8036,'2018-07-02 12:35:09',306381311923453953,412,12),(8037,'2018-07-02 12:35:12',265907268942299136,412,10),(8038,'2018-07-02 12:35:18',306381311923453953,412,12),(8039,'2018-07-02 12:35:20',306381311923453953,412,11),(8040,'2018-07-02 12:35:21',265907268942299136,412,18),(8041,'2018-07-02 12:35:22',306381311923453953,412,13),(8042,'2018-07-02 12:35:25',306381311923453953,412,14),(8043,'2018-07-02 12:35:28',306381311923453953,412,12),(8044,'2018-07-02 12:35:36',265907268942299136,412,10),(8045,'2018-07-02 12:35:38',265907268942299136,412,18),(8046,'2018-07-02 12:35:57',265907268942299136,412,9),(8047,'2018-07-02 12:35:58',274301199841361920,412,15),(8048,'2018-07-02 12:36:01',274301199841361920,412,12),(8049,'2018-07-02 12:36:05',274301199841361920,412,18),(8050,'2018-07-02 12:36:07',433759248800022532,412,13),(8051,'2018-07-02 12:36:35',357981974931046400,412,14),(8052,'2018-07-02 12:37:44',274301199841361920,412,12),(8053,'2018-07-02 12:37:46',274301199841361920,412,10),(8054,'2018-07-02 12:37:49',274301199841361920,412,15),(8055,'2018-07-02 12:38:17',390618369545601028,412,10),(8056,'2018-07-02 12:38:19',390618369545601028,412,21),(8057,'2018-07-02 12:38:21',390618369545601028,412,13),(8058,'2018-07-02 12:38:22',390618369545601028,412,16),(8059,'2018-07-02 12:38:24',390618369545601028,412,14),(8060,'2018-07-02 12:38:26',390618369545601028,412,18),(8061,'2018-07-02 12:38:38',390618369545601028,412,19),(8062,'2018-07-02 13:05:29',357981974931046400,413,11),(8063,'2018-07-02 13:05:34',211232684209340426,413,27),(8064,'2018-07-02 13:05:35',211232684209340426,413,21),(8065,'2018-07-02 13:05:36',211232684209340426,413,15),(8066,'2018-07-02 13:05:37',211232684209340426,413,16),(8067,'2018-07-02 13:05:37',211232684209340426,413,11),(8068,'2018-07-02 13:05:38',211232684209340426,413,10),(8069,'2018-07-02 13:05:39',211232684209340426,413,27),(8070,'2018-07-02 13:05:39',211232684209340426,413,15),(8071,'2018-07-02 13:05:53',211232684209340426,413,18),(8072,'2018-07-02 13:05:56',211232684209340426,413,16),(8073,'2018-07-02 13:06:20',357981974931046400,413,13),(8074,'2018-07-02 13:06:44',357981974931046400,413,15),(8075,'2018-07-02 13:07:09',325565391478718464,413,28),(8076,'2018-07-02 13:07:16',357981974931046400,413,11),(8077,'2018-07-02 13:07:16',325565391478718464,413,29),(8078,'2018-07-02 13:07:45',390618369545601028,413,22),(8079,'2018-07-02 13:07:47',390618369545601028,413,16),(8080,'2018-07-02 13:30:31',265907268942299136,414,14),(8081,'2018-07-02 13:30:38',357981974931046400,414,10),(8082,'2018-07-02 13:32:08',196372356514447360,414,14),(8083,'2018-07-02 13:32:11',274301199841361920,414,14),(8084,'2018-07-02 13:32:16',196372356514447360,414,12),(8085,'2018-07-02 13:49:20',390618369545601028,415,20),(8086,'2018-07-02 13:49:23',390618369545601028,415,15),(8087,'2018-07-02 13:49:25',390618369545601028,415,18),(8088,'2018-07-02 13:49:28',390618369545601028,415,13),(8089,'2018-07-02 13:49:30',390618369545601028,415,18),(8090,'2018-07-02 13:49:32',390618369545601028,415,19),(8091,'2018-07-02 13:49:55',459883167160205313,415,9),(8092,'2018-07-02 13:49:56',459883167160205313,415,15),(8093,'2018-07-02 13:49:58',459883167160205313,415,8),(8094,'2018-07-02 13:49:59',459883167160205313,415,13),(8095,'2018-07-02 13:50:00',459883167160205313,415,7),(8096,'2018-07-02 13:50:01',459883167160205313,415,14),(8097,'2018-07-02 13:50:15',201102155896193024,415,11),(8098,'2018-07-02 13:50:16',201102155896193024,415,17),(8099,'2018-07-02 13:50:17',201102155896193024,415,10),(8100,'2018-07-02 13:50:18',201102155896193024,415,14),(8101,'2018-07-02 13:50:20',201102155896193024,415,14),(8102,'2018-07-02 13:50:28',459884642192064512,415,16),(8103,'2018-07-02 13:50:29',459884642192064512,415,10),(8104,'2018-07-02 13:50:30',459884642192064512,415,17),(8105,'2018-07-02 13:50:31',459884642192064512,415,18),(8106,'2018-07-02 13:50:32',459884642192064512,415,7),(8107,'2018-07-02 13:50:42',185698541052755968,415,11),(8108,'2018-07-02 13:50:44',185698541052755968,415,14),(8109,'2018-07-02 13:50:45',185698541052755968,415,11),(8110,'2018-07-02 13:50:47',185698541052755968,415,12),(8111,'2018-07-02 13:50:49',185698541052755968,415,7),(8112,'2018-07-02 13:50:53',185698541052755968,415,11),(8113,'2018-07-02 13:50:55',185698541052755968,415,6),(8114,'2018-07-02 13:50:58',185698541052755968,415,10),(8115,'2018-07-02 13:51:25',459873273308643328,415,8),(8116,'2018-07-02 13:51:26',459873273308643328,415,16),(8117,'2018-07-02 13:51:28',459873273308643328,415,7),(8118,'2018-07-02 13:51:29',459873273308643328,415,9),(8119,'2018-07-02 13:51:30',459873273308643328,415,19),(8120,'2018-07-02 13:51:37',459873273308643328,415,17),(8121,'2018-07-02 13:51:38',459873273308643328,415,7),(8122,'2018-07-02 13:51:44',278115594879107074,415,10),(8123,'2018-07-02 13:51:47',278115594879107074,415,8),(8124,'2018-07-02 13:51:50',278115594879107074,415,13),(8125,'2018-07-02 13:51:52',278115594879107074,415,10),(8126,'2018-07-02 13:51:55',278115594879107074,415,11),(8127,'2018-07-02 13:51:58',278115594879107074,415,10),(8128,'2018-07-02 13:52:15',459876383431327746,415,11),(8129,'2018-07-02 13:52:17',459876383431327746,415,9),(8130,'2018-07-02 13:52:18',459876383431327746,415,16),(8131,'2018-07-02 14:03:17',218498162745278474,416,17),(8132,'2018-07-02 14:03:22',218498162745278474,416,22),(8133,'2018-07-02 14:03:29',218498162745278474,416,11),(8134,'2018-07-02 14:03:32',218498162745278474,416,21),(8135,'2018-07-02 14:03:36',218498162745278474,416,17),(8136,'2018-07-02 14:03:38',218498162745278474,416,9),(8137,'2018-07-02 14:04:12',459884642192064512,416,13),(8138,'2018-07-02 14:04:13',459884642192064512,416,13),(8139,'2018-07-02 14:04:22',185698541052755968,416,15),(8140,'2018-07-02 14:04:22',325565391478718464,416,21),(8141,'2018-07-02 14:04:29',459884642192064512,416,16),(8142,'2018-07-02 14:04:31',459884642192064512,416,16),(8143,'2018-07-02 14:04:55',357981974931046400,416,12),(8144,'2018-07-02 14:05:36',218498162745278474,416,17),(8145,'2018-07-02 14:06:11',185698541052755968,416,16),(8146,'2018-07-02 15:02:35',200340393596944384,417,13),(8147,'2018-07-02 15:02:36',200340393596944384,417,23),(8148,'2018-07-02 15:02:38',200340393596944384,417,16),(8149,'2018-07-02 15:02:39',150649616772235264,417,12),(8150,'2018-07-02 15:02:39',200340393596944384,417,11),(8151,'2018-07-02 15:02:41',150649616772235264,417,10),(8152,'2018-07-02 15:02:41',200340393596944384,417,17),(8153,'2018-07-02 15:02:42',150649616772235264,417,12),(8154,'2018-07-02 15:02:43',150649616772235264,417,12),(8155,'2018-07-02 15:02:43',200340393596944384,417,10),(8156,'2018-07-02 15:02:44',150649616772235264,417,16),(8157,'2018-07-02 15:02:44',325565391478718464,417,23),(8158,'2018-07-02 15:02:45',200340393596944384,417,11),(8159,'2018-07-02 15:02:46',325565391478718464,417,13),(8160,'2018-07-02 15:02:46',200340393596944384,417,21),(8161,'2018-07-02 15:02:49',150649616772235264,417,14),(8162,'2018-07-02 15:02:49',325565391478718464,417,23),(8163,'2018-07-02 15:02:50',211232684209340426,417,27),(8164,'2018-07-02 15:02:53',454823752925052930,417,12),(8165,'2018-07-02 15:02:55',454823752925052930,417,17),(8166,'2018-07-02 15:02:57',454823752925052930,417,12),(8167,'2018-07-02 15:02:57',325565391478718464,417,13),(8168,'2018-07-02 15:02:57',211232684209340426,417,25),(8169,'2018-07-02 15:22:07',211232684209340426,418,23),(8170,'2018-07-02 15:22:11',262771588946984963,418,19),(8171,'2018-07-02 15:22:12',262771588946984963,418,19),(8172,'2018-07-02 15:22:13',262771588946984963,418,21),(8173,'2018-07-02 15:22:13',211232684209340426,418,25),(8174,'2018-07-02 15:22:13',262771588946984963,418,23),(8175,'2018-07-02 15:22:14',200340393596944384,418,20),(8176,'2018-07-02 15:22:14',262771588946984963,418,21),(8177,'2018-07-02 15:22:15',196372356514447360,418,12),(8178,'2018-07-02 15:22:15',262771588946984963,418,27),(8179,'2018-07-02 15:22:15',211232684209340426,418,11),(8180,'2018-07-02 15:22:15',200340393596944384,418,15),(8181,'2018-07-02 15:22:16',262771588946984963,418,21),(8182,'2018-07-02 15:22:17',200340393596944384,418,9),(8183,'2018-07-02 15:22:17',211232684209340426,418,27),(8184,'2018-07-02 15:22:18',200340393596944384,418,17),(8185,'2018-07-02 15:22:18',211232684209340426,418,24),(8186,'2018-07-02 15:22:19',196372356514447360,418,15),(8187,'2018-07-02 15:22:19',211232684209340426,418,23),(8188,'2018-07-02 15:22:20',211232684209340426,418,21),(8189,'2018-07-02 15:22:20',196372356514447360,418,16),(8190,'2018-07-02 15:22:23',200340393596944384,418,14),(8191,'2018-07-02 15:22:24',200340393596944384,418,17),(8192,'2018-07-02 15:22:25',200340393596944384,418,18),(8193,'2018-07-02 15:22:26',200340393596944384,418,24),(8194,'2018-07-02 15:22:28',196372356514447360,418,9),(8195,'2018-07-02 15:22:29',201102155896193024,418,14),(8196,'2018-07-02 15:22:29',201102155896193024,418,10),(8197,'2018-07-02 15:22:29',325565391478718464,418,16),(8198,'2018-07-02 15:36:00',262771588946984963,419,17),(8199,'2018-07-02 15:36:01',357981974931046400,419,15),(8200,'2018-07-02 15:36:01',201102155896193024,419,19),(8201,'2018-07-02 15:36:01',262771588946984963,419,19),(8202,'2018-07-02 15:36:01',454823752925052930,419,13),(8203,'2018-07-02 15:36:01',262771588946984963,419,11),(8204,'2018-07-02 15:36:02',201102155896193024,419,9),(8205,'2018-07-02 15:36:02',262771588946984963,419,12),(8206,'2018-07-02 15:36:02',262771588946984963,419,11),(8207,'2018-07-02 15:36:02',201102155896193024,419,14),(8208,'2018-07-02 15:36:02',454823752925052930,419,21),(8209,'2018-07-02 15:36:02',262771588946984963,419,18),(8210,'2018-07-02 15:36:03',262771588946984963,419,12),(8211,'2018-07-02 15:36:03',201102155896193024,419,14),(8212,'2018-07-02 15:36:03',424563962303086594,419,10),(8213,'2018-07-02 15:36:03',454823752925052930,419,19),(8214,'2018-07-02 15:36:03',201102155896193024,419,13),(8215,'2018-07-02 15:36:03',454823752925052930,419,13),(8216,'2018-07-02 15:36:03',424563962303086594,419,7),(8217,'2018-07-02 15:36:03',148942504077557760,419,11),(8218,'2018-07-02 15:36:04',454823752925052930,419,17),(8219,'2018-07-02 15:36:04',424563962303086594,419,8),(8220,'2018-07-02 15:36:04',454823752925052930,419,20),(8221,'2018-07-02 15:47:01',325565391478718464,420,27),(8222,'2018-07-02 15:47:01',424563962303086594,420,9),(8223,'2018-07-02 15:47:02',325565391478718464,420,15),(8224,'2018-07-02 15:47:02',262771588946984963,420,21),(8225,'2018-07-02 15:47:02',424563962303086594,420,7),(8226,'2018-07-02 15:47:02',262771588946984963,420,17),(8227,'2018-07-02 15:47:03',325565391478718464,420,14),(8228,'2018-07-02 15:47:03',200340393596944384,420,25),(8229,'2018-07-02 15:47:03',262771588946984963,420,20),(8230,'2018-07-02 15:47:03',424563962303086594,420,9),(8231,'2018-07-02 15:47:03',200340393596944384,420,14),(8232,'2018-07-02 15:47:03',262771588946984963,420,31),(8233,'2018-07-02 15:47:04',200340393596944384,420,16),(8234,'2018-07-02 15:47:04',424563962303086594,420,12),(8235,'2018-07-02 15:47:04',262771588946984963,420,21),(8236,'2018-07-02 15:47:04',262771588946984963,420,16),(8237,'2018-07-02 15:47:04',200340393596944384,420,23),(8238,'2018-07-02 15:47:04',424563962303086594,420,15),(8239,'2018-07-02 15:47:05',200340393596944384,420,24),(8240,'2018-07-02 15:47:05',325565391478718464,420,19),(8241,'2018-07-02 15:47:05',424563962303086594,420,12),(8242,'2018-07-02 15:47:05',200340393596944384,420,12),(8243,'2018-07-02 15:47:05',424563962303086594,420,7),(8244,'2018-07-02 15:47:06',200340393596944384,420,20),(8245,'2018-07-02 15:47:07',200340393596944384,420,16),(8246,'2018-07-02 15:47:08',201102155896193024,420,15),(8247,'2018-07-02 15:47:09',201102155896193024,420,18),(8248,'2018-07-02 15:47:09',201102155896193024,420,13),(8249,'2018-07-02 15:47:10',201102155896193024,420,15),(8250,'2018-07-02 15:47:11',201102155896193024,420,19),(8251,'2018-07-02 15:47:13',454823752925052930,420,9),(8252,'2018-07-02 15:47:14',454823752925052930,420,15),(8253,'2018-07-02 15:47:14',454823752925052930,420,20),(8254,'2018-07-02 15:47:15',454823752925052930,420,18),(8255,'2018-07-02 15:47:16',454823752925052930,420,19),(8256,'2018-07-02 15:47:16',454823752925052930,420,17),(8257,'2018-07-02 15:47:17',454823752925052930,420,9),(8258,'2018-07-02 15:47:18',459873273308643328,420,9),(8259,'2018-07-02 15:47:18',459873273308643328,420,15),(8260,'2018-07-02 15:47:20',459873273308643328,420,19),(8261,'2018-07-02 15:47:20',459873273308643328,420,15),(8262,'2018-07-02 15:47:22',459873273308643328,420,13),(8263,'2018-07-02 15:47:30',459884642192064512,420,17),(8264,'2018-07-02 15:47:31',459884642192064512,420,14),(8265,'2018-07-02 15:47:31',357981974931046400,420,10),(8266,'2018-07-02 15:47:32',433759248800022532,420,17),(8267,'2018-07-02 15:47:32',459884642192064512,420,12),(8268,'2018-07-02 15:47:32',433759248800022532,420,16),(8269,'2018-07-02 16:51:29',200340393596944384,421,14),(8270,'2018-07-02 16:51:29',278115594879107074,421,8),(8271,'2018-07-02 16:51:30',200340393596944384,421,17),(8272,'2018-07-02 16:51:33',438094660712267778,421,7),(8273,'2018-07-02 16:51:35',438094660712267778,421,11),(8274,'2018-07-02 16:51:36',200340393596944384,421,13),(8275,'2018-07-02 16:51:37',278115594879107074,421,14),(8276,'2018-07-02 16:51:39',438094660712267778,421,15),(8277,'2018-07-02 16:51:39',218498162745278474,421,19),(8278,'2018-07-02 16:51:40',200340393596944384,421,17),(8279,'2018-07-02 16:51:42',438094660712267778,421,18),(8280,'2018-07-02 16:51:42',278115594879107074,421,7),(8281,'2018-07-02 16:51:44',200340393596944384,421,15),(8282,'2018-07-02 16:51:46',278115594879107074,421,10),(8283,'2018-07-02 16:51:47',438094660712267778,421,14),(8284,'2018-07-02 16:51:48',218498162745278474,421,19),(8285,'2018-07-02 16:51:48',200340393596944384,421,15),(8286,'2018-07-02 16:51:50',278115594879107074,421,13),(8287,'2018-07-02 16:51:52',200340393596944384,421,25),(8288,'2018-07-02 16:51:53',278115594879107074,421,10),(8289,'2018-07-02 16:51:53',218498162745278474,421,11),(8290,'2018-07-02 16:51:56',200340393596944384,421,10),(8291,'2018-07-02 16:52:01',438094660712267778,421,16),(8292,'2018-07-02 16:52:04',218498162745278474,421,14),(8293,'2018-07-02 16:52:05',211232684209340426,421,24),(8294,'2018-07-02 16:52:07',211232684209340426,421,19),(8295,'2018-07-02 16:52:09',211232684209340426,421,20),(8296,'2018-07-02 16:52:09',218498162745278474,421,19),(8297,'2018-07-02 16:52:13',218498162745278474,421,22),(8298,'2018-07-02 16:52:13',438094660712267778,421,14),(8299,'2018-07-02 16:52:15',211232684209340426,421,25),(8300,'2018-07-02 16:52:16',211232684209340426,421,19),(8301,'2018-07-02 16:52:19',433759248800022532,421,15),(8302,'2018-07-02 16:52:19',265907268942299136,421,10),(8303,'2018-07-02 16:52:20',433759248800022532,421,15),(8304,'2018-07-02 17:17:50',262771588946984963,422,11),(8305,'2018-07-02 17:17:51',262771588946984963,422,15),(8306,'2018-07-02 17:17:51',218498162745278474,422,20),(8307,'2018-07-02 17:17:51',262771588946984963,422,31),(8308,'2018-07-02 17:17:52',262771588946984963,422,16),(8309,'2018-07-02 17:17:52',200340393596944384,422,15),(8310,'2018-07-02 17:17:52',438094660712267778,422,9),(8311,'2018-07-02 17:17:52',262771588946984963,422,21),(8312,'2018-07-02 17:17:53',200340393596944384,422,23),(8313,'2018-07-02 17:17:53',262771588946984963,422,14),(8314,'2018-07-02 17:17:53',278115594879107074,422,14),(8315,'2018-07-02 17:17:53',438094660712267778,422,15),(8316,'2018-07-02 17:17:53',200340393596944384,422,17),(8317,'2018-07-02 17:17:53',262771588946984963,422,21),(8318,'2018-07-02 17:17:54',201102155896193024,422,10),(8319,'2018-07-02 17:17:54',200340393596944384,422,10),(8320,'2018-07-02 17:17:55',218498162745278474,422,10),(8321,'2018-07-02 17:17:55',438094660712267778,422,13),(8322,'2018-07-02 17:17:55',390618369545601028,422,23),(8323,'2018-07-02 17:17:56',278115594879107074,422,11),(8324,'2018-07-02 17:17:56',201102155896193024,422,14),(8325,'2018-07-02 17:17:56',438094660712267778,422,11),(8326,'2018-07-02 17:17:56',390618369545601028,422,14),(8327,'2018-07-02 17:17:57',201102155896193024,422,11),(8328,'2018-07-02 17:17:57',438094660712267778,422,14),(8329,'2018-07-02 17:17:58',278115594879107074,422,11),(8330,'2018-07-02 17:17:58',390618369545601028,422,18),(8331,'2018-07-02 17:17:58',201102155896193024,422,9),(8332,'2018-07-02 17:17:58',218498162745278474,422,12),(8333,'2018-07-02 17:17:59',201102155896193024,422,19),(8334,'2018-07-02 17:17:59',438094660712267778,422,11),(8335,'2018-07-02 17:17:59',390618369545601028,422,13),(8336,'2018-07-02 17:18:01',218498162745278474,422,13),(8337,'2018-07-02 17:18:01',278115594879107074,422,10),(8338,'2018-07-02 17:18:01',438094660712267778,422,14),(8339,'2018-07-02 17:18:02',390618369545601028,422,15),(8340,'2018-07-02 17:18:02',200340393596944384,422,21),(8341,'2018-07-02 17:18:03',200340393596944384,422,24),(8342,'2018-07-02 17:35:36',457300954660995114,423,17),(8343,'2018-07-02 17:35:36',438094660712267778,423,14),(8344,'2018-07-02 17:35:37',278115594879107074,423,8),(8345,'2018-07-02 17:35:37',357981974931046400,423,15),(8346,'2018-07-02 17:35:37',438094660712267778,423,10),(8347,'2018-07-02 17:35:39',457300954660995114,423,10),(8348,'2018-07-02 17:35:39',278115594879107074,423,13),(8349,'2018-07-02 17:35:40',357981974931046400,423,9),(8350,'2018-07-02 17:35:40',438094660712267778,423,9),(8351,'2018-07-02 17:35:42',357981974931046400,423,13),(8352,'2018-07-02 17:35:42',278115594879107074,423,12),(8353,'2018-07-02 17:35:42',200340393596944384,423,9),(8354,'2018-07-02 17:35:43',457300954660995114,423,24),(8355,'2018-07-02 17:35:43',357981974931046400,423,13),(8356,'2018-07-02 17:35:44',278115594879107074,423,9),(8357,'2018-07-02 17:35:44',218498162745278474,423,8),(8358,'2018-07-02 17:35:45',297748308523483138,423,17),(8359,'2018-07-02 17:35:45',262771588946984963,423,24),(8360,'2018-07-02 17:35:45',218498162745278474,423,20),(8361,'2018-07-02 17:35:46',278115594879107074,423,6),(8362,'2018-07-02 17:35:46',262771588946984963,423,29),(8363,'2018-07-02 17:35:46',357981974931046400,423,14),(8364,'2018-07-02 17:35:46',262771588946984963,423,13),(8365,'2018-07-02 17:35:46',457300954660995114,423,15),(8366,'2018-07-02 17:35:46',297748308523483138,423,19),(8367,'2018-07-02 17:35:47',218498162745278474,423,20),(8368,'2018-07-02 17:35:47',262771588946984963,423,21),(8369,'2018-07-02 17:35:47',297748308523483138,423,14),(8370,'2018-07-02 17:35:47',297748308523483138,423,7),(8371,'2018-07-02 17:35:47',262771588946984963,423,22),(8372,'2018-07-02 17:35:47',297748308523483138,423,17),(8373,'2018-07-02 17:35:48',297748308523483138,423,14),(8374,'2018-07-02 17:35:48',278115594879107074,423,7),(8375,'2018-07-02 17:35:48',262771588946984963,423,19),(8376,'2018-07-02 17:35:48',297748308523483138,423,16),(8377,'2018-07-02 17:35:48',357981974931046400,423,6),(8378,'2018-07-02 17:35:48',262771588946984963,423,15),(8379,'2018-07-02 17:35:48',297748308523483138,423,13),(8380,'2018-07-02 17:35:49',297748308523483138,423,10),(8381,'2018-07-02 17:35:49',262771588946984963,423,12),(8382,'2018-07-02 17:35:49',218498162745278474,423,11),(8383,'2018-07-02 17:35:50',457300954660995114,423,22),(8384,'2018-07-02 17:35:50',278115594879107074,423,7),(8385,'2018-07-02 17:35:55',457300954660995114,423,25),(8386,'2018-07-02 17:35:59',457300954660995114,423,18),(8387,'2018-07-02 17:35:59',218498162745278474,423,11),(8388,'2018-07-02 17:36:01',218498162745278474,423,13),(8389,'2018-07-02 17:36:03',457300954660995114,423,25),(8390,'2018-07-02 17:36:04',218498162745278474,423,15),(8391,'2018-07-02 17:36:27',433759248800022532,423,10),(8392,'2018-07-02 17:36:28',433759248800022532,423,11),(8393,'2018-07-02 17:36:30',433759248800022532,423,15),(8394,'2018-07-02 17:36:31',433759248800022532,423,14),(8395,'2018-07-02 17:36:32',433759248800022532,423,12),(8396,'2018-07-02 17:49:39',262771588946984963,424,26),(8397,'2018-07-02 17:49:40',262771588946984963,424,22),(8398,'2018-07-02 17:49:41',262771588946984963,424,21),(8399,'2018-07-02 17:49:42',262771588946984963,424,17),(8400,'2018-07-02 17:49:43',262771588946984963,424,21),(8401,'2018-07-02 17:49:44',297748308523483138,424,17),(8402,'2018-07-02 17:49:44',262771588946984963,424,26),(8403,'2018-07-02 17:49:45',262771588946984963,424,25),(8404,'2018-07-02 17:49:45',224083099246395403,424,12),(8405,'2018-07-02 17:49:46',224083099246395403,424,8),(8406,'2018-07-02 17:49:47',297748308523483138,424,9),(8407,'2018-07-02 17:49:50',460761978135248896,424,12),(8408,'2018-07-02 17:49:51',297748308523483138,424,14),(8409,'2018-07-02 17:49:58',460761978135248896,424,16),(8410,'2018-07-02 17:50:03',297748308523483138,424,9),(8411,'2018-07-02 17:50:05',460761978135248896,424,10),(8412,'2018-07-02 17:50:09',224083099246395403,424,13),(8413,'2018-07-02 17:50:12',460761978135248896,424,19),(8414,'2018-07-02 17:50:20',224083099246395403,424,13),(8415,'2018-07-02 17:50:21',460761978135248896,424,9),(8416,'2018-07-02 17:50:42',460761978135248896,424,22),(8417,'2018-07-02 17:50:46',262771588946984963,424,27),(8418,'2018-07-02 17:50:52',460761978135248896,424,11),(8419,'2018-07-02 17:51:02',460761978135248896,424,14),(8420,'2018-07-02 17:51:27',224083099246395403,424,11),(8421,'2018-07-02 17:51:37',460761978135248896,424,14),(8422,'2018-07-02 17:51:48',148942504077557760,424,11),(8423,'2018-07-02 18:16:14',262771588946984963,425,27),(8424,'2018-07-02 18:16:17',262771588946984963,425,15),(8425,'2018-07-02 18:16:19',262771588946984963,425,14),(8426,'2018-07-02 18:16:21',262771588946984963,425,30),(8427,'2018-07-02 18:16:22',262771588946984963,425,31),(8428,'2018-07-02 18:16:24',460761978135248896,425,16),(8429,'2018-07-02 18:16:28',460761978135248896,425,21),(8430,'2018-07-02 18:16:33',460761978135248896,425,15),(8431,'2018-07-02 18:16:37',460761978135248896,425,17),(8432,'2018-07-02 18:16:39',262771588946984963,425,31),(8433,'2018-07-02 18:16:40',262771588946984963,425,21),(8434,'2018-07-02 18:16:41',262771588946984963,425,21),(8435,'2018-07-02 18:16:43',262771588946984963,425,21),(8436,'2018-07-02 18:16:44',460761978135248896,425,9),(8437,'2018-07-02 18:16:48',460761978135248896,425,15),(8438,'2018-07-02 18:16:53',460761978135248896,425,15),(8439,'2018-07-02 18:17:00',460761978135248896,425,18),(8440,'2018-07-02 18:17:21',201102155896193024,425,14),(8441,'2018-07-02 18:17:22',201102155896193024,425,11),(8442,'2018-07-02 18:17:23',201102155896193024,425,19),(8443,'2018-07-02 18:17:23',201102155896193024,425,16),(8444,'2018-07-02 18:17:24',201102155896193024,425,11),(8445,'2018-07-02 18:17:38',150649616772235264,425,13),(8446,'2018-07-02 18:17:43',457300954660995114,425,11),(8447,'2018-07-02 18:17:48',457300954660995114,425,20),(8448,'2018-07-02 18:17:52',150649616772235264,425,10),(8449,'2018-07-02 18:17:53',457300954660995114,425,10),(8450,'2018-07-02 18:18:11',286105785052954626,425,15),(8451,'2018-07-02 18:18:11',459876383431327746,425,13),(8452,'2018-07-02 18:18:12',459876383431327746,425,9),(8453,'2018-07-02 18:18:12',286105785052954626,425,19),(8454,'2018-07-02 18:18:13',459876383431327746,425,7),(8455,'2018-07-02 18:44:43',200340393596944384,426,24),(8456,'2018-07-02 18:44:43',274301199841361920,426,14),(8457,'2018-07-02 18:44:44',200340393596944384,426,14),(8458,'2018-07-02 18:44:44',274301199841361920,426,10),(8459,'2018-07-02 18:44:44',274301199841361920,426,19),(8460,'2018-07-02 18:44:44',274301199841361920,426,13),(8461,'2018-07-02 18:44:44',200340393596944384,426,14),(8462,'2018-07-02 18:44:44',274301199841361920,426,20),(8463,'2018-07-02 18:44:45',274301199841361920,426,19),(8464,'2018-07-02 18:44:45',150649616772235264,426,17),(8465,'2018-07-02 18:44:45',200340393596944384,426,12),(8466,'2018-07-02 18:44:45',200340393596944384,426,20),(8467,'2018-07-02 18:44:46',150649616772235264,426,15),(8468,'2018-07-02 18:44:46',200340393596944384,426,19),(8469,'2018-07-02 18:44:46',200340393596944384,426,11),(8470,'2018-07-02 18:44:47',200340393596944384,426,17),(8471,'2018-07-02 18:44:48',297748308523483138,426,16),(8472,'2018-07-02 18:44:48',150649616772235264,426,13),(8473,'2018-07-02 18:44:48',297748308523483138,426,13),(8474,'2018-07-02 18:44:49',297748308523483138,426,13),(8475,'2018-07-02 18:44:49',262771588946984963,426,15),(8476,'2018-07-02 18:44:49',150649616772235264,426,13),(8477,'2018-07-02 18:44:50',262771588946984963,426,20),(8478,'2018-07-02 18:44:50',297748308523483138,426,14),(8479,'2018-07-02 18:44:50',297748308523483138,426,17),(8480,'2018-07-02 19:37:21',262771588946984963,427,21),(8481,'2018-07-02 19:37:21',218498162745278474,427,12),(8482,'2018-07-02 19:37:22',262771588946984963,427,13),(8483,'2018-07-02 19:37:23',262771588946984963,427,23),(8484,'2018-07-02 19:37:25',218498162745278474,427,19),(8485,'2018-07-02 19:37:27',460761978135248896,427,12),(8486,'2018-07-02 19:37:28',218498162745278474,427,16),(8487,'2018-07-02 19:37:30',218498162745278474,427,18),(8488,'2018-07-02 19:37:32',274301199841361920,427,14),(8489,'2018-07-02 19:37:33',218498162745278474,427,13),(8490,'2018-07-02 19:37:33',460761978135248896,427,14),(8491,'2018-07-02 19:37:33',262771588946984963,427,25),(8492,'2018-07-02 19:37:33',274301199841361920,427,13),(8493,'2018-07-02 19:37:33',150649616772235264,427,10),(8494,'2018-07-02 19:37:34',150649616772235264,427,15),(8495,'2018-07-02 19:37:36',150649616772235264,427,9),(8496,'2018-07-02 19:37:39',274301199841361920,427,10),(8497,'2018-07-02 19:37:40',274301199841361920,427,16),(8498,'2018-07-02 19:37:41',274301199841361920,427,16),(8499,'2018-07-02 19:37:43',274301199841361920,427,11),(8500,'2018-07-02 19:37:46',429615167492325376,427,9),(8501,'2018-07-02 19:37:50',218498162745278474,427,13),(8502,'2018-07-02 19:37:51',429615167492325376,427,6),(8503,'2018-07-02 19:37:51',457300954660995114,427,21),(8504,'2018-07-02 19:38:01',150649616772235264,427,12),(8505,'2018-07-02 19:38:02',460761978135248896,427,13),(8506,'2018-07-02 19:38:07',429615167492325376,427,13),(8507,'2018-07-02 19:38:08',460761978135248896,427,11),(8508,'2018-07-02 19:38:12',457300954660995114,427,20),(8509,'2018-07-02 19:38:23',457300954660995114,427,10),(8510,'2018-07-02 19:38:26',433759248800022532,427,7),(8511,'2018-07-02 19:38:28',433759248800022532,427,12),(8512,'2018-07-02 19:38:28',265907268942299136,427,8),(8513,'2018-07-02 19:38:30',457300954660995114,427,13),(8514,'2018-07-02 19:38:31',433759248800022532,427,10),(8515,'2018-07-02 19:38:36',265907268942299136,427,17),(8516,'2018-07-02 19:38:38',265907268942299136,427,11),(8517,'2018-07-02 19:38:44',274301199841361920,427,15),(8518,'2018-07-02 19:38:47',433759248800022532,427,7),(8519,'2018-07-02 19:38:49',433759248800022532,427,12),(8520,'2018-07-02 19:38:52',201102155896193024,427,16),(8521,'2018-07-02 19:38:53',201102155896193024,427,21),(8522,'2018-07-02 19:38:54',201102155896193024,427,14),(8523,'2018-07-02 19:38:55',201102155896193024,427,16),(8524,'2018-07-02 19:38:55',201102155896193024,427,16),(8525,'2018-07-02 19:38:56',150649616772235264,427,7),(8526,'2018-07-02 19:38:57',265907268942299136,427,18),(8527,'2018-07-02 19:38:59',459876383431327746,427,12),(8528,'2018-07-02 19:39:00',459876383431327746,427,14),(8529,'2018-07-02 19:39:00',459876383431327746,427,16),(8530,'2018-07-02 19:39:00',459876383431327746,427,16),(8531,'2018-07-02 19:39:01',459876383431327746,427,13),(8532,'2018-07-02 19:39:01',429615167492325376,427,10),(8533,'2018-07-02 19:39:03',265907268942299136,427,20),(8534,'2018-07-02 19:39:05',459873273308643328,427,12),(8535,'2018-07-02 19:39:05',460761978135248896,427,16),(8536,'2018-07-02 19:39:05',457300954660995114,427,13),(8537,'2018-07-02 19:39:05',459873273308643328,427,8),(8538,'2018-07-02 20:21:48',457300954660995114,428,18),(8539,'2018-07-02 20:21:50',200340393596944384,428,17),(8540,'2018-07-02 20:21:51',200340393596944384,428,17),(8541,'2018-07-02 20:21:52',200340393596944384,428,10),(8542,'2018-07-02 20:21:54',200340393596944384,428,12),(8543,'2018-07-02 20:21:55',200340393596944384,428,13),(8544,'2018-07-02 20:21:57',200340393596944384,428,25),(8545,'2018-07-02 20:21:57',150649616772235264,428,8),(8546,'2018-07-02 20:21:58',200340393596944384,428,24),(8547,'2018-07-02 20:21:59',200340393596944384,428,17),(8548,'2018-07-02 20:22:00',457300954660995114,428,15),(8549,'2018-07-02 20:22:17',274301199841361920,428,17),(8550,'2018-07-02 20:22:18',457300954660995114,428,10),(8551,'2018-07-02 20:22:19',274301199841361920,428,14),(8552,'2018-07-02 20:22:19',150649616772235264,428,13),(8553,'2018-07-02 20:22:19',460761978135248896,428,12),(8554,'2018-07-02 20:22:20',274301199841361920,428,19),(8555,'2018-07-02 20:22:21',274301199841361920,428,16),(8556,'2018-07-02 20:22:21',274301199841361920,428,13),(8557,'2018-07-02 20:22:22',274301199841361920,428,19),(8558,'2018-07-02 20:22:24',457300954660995114,428,10),(8559,'2018-07-02 20:22:26',150649616772235264,428,11),(8560,'2018-07-02 20:22:28',457300954660995114,428,17),(8561,'2018-07-02 20:22:34',457300954660995114,428,13),(8562,'2018-07-02 20:22:38',460761978135248896,428,10),(8563,'2018-07-02 20:22:39',457300954660995114,428,24),(8564,'2018-07-02 20:22:43',460761978135248896,428,22),(8565,'2018-07-02 20:22:51',460761978135248896,428,14),(8566,'2018-07-02 20:22:54',150649616772235264,428,11),(8567,'2018-07-02 20:22:57',150649616772235264,428,14),(8568,'2018-07-02 20:22:57',274301199841361920,428,11),(8569,'2018-07-02 20:23:02',150649616772235264,428,14),(8570,'2018-07-02 20:23:08',460761978135248896,428,19),(8571,'2018-07-02 20:23:08',457300954660995114,428,13),(8572,'2018-07-02 20:23:11',150649616772235264,428,12),(8573,'2018-07-02 20:23:14',200340393596944384,428,17),(8574,'2018-07-02 20:23:24',457300954660995114,428,15),(8575,'2018-07-02 20:23:27',131968711312539648,428,12),(8576,'2018-07-02 20:23:29',131968711312539648,428,13),(8577,'2018-07-02 20:23:30',131968711312539648,428,9),(8578,'2018-07-02 20:23:32',131968711312539648,428,8),(8579,'2018-07-02 20:23:33',131968711312539648,428,11),(8580,'2018-07-02 20:47:28',390618369545601028,429,16),(8581,'2018-07-02 20:47:28',274301199841361920,429,22),(8582,'2018-07-02 20:47:28',457300954660995114,429,15),(8583,'2018-07-02 20:47:29',390618369545601028,429,23),(8584,'2018-07-02 20:47:29',390618369545601028,429,22),(8585,'2018-07-02 20:47:29',274301199841361920,429,10),(8586,'2018-07-02 20:47:29',390618369545601028,429,15),(8587,'2018-07-02 20:47:29',274301199841361920,429,11),(8588,'2018-07-02 20:47:30',390618369545601028,429,24),(8589,'2018-07-02 20:47:30',274301199841361920,429,19),(8590,'2018-07-02 20:47:30',274301199841361920,429,19),(8591,'2018-07-02 20:47:30',390618369545601028,429,17),(8592,'2018-07-02 20:47:31',274301199841361920,429,16),(8593,'2018-07-02 20:47:34',200340393596944384,429,10),(8594,'2018-07-02 20:47:35',200340393596944384,429,10),(8595,'2018-07-02 20:47:36',200340393596944384,429,22),(8596,'2018-07-02 20:47:37',200340393596944384,429,23),(8597,'2018-07-02 20:47:44',457300954660995114,429,13),(8598,'2018-07-02 20:47:46',200340393596944384,429,24),(8599,'2018-07-02 20:47:47',200340393596944384,429,11),(8600,'2018-07-02 20:47:54',131968711312539648,429,16),(8601,'2018-07-02 20:47:58',131968711312539648,429,12),(8602,'2018-07-02 20:48:00',131968711312539648,429,13),(8603,'2018-07-02 20:48:02',131968711312539648,429,9),(8604,'2018-07-02 20:48:04',131968711312539648,429,8),(8605,'2018-07-02 20:48:07',433759248800022532,429,12),(8606,'2018-07-02 20:48:08',433759248800022532,429,16),(8607,'2018-07-02 20:48:09',433759248800022532,429,10),(8608,'2018-07-02 20:48:11',433759248800022532,429,13),(8609,'2018-07-02 20:48:13',457300954660995114,429,23),(8610,'2018-07-02 20:48:14',294927961310625793,429,18),(8611,'2018-07-02 20:48:17',294927961310625793,429,17),(8612,'2018-07-02 20:48:18',433759248800022532,429,12),(8613,'2018-07-02 20:48:18',457300954660995114,429,14),(8614,'2018-07-02 20:48:18',294927961310625793,429,21),(8615,'2018-07-02 20:48:19',433759248800022532,429,12),(8616,'2018-07-02 20:48:20',294927961310625793,429,25),(8617,'2018-07-02 20:48:20',294927961310625793,429,16),(8618,'2018-07-02 20:48:23',294927961310625793,429,14),(8619,'2018-07-02 20:48:24',294927961310625793,429,28),(8620,'2018-07-02 20:48:25',294927961310625793,429,25),(8621,'2018-07-02 20:48:27',294927961310625793,429,27),(8622,'2018-07-02 20:48:41',457300954660995114,429,18),(8623,'2018-07-02 20:48:44',390618369545601028,429,14),(8624,'2018-07-02 20:48:46',457300954660995114,429,24),(8625,'2018-07-02 20:48:48',294927961310625793,429,29),(8626,'2018-07-02 20:48:51',457300954660995114,429,21),(8627,'2018-07-02 20:48:55',457300954660995114,429,12),(8628,'2018-07-02 20:49:03',460761978135248896,429,23),(8629,'2018-07-02 21:37:12',285930195125403650,430,7),(8630,'2018-07-02 21:37:15',285930195125403650,430,6),(8631,'2018-07-02 21:37:17',285930195125403650,430,11),(8632,'2018-07-02 21:37:19',262771588946984963,430,25),(8633,'2018-07-02 21:37:20',150649616772235264,430,14),(8634,'2018-07-02 21:37:21',285930195125403650,430,11),(8635,'2018-07-02 21:37:23',262771588946984963,430,21),(8636,'2018-07-02 21:37:23',150649616772235264,430,11),(8637,'2018-07-02 21:37:24',285930195125403650,430,16),(8638,'2018-07-02 21:37:26',262771588946984963,430,22),(8639,'2018-07-02 21:37:28',262771588946984963,430,23),(8640,'2018-07-02 21:37:31',262771588946984963,430,17),(8641,'2018-07-02 21:37:33',285930195125403650,430,11),(8642,'2018-07-02 21:37:33',457300954660995114,430,23),(8643,'2018-07-02 21:37:33',262771588946984963,430,15),(8644,'2018-07-02 21:37:36',262771588946984963,430,13),(8645,'2018-07-02 21:37:39',262771588946984963,430,17),(8646,'2018-07-02 21:37:55',457300954660995114,430,20),(8647,'2018-07-02 21:37:57',294927961310625793,430,25),(8648,'2018-07-02 21:37:59',201102155896193024,430,13),(8649,'2018-07-02 21:38:00',201102155896193024,430,15),(8650,'2018-07-02 21:38:01',150649616772235264,430,8),(8651,'2018-07-02 21:38:01',201102155896193024,430,16),(8652,'2018-07-02 21:38:02',294927961310625793,430,17),(8653,'2018-07-02 21:38:02',201102155896193024,430,12),(8654,'2018-07-02 21:38:03',201102155896193024,430,22),(8655,'2018-07-02 21:38:03',294927961310625793,430,27),(8656,'2018-07-02 21:38:05',294927961310625793,430,11),(8657,'2018-07-02 21:38:07',459873273308643328,430,10),(8658,'2018-07-02 21:38:07',459873273308643328,430,18),(8659,'2018-07-02 21:38:08',459873273308643328,430,12),(8660,'2018-07-02 21:38:09',459873273308643328,430,9),(8661,'2018-07-02 21:38:10',459873273308643328,430,12),(8662,'2018-07-02 21:38:14',457300954660995114,430,10),(8663,'2018-07-02 21:38:14',459879057295671296,430,7),(8664,'2018-07-02 21:38:15',459879057295671296,430,13),(8665,'2018-07-02 21:38:16',459879057295671296,430,13),(8666,'2018-07-02 21:38:17',459879057295671296,430,8),(8667,'2018-07-02 21:38:17',459879057295671296,430,7),(8668,'2018-07-02 21:38:32',457300954660995114,430,11),(8669,'2018-07-02 21:38:38',457300954660995114,430,10),(8670,'2018-07-02 21:38:42',457300954660995114,430,17),(8671,'2018-07-02 21:38:53',262771588946984963,430,11),(8672,'2018-07-02 21:39:45',218498162745278474,430,22),(8673,'2018-07-02 21:39:48',218498162745278474,430,18),(8674,'2018-07-02 21:39:50',218498162745278474,430,14),(8675,'2018-07-02 21:39:51',218498162745278474,430,20),(8676,'2018-07-02 21:39:53',218498162745278474,430,14),(8677,'2018-07-02 21:39:55',218498162745278474,430,16),(8678,'2018-07-02 21:44:29',390618369545601028,431,13),(8679,'2018-07-02 21:44:30',211232684209340426,431,17),(8680,'2018-07-02 21:44:30',390618369545601028,431,21),(8681,'2018-07-02 21:44:32',211232684209340426,431,13),(8682,'2018-07-02 21:44:32',390618369545601028,431,21),(8683,'2018-07-02 21:44:33',211232684209340426,431,13),(8684,'2018-07-02 21:44:34',390618369545601028,431,18),(8685,'2018-07-02 21:44:35',211232684209340426,431,19),(8686,'2018-07-02 21:44:37',390618369545601028,431,10),(8687,'2018-07-02 21:44:38',218498162745278474,431,23),(8688,'2018-07-02 21:44:40',211232684209340426,431,27),(8689,'2018-07-02 21:44:41',211232684209340426,431,20),(8690,'2018-07-02 21:44:41',211232684209340426,431,17),(8691,'2018-07-02 21:44:48',211232684209340426,431,21),(8692,'2018-07-02 21:44:49',211232684209340426,431,20),(8693,'2018-07-02 21:44:50',390618369545601028,431,24),(8694,'2018-07-02 21:44:53',390618369545601028,431,20),(8695,'2018-07-02 21:44:55',211232684209340426,431,13),(8696,'2018-07-02 21:44:56',211232684209340426,431,18),(8697,'2018-07-02 21:44:58',218498162745278474,431,11),(8698,'2018-07-02 21:45:06',131968711312539648,431,15),(8699,'2018-07-02 21:45:07',294927961310625793,431,21),(8700,'2018-07-02 21:45:08',131968711312539648,431,15),(8701,'2018-07-02 21:45:10',294927961310625793,431,23),(8702,'2018-07-02 21:45:12',294927961310625793,431,13),(8703,'2018-07-02 21:45:13',294927961310625793,431,14),(8704,'2018-07-02 21:45:14',294927961310625793,431,23),(8705,'2018-07-02 21:45:20',294927961310625793,431,28),(8706,'2018-07-02 21:45:22',294927961310625793,431,28),(8707,'2018-07-02 21:45:24',294927961310625793,431,19),(8708,'2018-07-02 21:45:25',294927961310625793,431,13),(8709,'2018-07-02 22:20:48',211232684209340426,432,18),(8710,'2018-07-02 22:20:49',211232684209340426,432,20),(8711,'2018-07-02 22:20:51',211232684209340426,432,21),(8712,'2018-07-02 22:20:53',211232684209340426,432,27),(8713,'2018-07-02 22:20:54',211232684209340426,432,20),(8714,'2018-07-02 22:20:56',211232684209340426,432,20),(8715,'2018-07-02 22:20:57',211232684209340426,432,24),(8716,'2018-07-02 22:21:00',211232684209340426,432,15),(8717,'2018-07-02 22:21:05',211232684209340426,432,15),(8718,'2018-07-02 22:21:18',211232684209340426,432,19),(8719,'2018-07-02 22:21:21',150649616772235264,432,12),(8720,'2018-07-02 22:21:22',201102155896193024,432,9),(8721,'2018-07-02 22:21:23',201102155896193024,432,10),(8722,'2018-07-02 22:21:28',460761978135248896,432,17),(8723,'2018-07-02 22:21:29',459881667104997376,432,12),(8724,'2018-07-02 22:21:30',459881667104997376,432,11),(8725,'2018-07-02 22:21:31',459881667104997376,432,15),(8726,'2018-07-02 22:21:32',459881667104997376,432,8),(8727,'2018-07-02 22:21:32',459881667104997376,432,7),(8728,'2018-07-02 22:21:38',459876383431327746,432,17),(8729,'2018-07-02 22:21:39',459876383431327746,432,7),(8730,'2018-07-02 22:21:40',459876383431327746,432,10),(8731,'2018-07-02 22:21:41',459876383431327746,432,17),(8732,'2018-07-02 22:21:42',459876383431327746,432,15),(8733,'2018-07-02 22:21:45',460761978135248896,432,16),(8734,'2018-07-02 22:21:47',262771588946984963,432,29),(8735,'2018-07-02 22:21:52',262771588946984963,432,11),(8736,'2018-07-02 22:21:54',262771588946984963,432,28),(8737,'2018-07-02 22:21:56',262771588946984963,432,21),(8738,'2018-07-02 22:21:58',262771588946984963,432,17),(8739,'2018-07-02 22:22:01',459879057295671296,432,11),(8740,'2018-07-02 22:22:01',262771588946984963,432,27),(8741,'2018-07-02 22:22:02',459879057295671296,432,10),(8742,'2018-07-02 22:22:02',459879057295671296,432,7),(8743,'2018-07-02 22:22:02',150649616772235264,432,11),(8744,'2018-07-02 22:22:03',459879057295671296,432,9),(8745,'2018-07-02 22:22:03',459879057295671296,432,6),(8746,'2018-07-02 22:22:04',459879057295671296,432,8),(8747,'2018-07-02 22:22:17',390618369545601028,432,9),(8748,'2018-07-02 22:22:19',390618369545601028,432,24),(8749,'2018-07-02 22:22:20',262771588946984963,432,31),(8750,'2018-07-02 22:22:21',131968711312539648,432,17),(8751,'2018-07-02 22:22:21',390618369545601028,432,9),(8752,'2018-07-02 22:22:23',390618369545601028,432,18),(8753,'2018-07-02 22:22:25',459873273308643328,432,16),(8754,'2018-07-02 22:22:25',390618369545601028,432,19),(8755,'2018-07-02 22:22:26',459873273308643328,432,13),(8756,'2018-07-02 22:22:26',459873273308643328,432,11),(8757,'2018-07-02 22:22:27',459873273308643328,432,11),(8758,'2018-07-02 22:22:28',459873273308643328,432,18),(8759,'2018-07-02 22:22:31',390618369545601028,432,12),(8760,'2018-07-02 22:22:51',459876383431327746,432,10),(8761,'2018-07-02 22:23:01',196372356514447360,432,15),(8762,'2018-07-02 22:23:04',459881667104997376,432,8),(8763,'2018-07-02 22:23:13',196372356514447360,432,13),(8764,'2018-07-02 22:23:13',294927961310625793,432,11),(8765,'2018-07-02 22:23:14',294927961310625793,432,19),(8766,'2018-07-02 22:23:19',196372356514447360,432,13),(8767,'2018-07-02 22:30:31',459879057295671296,433,14),(8768,'2018-07-02 22:30:32',459879057295671296,433,11),(8769,'2018-07-02 22:30:33',459879057295671296,433,9),(8770,'2018-07-02 22:30:39',459879057295671296,433,12),(8771,'2018-07-02 22:30:40',459879057295671296,433,7),(8772,'2018-07-02 22:31:02',459881667104997376,433,8),(8773,'2018-07-02 22:31:03',459881667104997376,433,11),(8774,'2018-07-02 22:31:04',459881667104997376,433,6),(8775,'2018-07-02 22:31:04',459881667104997376,433,11),(8776,'2018-07-02 22:31:28',201102155896193024,433,23),(8777,'2018-07-02 22:31:30',201102155896193024,433,10),(8778,'2018-07-02 22:32:18',459883167160205313,433,12),(8779,'2018-07-02 22:32:19',262771588946984963,433,15),(8780,'2018-07-02 22:32:25',459883167160205313,433,10),(8781,'2018-07-02 22:32:26',459883167160205313,433,11),(8782,'2018-07-02 22:32:27',459883167160205313,433,12),(8783,'2018-07-02 22:32:28',459883167160205313,433,15),(8784,'2018-07-02 22:32:28',459883167160205313,433,15),(8785,'2018-07-02 22:32:35',262771588946984963,433,27),(8786,'2018-07-02 22:32:40',262771588946984963,433,26),(8787,'2018-07-02 22:33:15',459884642192064512,433,20),(8788,'2018-07-02 22:33:16',459884642192064512,433,16),(8789,'2018-07-02 22:33:16',459884642192064512,433,14),(8790,'2018-07-02 22:33:17',459884642192064512,433,14),(8791,'2018-07-02 22:33:18',459884642192064512,433,18),(8792,'2018-07-02 22:33:18',459884642192064512,433,12),(8793,'2018-07-02 22:34:28',459834182961463299,433,10),(8794,'2018-07-02 22:34:29',459834182961463299,433,14),(8795,'2018-07-02 22:34:30',459834182961463299,433,10),(8796,'2018-07-02 22:34:31',459834182961463299,433,10),(8797,'2018-07-02 22:34:31',459834182961463299,433,10),(8798,'2018-07-02 22:34:36',211232684209340426,433,16),(8799,'2018-07-02 23:02:24',324727149930086400,434,6),(8800,'2018-07-02 23:02:27',150649616772235264,434,9),(8801,'2018-07-02 23:02:29',324727149930086400,434,12),(8802,'2018-07-02 23:02:49',324727149930086400,434,10),(8803,'2018-07-02 23:03:13',324727149930086400,434,12),(8804,'2018-07-02 23:04:42',201102155896193024,434,10),(8805,'2018-07-02 23:04:44',201102155896193024,434,15),(8806,'2018-07-02 23:04:53',459873273308643328,434,10),(8807,'2018-07-02 23:04:55',459873273308643328,434,9),(8808,'2018-07-02 23:05:08',459879057295671296,434,9),(8809,'2018-07-02 23:05:08',459879057295671296,434,14),(8810,'2018-07-02 23:05:10',459879057295671296,434,12),(8811,'2018-07-02 23:05:11',459879057295671296,434,11),(8812,'2018-07-02 23:05:29',459881667104997376,434,13),(8813,'2018-07-02 23:05:30',148942504077557760,434,8),(8814,'2018-07-02 23:05:31',459881667104997376,434,16),(8815,'2018-07-02 23:05:32',459881667104997376,434,17),(8816,'2018-07-02 23:05:34',148942504077557760,434,10),(8817,'2018-07-02 23:05:45',459883167160205313,434,11),(8818,'2018-07-02 23:05:46',459883167160205313,434,12),(8819,'2018-07-02 23:05:47',459883167160205313,434,12),(8820,'2018-07-02 23:05:48',459883167160205313,434,15),(8821,'2018-07-02 23:05:48',459883167160205313,434,7),(8822,'2018-07-02 23:05:49',459883167160205313,434,15),(8823,'2018-07-02 23:06:06',459884642192064512,434,12),(8824,'2018-07-02 23:06:07',459884642192064512,434,10),(8825,'2018-07-02 23:06:08',459884642192064512,434,19),(8826,'2018-07-02 23:06:08',459884642192064512,434,11),(8827,'2018-07-02 23:06:09',459884642192064512,434,15),(8828,'2018-07-02 23:06:10',459884642192064512,434,14),(8829,'2018-07-02 23:06:28',148942504077557760,434,12),(8830,'2018-07-02 23:06:28',459834182961463299,434,13),(8831,'2018-07-02 23:06:29',459834182961463299,434,7),(8832,'2018-07-02 23:06:30',459834182961463299,434,14),(8833,'2018-07-02 23:06:30',148942504077557760,434,15),(8834,'2018-07-02 23:06:31',459834182961463299,434,8),(8835,'2018-07-02 23:06:32',148942504077557760,434,16),(8836,'2018-07-02 23:06:32',459834182961463299,434,11),(8837,'2018-07-02 23:06:33',459834182961463299,434,10),(8838,'2018-07-02 23:06:34',148942504077557760,434,8),(8839,'2018-07-02 23:36:13',262771588946984963,435,25),(8840,'2018-07-02 23:36:26',459883167160205313,435,10),(8841,'2018-07-02 23:36:28',459883167160205313,435,9),(8842,'2018-07-02 23:36:42',459884642192064512,435,16),(8843,'2018-07-02 23:36:44',459884642192064512,435,15),(8844,'2018-07-02 23:36:45',459884642192064512,435,18),(8845,'2018-07-02 23:36:47',459884642192064512,435,14),(8846,'2018-07-02 23:39:54',211232684209340426,435,21),(8847,'2018-07-02 23:40:03',211232684209340426,435,23),(8848,'2018-07-03 00:02:29',201102155896193024,436,24),(8849,'2018-07-03 00:02:30',201102155896193024,436,12),(8850,'2018-07-03 00:02:32',201102155896193024,436,11),(8851,'2018-07-03 00:02:33',201102155896193024,436,12),(8852,'2018-07-03 00:02:34',201102155896193024,436,23),(8853,'2018-07-03 00:02:36',201102155896193024,436,12),(8854,'2018-07-03 00:03:09',459873273308643328,436,9),(8855,'2018-07-03 00:03:10',459873273308643328,436,15),(8856,'2018-07-03 00:03:11',459873273308643328,436,18),(8857,'2018-07-03 00:36:47',457300954660995114,437,24),(8858,'2018-07-03 00:36:48',201102155896193024,437,24),(8859,'2018-07-03 00:36:49',200340393596944384,437,9),(8860,'2018-07-03 00:36:49',457300954660995114,437,11),(8861,'2018-07-03 00:36:50',200340393596944384,437,9),(8862,'2018-07-03 00:36:51',457300954660995114,437,11),(8863,'2018-07-03 00:36:51',200340393596944384,437,23),(8864,'2018-07-03 00:36:52',200340393596944384,437,12),(8865,'2018-07-03 00:36:53',457300954660995114,437,11),(8866,'2018-07-03 00:36:54',201102155896193024,437,25),(8867,'2018-07-03 00:36:55',200340393596944384,437,14),(8868,'2018-07-03 00:36:55',201102155896193024,437,17),(8869,'2018-07-03 01:17:59',211232684209340426,438,20),(8870,'2018-07-03 01:18:01',211232684209340426,438,18),(8871,'2018-07-03 01:18:02',211232684209340426,438,19),(8872,'2018-07-03 01:18:03',211232684209340426,438,25),(8873,'2018-07-03 01:18:05',200340393596944384,438,23),(8874,'2018-07-03 01:18:05',211232684209340426,438,28),(8875,'2018-07-03 01:18:05',200340393596944384,438,11),(8876,'2018-07-03 01:18:05',200340393596944384,438,17),(8877,'2018-07-03 01:33:07',200340393596944384,439,16),(8878,'2018-07-03 01:33:07',200340393596944384,439,10),(8879,'2018-07-03 01:33:08',457300954660995114,439,24),(8880,'2018-07-03 01:33:08',200340393596944384,439,12),(8881,'2018-07-03 01:33:08',200340393596944384,439,24),(8882,'2018-07-03 01:33:09',200340393596944384,439,23),(8883,'2018-07-03 01:33:09',150649616772235264,439,16),(8884,'2018-07-03 01:33:09',200340393596944384,439,15),(8885,'2018-07-03 01:49:09',150649616772235264,440,8),(8886,'2018-07-03 01:49:11',457300954660995114,440,20),(8887,'2018-07-03 01:49:11',150649616772235264,440,10),(8888,'2018-07-03 01:49:11',200340393596944384,440,24),(8889,'2018-07-03 01:49:11',200340393596944384,440,14),(8890,'2018-07-03 01:49:11',150649616772235264,440,10),(8891,'2018-07-03 01:49:12',200340393596944384,440,25),(8892,'2018-07-03 01:49:12',150649616772235264,440,14),(8893,'2018-07-03 01:49:12',200340393596944384,440,24),(8894,'2018-07-03 01:49:12',150649616772235264,440,11),(8895,'2018-07-03 01:49:12',200340393596944384,440,23),(8896,'2018-07-03 01:49:12',150649616772235264,440,7),(8897,'2018-07-03 01:49:12',200340393596944384,440,17),(8898,'2018-07-03 01:49:12',200340393596944384,440,24),(8899,'2018-07-03 01:49:13',200340393596944384,440,18),(8900,'2018-07-03 02:05:52',201102155896193024,441,17),(8901,'2018-07-03 02:05:52',201102155896193024,441,16),(8902,'2018-07-03 02:05:53',201102155896193024,441,15),(8903,'2018-07-03 02:05:54',201102155896193024,441,10),(8904,'2018-07-03 02:06:06',459873273308643328,441,14),(8905,'2018-07-03 02:06:06',459873273308643328,441,20),(8906,'2018-07-03 02:06:07',459873273308643328,441,17),(8907,'2018-07-03 02:06:08',459873273308643328,441,15),(8908,'2018-07-03 02:06:09',459873273308643328,441,9),(8909,'2018-07-03 02:06:14',459873273308643328,441,15),(8910,'2018-07-03 02:06:15',459873273308643328,441,15),(8911,'2018-07-03 02:06:20',457300954660995114,441,25),(8912,'2018-07-03 02:06:24',459876383431327746,441,11),(8913,'2018-07-03 02:06:24',459876383431327746,441,14),(8914,'2018-07-03 02:06:25',457300954660995114,441,21),(8915,'2018-07-03 02:06:25',459876383431327746,441,17),(8916,'2018-07-03 02:06:26',459876383431327746,441,12),(8917,'2018-07-03 02:06:26',150649616772235264,441,12),(8918,'2018-07-03 02:06:26',459876383431327746,441,14),(8919,'2018-07-03 02:06:27',150649616772235264,441,15),(8920,'2018-07-03 02:06:27',150649616772235264,441,12),(8921,'2018-07-03 02:06:28',150649616772235264,441,11),(8922,'2018-07-03 02:06:30',457300954660995114,441,10),(8923,'2018-07-03 02:06:31',150649616772235264,441,9),(8924,'2018-07-03 02:06:32',150649616772235264,441,16),(8925,'2018-07-03 02:06:32',246788321404125185,441,6),(8926,'2018-07-03 02:06:37',459883167160205313,441,11),(8927,'2018-07-03 02:06:37',246788321404125185,441,13),(8928,'2018-07-03 02:06:37',459883167160205313,441,18),(8929,'2018-07-03 02:06:38',150649616772235264,441,13),(8930,'2018-07-03 02:06:38',459883167160205313,441,15),(8931,'2018-07-03 02:06:38',459883167160205313,441,15),(8932,'2018-07-03 02:06:39',272423601922375680,441,11),(8933,'2018-07-03 02:06:39',457300954660995114,441,17),(8934,'2018-07-03 02:21:11',200340393596944384,442,10),(8935,'2018-07-03 02:21:12',200340393596944384,442,12),(8936,'2018-07-03 02:21:14',200340393596944384,442,13),(8937,'2018-07-03 02:21:15',200340393596944384,442,23),(8938,'2018-07-03 02:21:17',200340393596944384,442,21),(8939,'2018-07-03 02:21:17',150649616772235264,442,8),(8940,'2018-07-03 02:21:21',457300954660995114,442,21),(8941,'2018-07-03 02:21:26',200340393596944384,442,18),(8942,'2018-07-03 02:21:28',200340393596944384,442,21),(8943,'2018-07-03 02:21:29',457300954660995114,442,12),(8944,'2018-07-03 02:21:31',200340393596944384,442,17),(8945,'2018-07-03 02:21:46',433759248800022532,442,13),(8946,'2018-07-03 02:21:55',457300954660995114,442,9),(8947,'2018-07-03 02:21:58',433759248800022532,442,17),(8948,'2018-07-03 02:22:01',433759248800022532,442,10),(8949,'2018-07-03 02:22:03',433759248800022532,442,10),(8950,'2018-07-03 02:22:16',433759248800022532,442,7),(8951,'2018-07-03 02:22:25',433759248800022532,442,12),(8952,'2018-07-03 02:22:45',246788321404125185,442,7),(8953,'2018-07-03 02:22:52',246788321404125185,442,8),(8954,'2018-07-03 02:23:05',272423601922375680,442,10),(8955,'2018-07-03 02:23:06',163770616581718017,442,11),(8956,'2018-07-03 02:23:08',163770616581718017,442,8),(8957,'2018-07-03 02:23:09',163770616581718017,442,9),(8958,'2018-07-03 02:23:10',163770616581718017,442,13),(8959,'2018-07-03 02:23:11',163770616581718017,442,15),(8960,'2018-07-03 02:23:12',163770616581718017,442,10),(8961,'2018-07-03 02:23:14',163770616581718017,442,13),(8962,'2018-07-03 02:23:15',272423601922375680,442,10),(8963,'2018-07-03 02:23:16',163770616581718017,442,7),(8964,'2018-07-03 02:23:33',246788321404125185,442,9),(8965,'2018-07-03 02:23:34',205006241808777216,442,8),(8966,'2018-07-03 02:23:36',410462121063874561,442,8),(8967,'2018-07-03 02:23:38',272423601922375680,442,9),(8968,'2018-07-03 02:23:39',205006241808777216,442,13),(8969,'2018-07-03 02:23:40',410462121063874561,442,16),(8970,'2018-07-03 02:23:41',205006241808777216,442,11),(8971,'2018-07-03 02:23:44',410462121063874561,442,16),(8972,'2018-07-03 02:23:46',205006241808777216,442,6),(8973,'2018-07-03 02:23:46',205006241808777216,442,11),(8974,'2018-07-03 02:23:49',410462121063874561,442,16),(8975,'2018-07-03 02:23:51',272423601922375680,442,8),(8976,'2018-07-03 02:24:00',457300954660995114,442,24),(8977,'2018-07-03 02:24:04',457300954660995114,442,14),(8978,'2018-07-03 02:24:09',457300954660995114,442,20),(8979,'2018-07-03 02:24:15',272423601922375680,442,15),(8980,'2018-07-03 02:24:23',433759248800022532,442,17),(8981,'2018-07-03 02:59:28',200340393596944384,443,25),(8982,'2018-07-03 02:59:29',150649616772235264,443,10),(8983,'2018-07-03 02:59:30',200340393596944384,443,16),(8984,'2018-07-03 02:59:30',200340393596944384,443,14),(8985,'2018-07-03 02:59:31',200340393596944384,443,17),(8986,'2018-07-03 02:59:31',150649616772235264,443,12),(8987,'2018-07-03 02:59:31',200340393596944384,443,16),(8988,'2018-07-03 02:59:32',200340393596944384,443,11),(8989,'2018-07-03 02:59:33',150649616772235264,443,9),(8990,'2018-07-03 02:59:33',200340393596944384,443,12),(8991,'2018-07-03 02:59:34',200340393596944384,443,24),(8992,'2018-07-03 02:59:44',150649616772235264,443,7),(8993,'2018-07-03 02:59:46',150649616772235264,443,12),(8994,'2018-07-03 02:59:49',324727149930086400,443,11),(8995,'2018-07-03 03:34:25',200340393596944384,444,22),(8996,'2018-07-03 03:34:25',200340393596944384,444,17),(8997,'2018-07-03 03:34:27',200340393596944384,444,23),(8998,'2018-07-03 03:34:28',200340393596944384,444,16),(8999,'2018-07-03 03:34:28',429615167492325376,444,11),(9000,'2018-07-03 03:34:29',457300954660995114,444,24),(9001,'2018-07-03 03:34:29',200340393596944384,444,19),(9002,'2018-07-03 03:34:31',200340393596944384,444,19),(9003,'2018-07-03 03:34:32',429615167492325376,444,14),(9004,'2018-07-03 03:34:33',200340393596944384,444,12),(9005,'2018-07-03 03:34:34',457300954660995114,444,24),(9006,'2018-07-03 03:34:34',200340393596944384,444,22),(9007,'2018-07-03 03:34:37',457300954660995114,444,17),(9008,'2018-07-03 03:34:38',429615167492325376,444,9),(9009,'2018-07-03 04:06:00',200340393596944384,445,17),(9010,'2018-07-03 04:06:01',457300954660995114,445,24),(9011,'2018-07-03 04:06:05',457300954660995114,445,18),(9012,'2018-07-03 04:06:09',200340393596944384,445,19),(9013,'2018-07-03 04:06:11',457300954660995114,445,16),(9014,'2018-07-03 04:06:16',457300954660995114,445,23),(9015,'2018-07-03 04:06:51',457300954660995114,445,17),(9016,'2018-07-03 04:06:55',457300954660995114,445,15),(9017,'2018-07-03 04:06:58',433759248800022532,445,13),(9018,'2018-07-03 04:07:00',457300954660995114,445,21),(9019,'2018-07-03 04:07:01',433759248800022532,445,8),(9020,'2018-07-03 04:07:03',433759248800022532,445,16),(9021,'2018-07-03 04:07:20',433759248800022532,445,14),(9022,'2018-07-03 04:07:24',457300954660995114,445,14),(9023,'2018-07-03 04:11:09',429615167492325376,445,11),(9024,'2018-07-03 04:11:15',429615167492325376,445,10),(9025,'2018-07-03 04:20:48',163770616581718017,446,12),(9026,'2018-07-03 04:20:49',163770616581718017,446,6),(9027,'2018-07-03 04:20:50',163770616581718017,446,10),(9028,'2018-07-03 04:20:51',163770616581718017,446,8),(9029,'2018-07-03 04:20:54',163770616581718017,446,7),(9030,'2018-07-03 04:20:56',163770616581718017,446,11),(9031,'2018-07-03 04:20:57',163770616581718017,446,13),(9032,'2018-07-03 04:20:58',163770616581718017,446,6),(9033,'2018-07-03 04:21:00',163770616581718017,446,13),(9034,'2018-07-03 04:21:01',163770616581718017,446,14),(9035,'2018-07-03 04:34:54',185698541052755968,447,7),(9036,'2018-07-03 04:34:56',185698541052755968,447,11),(9037,'2018-07-03 04:35:08',185698541052755968,447,8),(9038,'2018-07-03 04:35:10',185698541052755968,447,11),(9039,'2018-07-03 04:35:12',185698541052755968,447,8),(9040,'2018-07-03 04:35:13',185698541052755968,447,9),(9041,'2018-07-03 04:35:14',185698541052755968,447,6),(9042,'2018-07-03 04:35:21',185698541052755968,447,14),(9043,'2018-07-03 04:36:32',457300954660995114,447,11),(9044,'2018-07-03 04:36:36',457300954660995114,447,16),(9045,'2018-07-03 04:36:41',457300954660995114,447,17),(9046,'2018-07-03 04:36:57',457300954660995114,447,21),(9047,'2018-07-03 04:37:03',457300954660995114,447,18),(9048,'2018-07-03 04:37:07',429615167492325376,447,17),(9049,'2018-07-03 04:37:10',457300954660995114,447,9),(9050,'2018-07-03 04:37:13',429615167492325376,447,11),(9051,'2018-07-03 04:37:16',457300954660995114,447,22),(9052,'2018-07-03 04:37:19',429615167492325376,447,9),(9053,'2018-07-03 04:37:33',457300954660995114,447,12),(9054,'2018-07-03 04:37:38',185698541052755968,447,10),(9055,'2018-07-03 04:37:47',429615167492325376,447,12),(9056,'2018-07-03 04:37:52',429615167492325376,447,13),(9057,'2018-07-03 04:38:08',429615167492325376,447,8),(9058,'2018-07-03 04:38:42',457300954660995114,447,21),(9059,'2018-07-03 05:06:39',185698541052755968,448,14),(9060,'2018-07-03 05:06:41',185698541052755968,448,8),(9061,'2018-07-03 05:06:42',185698541052755968,448,15),(9062,'2018-07-03 05:06:43',185698541052755968,448,8),(9063,'2018-07-03 05:06:43',200340393596944384,448,19),(9064,'2018-07-03 05:06:44',185698541052755968,448,12),(9065,'2018-07-03 05:06:44',324727149930086400,448,15),(9066,'2018-07-03 05:06:44',200340393596944384,448,21),(9067,'2018-07-03 05:06:44',185698541052755968,448,10),(9068,'2018-07-03 05:06:45',460761978135248896,448,12),(9069,'2018-07-03 05:06:45',200340393596944384,448,20),(9070,'2018-07-03 05:06:45',185698541052755968,448,9),(9071,'2018-07-03 05:06:47',200340393596944384,448,21),(9072,'2018-07-03 05:06:48',185698541052755968,448,14),(9073,'2018-07-03 05:06:50',185698541052755968,448,7),(9074,'2018-07-03 05:06:52',460761978135248896,448,13),(9075,'2018-07-03 05:06:54',457300954660995114,448,17),(9076,'2018-07-03 05:06:54',200340393596944384,448,14),(9077,'2018-07-03 05:06:55',200340393596944384,448,15),(9078,'2018-07-03 05:06:55',460761978135248896,448,9),(9079,'2018-07-03 05:06:56',200340393596944384,448,22),(9080,'2018-07-03 05:06:56',457300954660995114,448,11),(9081,'2018-07-03 05:06:59',460761978135248896,448,10),(9082,'2018-07-03 06:04:04',460761978135248896,449,15),(9083,'2018-07-03 06:04:08',460761978135248896,449,22),(9084,'2018-07-03 06:04:13',460761978135248896,449,17),(9085,'2018-07-03 06:04:17',457300954660995114,449,24),(9086,'2018-07-03 06:04:18',460761978135248896,449,20),(9087,'2018-07-03 06:04:55',200340393596944384,449,21),(9088,'2018-07-03 06:05:19',200340393596944384,449,17),(9089,'2018-07-03 06:05:21',200340393596944384,449,17),(9090,'2018-07-03 06:05:43',433759248800022532,449,12),(9091,'2018-07-03 06:05:44',433759248800022532,449,11),(9092,'2018-07-03 06:05:45',433759248800022532,449,13),(9093,'2018-07-03 06:05:47',433759248800022532,449,12),(9094,'2018-07-03 06:08:00',460761978135248896,449,18),(9095,'2018-07-03 06:08:08',460761978135248896,449,17),(9096,'2018-07-03 07:04:50',460761978135248896,450,18),(9097,'2018-07-03 07:04:54',460761978135248896,450,19),(9098,'2018-07-03 07:04:57',460761978135248896,450,15),(9099,'2018-07-03 07:05:00',460761978135248896,450,9),(9100,'2018-07-03 07:05:04',460761978135248896,450,13),(9101,'2018-07-03 07:05:07',460761978135248896,450,17),(9102,'2018-07-03 07:05:11',460761978135248896,450,11),(9103,'2018-07-03 07:05:16',272423601922375680,450,9),(9104,'2018-07-03 07:05:17',460761978135248896,450,12),(9105,'2018-07-03 07:05:23',272423601922375680,450,8),(9106,'2018-07-03 07:05:35',272423601922375680,450,15),(9107,'2018-07-03 07:34:53',457300954660995114,451,23),(9108,'2018-07-03 07:34:56',457300954660995114,451,20),(9109,'2018-07-03 07:34:58',460761978135248896,451,21),(9110,'2018-07-03 07:35:00',457300954660995114,451,10),(9111,'2018-07-03 07:35:03',460761978135248896,451,19),(9112,'2018-07-03 07:35:05',457300954660995114,451,10),(9113,'2018-07-03 07:35:07',460761978135248896,451,12),(9114,'2018-07-03 07:35:10',457300954660995114,451,10),(9115,'2018-07-03 07:35:11',460761978135248896,451,23),(9116,'2018-07-03 07:35:15',457300954660995114,451,12),(9117,'2018-07-03 07:35:16',460761978135248896,451,23),(9118,'2018-07-03 07:35:22',460761978135248896,451,17),(9119,'2018-07-03 07:35:27',265907268942299136,451,19),(9120,'2018-07-03 07:35:30',460761978135248896,451,16),(9121,'2018-07-03 07:35:31',265907268942299136,451,14),(9122,'2018-07-03 07:35:32',265907268942299136,451,8),(9123,'2018-07-03 07:35:33',460761978135248896,451,11),(9124,'2018-07-03 07:35:33',265907268942299136,451,10),(9125,'2018-07-03 07:35:34',265907268942299136,451,13),(9126,'2018-07-03 07:49:37',457300954660995114,452,22),(9127,'2018-07-03 07:49:42',460761978135248896,452,23),(9128,'2018-07-03 07:49:53',457300954660995114,452,20),(9129,'2018-07-03 07:49:57',460761978135248896,452,17),(9130,'2018-07-03 07:50:02',460761978135248896,452,13),(9131,'2018-07-03 07:50:09',460761978135248896,452,14),(9132,'2018-07-03 07:50:14',460761978135248896,452,11),(9133,'2018-07-03 07:50:16',457300954660995114,452,13),(9134,'2018-07-03 07:50:20',460761978135248896,452,23),(9135,'2018-07-03 07:50:24',457300954660995114,452,13),(9136,'2018-07-03 07:50:24',460761978135248896,452,21),(9137,'2018-07-03 07:50:29',457300954660995114,452,21),(9138,'2018-07-03 07:50:39',457300954660995114,452,17),(9139,'2018-07-03 07:50:43',460761978135248896,452,9),(9140,'2018-07-03 07:50:47',457300954660995114,452,24),(9141,'2018-07-03 07:50:54',457300954660995114,452,9),(9142,'2018-07-03 07:51:28',457300954660995114,452,16),(9143,'2018-07-03 08:20:35',457300954660995114,453,18),(9144,'2018-07-03 08:20:37',460761978135248896,453,14),(9145,'2018-07-03 08:20:40',457300954660995114,453,24),(9146,'2018-07-03 08:20:41',460761978135248896,453,10),(9147,'2018-07-03 08:20:45',460761978135248896,453,19),(9148,'2018-07-03 08:20:46',457300954660995114,453,17),(9149,'2018-07-03 08:20:50',457300954660995114,453,9),(9150,'2018-07-03 08:20:54',460761978135248896,453,11),(9151,'2018-07-03 08:20:55',457300954660995114,453,16),(9152,'2018-07-03 08:20:59',460761978135248896,453,12),(9153,'2018-07-03 08:59:21',357981974931046400,454,10),(9154,'2018-07-03 08:59:22',457300954660995114,454,25),(9155,'2018-07-03 08:59:25',457300954660995114,454,15),(9156,'2018-07-03 08:59:26',325565391478718464,454,21),(9157,'2018-07-03 08:59:26',357981974931046400,454,11),(9158,'2018-07-03 08:59:27',457300954660995114,454,21),(9159,'2018-07-03 08:59:30',325565391478718464,454,20),(9160,'2018-07-03 08:59:31',457300954660995114,454,17),(9161,'2018-07-03 08:59:32',325565391478718464,454,20),(9162,'2018-07-03 08:59:33',357981974931046400,454,15),(9163,'2018-07-03 08:59:34',457300954660995114,454,11),(9164,'2018-07-03 09:36:37',357981974931046400,455,10),(9165,'2018-07-03 09:36:40',460761978135248896,455,14),(9166,'2018-07-03 09:36:45',357981974931046400,455,17),(9167,'2018-07-03 09:37:00',357981974931046400,455,10),(9168,'2018-07-03 09:37:04',357981974931046400,455,9),(9169,'2018-07-03 09:37:05',460761978135248896,455,17),(9170,'2018-07-03 09:37:10',460761978135248896,455,10),(9171,'2018-07-03 09:37:15',460761978135248896,455,17),(9172,'2018-07-03 09:37:18',457300954660995114,455,17),(9173,'2018-07-03 09:37:22',460761978135248896,455,14),(9174,'2018-07-03 09:37:22',457300954660995114,455,10),(9175,'2018-07-03 09:37:26',457300954660995114,455,21),(9176,'2018-07-03 09:37:31',460761978135248896,455,23),(9177,'2018-07-03 09:37:33',457300954660995114,455,12),(9178,'2018-07-03 09:37:36',460761978135248896,455,17),(9179,'2018-07-03 09:37:39',457300954660995114,455,14),(9180,'2018-07-03 09:37:43',460761978135248896,455,19),(9181,'2018-07-03 09:52:15',325565391478718464,456,20),(9182,'2018-07-03 09:52:28',457300954660995114,456,21),(9183,'2018-07-03 09:52:32',457300954660995114,456,24),(9184,'2018-07-03 09:52:43',325565391478718464,456,20),(9185,'2018-07-03 09:52:48',325565391478718464,456,28),(9186,'2018-07-03 09:53:31',325565391478718464,456,24),(9187,'2018-07-03 09:54:21',325565391478718464,456,19),(9188,'2018-07-03 09:55:23',325565391478718464,456,17),(9189,'2018-07-03 10:14:53',325565391478718464,457,17),(9190,'2018-07-03 10:14:57',325565391478718464,457,27),(9191,'2018-07-03 10:15:01',325565391478718464,457,15),(9192,'2018-07-03 10:15:04',357981974931046400,457,11),(9193,'2018-07-03 10:15:04',325565391478718464,457,13),(9194,'2018-07-03 10:15:05',262771588946984963,457,23),(9195,'2018-07-03 10:15:06',262771588946984963,457,19),(9196,'2018-07-03 10:35:30',325565391478718464,458,30),(9197,'2018-07-03 10:35:44',325565391478718464,458,28),(9198,'2018-07-03 10:35:47',325565391478718464,458,21),(9199,'2018-07-03 10:35:51',325565391478718464,458,30),(9200,'2018-07-03 10:35:54',325565391478718464,458,17),(9201,'2018-07-03 10:36:09',142612779377885185,458,19),(9202,'2018-07-03 10:36:10',142612779377885185,458,7),(9203,'2018-07-03 10:36:11',142612779377885185,458,17),(9204,'2018-07-03 10:36:13',142612779377885185,458,13),(9205,'2018-07-03 10:36:14',142612779377885185,458,15),(9206,'2018-07-03 10:36:15',142612779377885185,458,8),(9207,'2018-07-03 10:36:16',142612779377885185,458,14),(9208,'2018-07-03 10:47:08',262771588946984963,459,29),(9209,'2018-07-03 10:47:09',262771588946984963,459,20),(9210,'2018-07-03 10:47:09',262771588946984963,459,29),(9211,'2018-07-03 10:47:10',262771588946984963,459,31),(9212,'2018-07-03 10:47:10',262771588946984963,459,21),(9213,'2018-07-03 10:47:11',262771588946984963,459,19),(9214,'2018-07-03 10:47:11',262771588946984963,459,13),(9215,'2018-07-03 10:47:11',262771588946984963,459,19),(9216,'2018-07-03 10:48:34',262771588946984963,459,19),(9217,'2018-07-03 10:49:31',390618369545601028,459,21),(9218,'2018-07-03 10:49:33',424563962303086594,459,15),(9219,'2018-07-03 10:49:35',390618369545601028,459,14),(9220,'2018-07-03 11:03:09',357981974931046400,460,7),(9221,'2018-07-03 11:03:10',274301199841361920,460,14),(9222,'2018-07-03 11:03:11',274301199841361920,460,10),(9223,'2018-07-03 11:03:12',297748308523483138,460,16),(9224,'2018-07-03 11:03:12',274301199841361920,460,8),(9225,'2018-07-03 11:03:13',262771588946984963,460,11),(9226,'2018-07-03 11:03:14',262771588946984963,460,16),(9227,'2018-07-03 11:03:14',262771588946984963,460,13),(9228,'2018-07-03 11:03:15',262771588946984963,460,30),(9229,'2018-07-03 11:03:16',262771588946984963,460,12),(9230,'2018-07-03 11:03:16',262771588946984963,460,12),(9231,'2018-07-03 11:03:17',262771588946984963,460,23),(9232,'2018-07-03 11:03:18',274301199841361920,460,14),(9233,'2018-07-03 11:03:18',274301199841361920,460,15),(9234,'2018-07-03 11:03:19',274301199841361920,460,12),(9235,'2018-07-03 11:03:24',297748308523483138,460,13),(9236,'2018-07-03 11:03:32',297748308523483138,460,16),(9237,'2018-07-03 11:03:36',297748308523483138,460,18),(9238,'2018-07-03 11:03:39',297748308523483138,460,13),(9239,'2018-07-03 11:03:53',297748308523483138,460,19),(9240,'2018-07-03 11:04:05',424563962303086594,460,13),(9241,'2018-07-03 11:04:07',424563962303086594,460,12),(9242,'2018-07-03 11:04:09',424563962303086594,460,11),(9243,'2018-07-03 11:04:16',211232684209340426,460,18),(9244,'2018-07-03 11:04:18',211232684209340426,460,27),(9245,'2018-07-03 11:04:19',211232684209340426,460,23),(9246,'2018-07-03 11:04:21',211232684209340426,460,15),(9247,'2018-07-03 11:04:27',424563962303086594,460,16),(9248,'2018-07-03 11:22:26',390618369545601028,461,16),(9249,'2018-07-03 11:22:32',390618369545601028,461,15),(9250,'2018-07-03 11:22:32',424563962303086594,461,12),(9251,'2018-07-03 11:22:35',390618369545601028,461,12),(9252,'2018-07-03 11:22:35',424563962303086594,461,15),(9253,'2018-07-03 11:22:37',390618369545601028,461,11),(9254,'2018-07-03 11:23:47',211232684209340426,461,17),(9255,'2018-07-03 11:35:06',357981974931046400,462,7),(9256,'2018-07-03 11:35:06',357981974931046400,462,14),(9257,'2018-07-03 11:35:07',357981974931046400,462,10),(9258,'2018-07-03 11:35:07',357981974931046400,462,12),(9259,'2018-07-03 11:35:08',357981974931046400,462,13),(9260,'2018-07-03 11:35:08',262771588946984963,462,28),(9261,'2018-07-03 11:44:43',262771588946984963,463,31),(9262,'2018-07-03 11:44:43',262771588946984963,463,26),(9263,'2018-07-03 11:44:44',262771588946984963,463,31),(9264,'2018-07-03 11:44:44',262771588946984963,463,23),(9265,'2018-07-03 11:44:45',262771588946984963,463,24),(9266,'2018-07-03 11:44:46',262771588946984963,463,23),(9267,'2018-07-03 11:44:54',262771588946984963,463,17),(9268,'2018-07-03 11:44:54',262771588946984963,463,24),(9269,'2018-07-03 11:45:19',357981974931046400,463,14),(9270,'2018-07-03 11:45:22',357981974931046400,463,14),(9271,'2018-07-03 11:45:27',357981974931046400,463,14),(9272,'2018-07-03 11:45:31',357981974931046400,463,20),(9273,'2018-07-03 11:59:09',142612779377885185,464,12),(9274,'2018-07-03 11:59:09',357981974931046400,464,17),(9275,'2018-07-03 11:59:10',142612779377885185,464,19),(9276,'2018-07-03 11:59:10',142612779377885185,464,8),(9277,'2018-07-03 11:59:11',142612779377885185,464,12),(9278,'2018-07-03 11:59:13',142612779377885185,464,8),(9279,'2018-07-03 11:59:14',142612779377885185,464,14),(9280,'2018-07-03 11:59:16',142612779377885185,464,18),(9281,'2018-07-03 11:59:17',142612779377885185,464,17),(9282,'2018-07-03 11:59:26',262771588946984963,464,12),(9283,'2018-07-03 11:59:28',262771588946984963,464,14),(9284,'2018-07-03 11:59:29',325565391478718464,464,25),(9285,'2018-07-03 11:59:29',262771588946984963,464,25),(9286,'2018-07-03 11:59:32',325565391478718464,464,29),(9287,'2018-07-03 11:59:40',262771588946984963,464,27),(9288,'2018-07-03 11:59:41',262771588946984963,464,29),(9289,'2018-07-03 11:59:43',262771588946984963,464,21),(9290,'2018-07-03 11:59:44',262771588946984963,464,31),(9291,'2018-07-03 12:00:47',357981974931046400,464,20),(9292,'2018-07-03 12:00:51',262771588946984963,464,18),(9293,'2018-07-03 12:02:36',262771588946984963,464,15),(9294,'2018-07-03 12:02:45',286105785052954626,464,16),(9295,'2018-07-03 12:03:21',286105785052954626,464,15),(9296,'2018-07-03 12:49:47',274301199841361920,465,15),(9297,'2018-07-03 12:49:47',274301199841361920,465,17),(9298,'2018-07-03 12:49:48',274301199841361920,465,18),(9299,'2018-07-03 12:49:49',274301199841361920,465,15),(9300,'2018-07-03 12:49:50',274301199841361920,465,13),(9301,'2018-07-03 12:49:55',185698541052755968,465,13),(9302,'2018-07-03 12:49:57',185698541052755968,465,11),(9303,'2018-07-03 12:49:59',185698541052755968,465,8),(9304,'2018-07-03 12:50:01',185698541052755968,465,12),(9305,'2018-07-03 12:50:03',185698541052755968,465,9),(9306,'2018-07-03 12:50:05',185698541052755968,465,10),(9307,'2018-07-03 12:50:07',185698541052755968,465,10),(9308,'2018-07-03 12:50:09',185698541052755968,465,11),(9309,'2018-07-03 12:50:30',211232684209340426,465,20),(9310,'2018-07-03 12:50:31',211232684209340426,465,21),(9311,'2018-07-03 12:50:33',211232684209340426,465,21),(9312,'2018-07-03 12:50:44',211232684209340426,465,29),(9313,'2018-07-03 12:50:45',211232684209340426,465,22),(9314,'2018-07-03 12:50:47',211232684209340426,465,15),(9315,'2018-07-03 12:50:53',357981974931046400,465,17),(9316,'2018-07-03 12:50:53',200340393596944384,465,19),(9317,'2018-07-03 12:50:56',200340393596944384,465,20),(9318,'2018-07-03 12:50:58',200340393596944384,465,18),(9319,'2018-07-03 12:50:59',265907268942299136,465,12),(9320,'2018-07-03 12:51:00',200340393596944384,465,15),(9321,'2018-07-03 12:51:00',265907268942299136,465,13),(9322,'2018-07-03 12:51:01',265907268942299136,465,20),(9323,'2018-07-03 12:51:02',200340393596944384,465,11),(9324,'2018-07-03 12:51:02',265907268942299136,465,17),(9325,'2018-07-03 12:59:40',357981974931046400,466,16),(9326,'2018-07-03 13:01:01',211232684209340426,466,24),(9327,'2018-07-03 13:01:03',211232684209340426,466,25),(9328,'2018-07-03 13:30:47',357981974931046400,467,9),(9329,'2018-07-03 13:30:47',357981974931046400,467,20),(9330,'2018-07-03 13:30:48',357981974931046400,467,11),(9331,'2018-07-03 13:30:49',357981974931046400,467,18),(9332,'2018-07-03 13:30:51',262771588946984963,467,16),(9333,'2018-07-03 13:30:52',262771588946984963,467,21),(9334,'2018-07-03 14:07:18',286105785052954626,468,9),(9335,'2018-07-03 14:07:18',294927961310625793,468,29),(9336,'2018-07-03 14:07:19',200340393596944384,468,14),(9337,'2018-07-03 14:07:19',357981974931046400,468,19),(9338,'2018-07-03 14:07:20',357981974931046400,468,13),(9339,'2018-07-03 14:07:20',286105785052954626,468,19),(9340,'2018-07-03 14:07:20',200340393596944384,468,24),(9341,'2018-07-03 14:07:20',357981974931046400,468,16),(9342,'2018-07-03 14:07:20',294927961310625793,468,14),(9343,'2018-07-03 14:07:21',357981974931046400,468,8),(9344,'2018-07-03 14:07:21',200340393596944384,468,17),(9345,'2018-07-03 14:47:08',294927961310625793,469,24),(9346,'2018-07-03 14:47:08',294927961310625793,469,27),(9347,'2018-07-03 14:47:09',274301199841361920,469,19),(9348,'2018-07-03 14:47:09',274301199841361920,469,21),(9349,'2018-07-03 14:47:10',274301199841361920,469,15),(9350,'2018-07-03 14:47:10',201102155896193024,469,17),(9351,'2018-07-03 14:47:10',274301199841361920,469,13),(9352,'2018-07-03 14:47:10',294927961310625793,469,12),(9353,'2018-07-03 14:47:10',201102155896193024,469,10),(9354,'2018-07-03 14:47:11',201102155896193024,469,20),(9355,'2018-07-03 14:47:11',325565391478718464,469,12),(9356,'2018-07-03 14:47:11',201102155896193024,469,14),(9357,'2018-07-03 14:47:11',325565391478718464,469,31),(9358,'2018-07-03 14:47:12',294927961310625793,469,12),(9359,'2018-07-03 14:47:12',325565391478718464,469,31),(9360,'2018-07-03 14:47:12',201102155896193024,469,22),(9361,'2018-07-03 14:47:12',211232684209340426,469,17),(9362,'2018-07-03 15:07:07',325565391478718464,470,13),(9363,'2018-07-03 15:07:07',200340393596944384,470,16),(9364,'2018-07-03 15:07:07',201102155896193024,470,17),(9365,'2018-07-03 15:07:07',200340393596944384,470,19),(9366,'2018-07-03 15:07:07',325565391478718464,470,12),(9367,'2018-07-03 15:07:08',201102155896193024,470,23),(9368,'2018-07-03 15:07:08',325565391478718464,470,25),(9369,'2018-07-03 15:07:08',200340393596944384,470,23),(9370,'2018-07-03 15:07:08',325565391478718464,470,31),(9371,'2018-07-03 15:07:08',200340393596944384,470,14),(9372,'2018-07-03 15:07:08',201102155896193024,470,14),(9373,'2018-07-03 15:07:09',201102155896193024,470,10),(9374,'2018-07-03 15:07:09',200340393596944384,470,18),(9375,'2018-07-03 15:07:09',325565391478718464,470,13),(9376,'2018-07-03 15:07:09',274301199841361920,470,12),(9377,'2018-07-03 15:07:09',200340393596944384,470,21),(9378,'2018-07-03 15:07:09',325565391478718464,470,25),(9379,'2018-07-03 15:47:35',357981974931046400,471,18),(9380,'2018-07-03 15:47:35',201102155896193024,471,17),(9381,'2018-07-03 15:47:35',388505302292627456,471,17),(9382,'2018-07-03 15:47:36',274301199841361920,471,18),(9383,'2018-07-03 15:47:36',201102155896193024,471,26),(9384,'2018-07-03 15:47:36',200340393596944384,471,17),(9385,'2018-07-03 15:47:36',201102155896193024,471,21),(9386,'2018-07-03 15:47:36',200340393596944384,471,19),(9387,'2018-07-03 15:47:37',201102155896193024,471,20),(9388,'2018-07-03 15:47:37',200340393596944384,471,13),(9389,'2018-07-03 15:47:37',438094660712267778,471,14),(9390,'2018-07-03 15:47:37',201102155896193024,471,19),(9391,'2018-07-03 15:47:37',200340393596944384,471,13),(9392,'2018-07-03 15:47:38',200340393596944384,471,17),(9393,'2018-07-03 15:47:38',388505302292627456,471,12),(9394,'2018-07-03 15:47:38',200340393596944384,471,17),(9395,'2018-07-03 15:47:39',200340393596944384,471,22),(9396,'2018-07-03 15:47:39',438094660712267778,471,11),(9397,'2018-07-03 15:47:40',200340393596944384,471,12),(9398,'2018-07-03 15:47:41',388505302292627456,471,13),(9399,'2018-07-03 15:47:41',459873273308643328,471,19),(9400,'2018-07-03 15:47:42',438094660712267778,471,19),(9401,'2018-07-03 15:47:42',459873273308643328,471,20),(9402,'2018-07-03 15:47:42',459873273308643328,471,14),(9403,'2018-07-03 15:47:43',459873273308643328,471,18),(9404,'2018-07-03 15:47:43',459873273308643328,471,21),(9405,'2018-07-03 15:47:45',454823752925052930,471,20),(9406,'2018-07-03 15:47:46',454823752925052930,471,12),(9407,'2018-07-03 15:47:46',274301199841361920,471,22),(9408,'2018-07-03 16:32:01',201102155896193024,472,10),(9409,'2018-07-03 16:32:02',201102155896193024,472,14),(9410,'2018-07-03 16:32:03',201102155896193024,472,15),(9411,'2018-07-03 16:32:04',201102155896193024,472,25),(9412,'2018-07-03 16:32:09',459873273308643328,472,10),(9413,'2018-07-03 16:32:09',459873273308643328,472,17),(9414,'2018-07-03 16:32:10',459873273308643328,472,18),(9415,'2018-07-03 16:32:15',459876383431327746,472,14),(9416,'2018-07-03 16:32:15',459876383431327746,472,10),(9417,'2018-07-03 16:32:16',459876383431327746,472,16),(9418,'2018-07-03 16:32:16',459876383431327746,472,19),(9419,'2018-07-03 16:32:16',459876383431327746,472,19),(9420,'2018-07-03 16:32:22',459883167160205313,472,7),(9421,'2018-07-03 16:32:23',459883167160205313,472,16),(9422,'2018-07-03 16:32:23',459883167160205313,472,12),(9423,'2018-07-03 16:32:24',459883167160205313,472,17),(9424,'2018-07-03 16:32:25',459883167160205313,472,17),(9425,'2018-07-03 16:32:29',459881667104997376,472,17),(9426,'2018-07-03 16:32:30',459881667104997376,472,12),(9427,'2018-07-03 16:32:30',459881667104997376,472,12),(9428,'2018-07-03 16:32:31',459881667104997376,472,16),(9429,'2018-07-03 16:32:32',459881667104997376,472,16),(9430,'2018-07-03 16:32:39',325565391478718464,472,27),(9431,'2018-07-03 16:33:16',218498162745278474,472,9),(9432,'2018-07-03 16:33:49',459883167160205313,472,13),(9433,'2018-07-03 16:33:52',325565391478718464,472,15),(9434,'2018-07-03 16:33:54',218498162745278474,472,11),(9435,'2018-07-03 16:33:58',218498162745278474,472,14),(9436,'2018-07-03 16:34:01',459881667104997376,472,12),(9437,'2018-07-03 16:34:02',218498162745278474,472,10),(9438,'2018-07-03 16:34:05',325565391478718464,472,16),(9439,'2018-07-03 16:35:19',211232684209340426,472,15),(9440,'2018-07-03 16:35:21',211232684209340426,472,11),(9441,'2018-07-03 16:35:22',211232684209340426,472,28),(9442,'2018-07-03 16:35:25',211232684209340426,472,15),(9443,'2018-07-03 16:47:09',357981974931046400,473,16),(9444,'2018-07-03 16:47:09',357981974931046400,473,12),(9445,'2018-07-03 16:47:10',357981974931046400,473,20),(9446,'2018-07-03 16:47:10',357981974931046400,473,10),(9447,'2018-07-03 16:47:10',357981974931046400,473,17),(9448,'2018-07-03 16:47:11',357981974931046400,473,15),(9449,'2018-07-03 16:47:11',357981974931046400,473,11),(9450,'2018-07-03 16:47:33',211232684209340426,473,20),(9451,'2018-07-03 16:47:34',211232684209340426,473,29),(9452,'2018-07-03 17:02:22',357981974931046400,474,18),(9453,'2018-07-03 17:02:23',357981974931046400,474,8),(9454,'2018-07-03 17:02:23',357981974931046400,474,12),(9455,'2018-07-03 17:02:23',357981974931046400,474,20),(9456,'2018-07-03 17:02:24',357981974931046400,474,18),(9457,'2018-07-03 17:02:24',357981974931046400,474,10),(9458,'2018-07-03 17:02:24',357981974931046400,474,13),(9459,'2018-07-03 17:02:40',357981974931046400,474,19),(9460,'2018-07-03 17:02:51',265907268942299136,474,15),(9461,'2018-07-03 17:02:58',265907268942299136,474,16),(9462,'2018-07-03 17:03:04',265907268942299136,474,19),(9463,'2018-07-03 17:37:05',357981974931046400,475,14),(9464,'2018-07-03 17:37:06',357981974931046400,475,18),(9465,'2018-07-03 17:37:07',357981974931046400,475,14),(9466,'2018-07-03 17:37:10',246788321404125185,475,13),(9467,'2018-07-03 17:37:11',357981974931046400,475,15),(9468,'2018-07-03 17:37:14',246788321404125185,475,15),(9469,'2018-07-03 17:37:17',246788321404125185,475,16),(9470,'2018-07-03 17:37:18',357981974931046400,475,19),(9471,'2018-07-03 17:37:22',246788321404125185,475,14),(9472,'2018-07-03 17:37:22',211232684209340426,475,13),(9473,'2018-07-03 17:37:23',211232684209340426,475,29),(9474,'2018-07-03 17:37:24',357981974931046400,475,21),(9475,'2018-07-03 17:37:24',357981974931046400,475,20),(9476,'2018-07-03 17:37:27',246788321404125185,475,8),(9477,'2018-07-03 17:37:29',211232684209340426,475,13),(9478,'2018-07-03 17:37:30',211232684209340426,475,27),(9479,'2018-07-03 17:37:33',246788321404125185,475,15),(9480,'2018-07-03 18:20:34',274301199841361920,476,11),(9481,'2018-07-03 18:20:34',357981974931046400,476,18),(9482,'2018-07-03 18:20:34',200340393596944384,476,12),(9483,'2018-07-03 18:20:34',457300954660995114,476,9),(9484,'2018-07-03 18:20:35',200340393596944384,476,19),(9485,'2018-07-03 18:20:35',274301199841361920,476,14),(9486,'2018-07-03 18:20:35',200340393596944384,476,17),(9487,'2018-07-03 18:20:35',357981974931046400,476,12),(9488,'2018-07-03 18:20:36',459881667104997376,476,17),(9489,'2018-07-03 18:20:36',200340393596944384,476,14),(9490,'2018-07-03 18:20:36',459881667104997376,476,9),(9491,'2018-07-03 18:20:36',200340393596944384,476,22),(9492,'2018-07-03 18:20:36',278115594879107074,476,10),(9493,'2018-07-03 18:20:36',274301199841361920,476,12),(9494,'2018-07-03 18:20:36',459881667104997376,476,8),(9495,'2018-07-03 18:20:37',200340393596944384,476,20),(9496,'2018-07-03 18:20:37',459881667104997376,476,8),(9497,'2018-07-03 18:20:37',457300954660995114,476,23),(9498,'2018-07-03 18:20:37',200340393596944384,476,11),(9499,'2018-07-03 18:20:37',274301199841361920,476,16),(9500,'2018-07-03 18:20:37',200340393596944384,476,23),(9501,'2018-07-03 18:20:38',460761978135248896,476,23),(9502,'2018-07-03 18:20:38',278115594879107074,476,14),(9503,'2018-07-03 18:20:38',429615167492325376,476,13),(9504,'2018-07-03 18:20:39',459876383431327746,476,13),(9505,'2018-07-03 18:20:39',459876383431327746,476,11),(9506,'2018-07-03 18:20:39',457300954660995114,476,17),(9507,'2018-07-03 18:20:40',459876383431327746,476,9),(9508,'2018-07-03 18:20:40',459876383431327746,476,17),(9509,'2018-07-03 18:20:40',278115594879107074,476,12),(9510,'2018-07-03 18:20:40',460761978135248896,476,14),(9511,'2018-07-03 18:20:42',429615167492325376,476,14),(9512,'2018-07-03 18:20:43',278115594879107074,476,10),(9513,'2018-07-03 18:20:43',457300954660995114,476,23),(9514,'2018-07-03 18:20:44',460761978135248896,476,25),(9515,'2018-07-03 18:51:14',278115594879107074,477,14),(9516,'2018-07-03 18:51:21',278115594879107074,477,8),(9517,'2018-07-03 18:51:25',278115594879107074,477,12),(9518,'2018-07-03 18:51:35',460761978135248896,477,22),(9519,'2018-07-03 18:51:39',246788321404125185,477,13),(9520,'2018-07-03 18:51:44',457300954660995114,477,16),(9521,'2018-07-03 18:51:53',460761978135248896,477,11),(9522,'2018-07-03 18:52:10',274301199841361920,477,22),(9523,'2018-07-03 18:52:11',274301199841361920,477,12),(9524,'2018-07-03 18:52:11',460761978135248896,477,14),(9525,'2018-07-03 18:52:12',274301199841361920,477,10),(9526,'2018-07-03 18:52:14',274301199841361920,477,19),(9527,'2018-07-03 18:52:15',274301199841361920,477,22),(9528,'2018-07-03 18:52:24',246788321404125185,477,11),(9529,'2018-07-03 18:52:29',460761978135248896,477,21),(9530,'2018-07-03 18:52:34',246788321404125185,477,13),(9531,'2018-07-03 18:52:49',246788321404125185,477,15),(9532,'2018-07-03 18:52:58',357981974931046400,477,12),(9533,'2018-07-03 18:53:08',246788321404125185,477,11),(9534,'2018-07-03 18:53:33',246788321404125185,477,15),(9535,'2018-07-03 18:53:39',459883167160205313,477,9),(9536,'2018-07-03 18:53:40',459883167160205313,477,17),(9537,'2018-07-03 18:53:47',459883167160205313,477,11),(9538,'2018-07-03 18:53:58',218458041790496768,477,9),(9539,'2018-07-03 18:54:01',218458041790496768,477,7),(9540,'2018-07-03 18:54:02',246788321404125185,477,13),(9541,'2018-07-03 18:54:04',218458041790496768,477,8),(9542,'2018-07-03 18:54:07',218458041790496768,477,8),(9543,'2018-07-03 18:54:07',218498162745278474,477,12),(9544,'2018-07-03 18:54:10',218458041790496768,477,10),(9545,'2018-07-03 18:54:13',218498162745278474,477,13),(9546,'2018-07-03 18:54:14',218458041790496768,477,9),(9547,'2018-07-03 18:54:17',218458041790496768,477,6),(9548,'2018-07-03 18:54:18',218498162745278474,477,22),(9549,'2018-07-03 18:54:23',200340393596944384,477,17),(9550,'2018-07-03 18:54:24',200340393596944384,477,12),(9551,'2018-07-03 18:54:25',200340393596944384,477,19),(9552,'2018-07-03 18:54:26',200340393596944384,477,20),(9553,'2018-07-03 18:54:28',200340393596944384,477,25),(9554,'2018-07-03 18:54:30',200340393596944384,477,25),(9555,'2018-07-03 18:54:33',246788321404125185,477,11),(9556,'2018-07-03 18:54:41',454823752925052930,477,15),(9557,'2018-07-03 18:54:42',454823752925052930,477,10),(9558,'2018-07-03 18:54:44',454823752925052930,477,11),(9559,'2018-07-03 18:54:45',454823752925052930,477,15),(9560,'2018-07-03 18:54:51',454823752925052930,477,19),(9561,'2018-07-03 18:54:55',457300954660995114,477,19),(9562,'2018-07-03 18:54:56',433759248800022532,477,12),(9563,'2018-07-03 18:54:57',433759248800022532,477,12),(9564,'2018-07-03 18:54:59',433759248800022532,477,12),(9565,'2018-07-03 18:54:59',460761978135248896,477,11),(9566,'2018-07-03 18:55:00',433759248800022532,477,7),(9567,'2018-07-03 18:55:01',433759248800022532,477,15),(9568,'2018-07-03 18:55:02',433759248800022532,477,12),(9569,'2018-07-03 19:06:10',262771588946984963,478,13),(9570,'2018-07-03 19:06:11',262771588946984963,478,21),(9571,'2018-07-03 19:06:12',262771588946984963,478,19),(9572,'2018-07-03 19:06:14',262771588946984963,478,20),(9573,'2018-07-03 19:51:57',357981974931046400,479,12),(9574,'2018-07-03 19:51:57',325565391478718464,479,18),(9575,'2018-07-03 19:51:57',357981974931046400,479,12),(9576,'2018-07-03 19:51:57',357981974931046400,479,12),(9577,'2018-07-03 19:51:58',357981974931046400,479,16),(9578,'2018-07-03 19:51:58',357981974931046400,479,19),(9579,'2018-07-03 19:51:58',357981974931046400,479,11),(9580,'2018-07-03 19:51:59',357981974931046400,479,9),(9581,'2018-07-03 19:52:01',211232684209340426,479,11),(9582,'2018-07-03 19:52:02',211232684209340426,479,14),(9583,'2018-07-03 19:52:05',211232684209340426,479,23),(9584,'2018-07-03 20:20:57',457300954660995114,480,21),(9585,'2018-07-03 20:21:00',457300954660995114,480,23),(9586,'2018-07-03 20:21:00',357981974931046400,480,22),(9587,'2018-07-03 20:21:02',424563962303086594,480,16),(9588,'2018-07-03 20:21:03',457300954660995114,480,17),(9589,'2018-07-03 20:21:03',357981974931046400,480,19),(9590,'2018-07-03 20:21:03',424563962303086594,480,13),(9591,'2018-07-03 20:21:05',424563962303086594,480,9),(9592,'2018-07-03 20:21:05',262771588946984963,480,17),(9593,'2018-07-03 20:21:06',457300954660995114,480,22),(9594,'2018-07-03 20:21:06',262771588946984963,480,20),(9595,'2018-07-03 20:21:08',424563962303086594,480,8),(9596,'2018-07-03 20:21:08',262771588946984963,480,17),(9597,'2018-07-03 20:21:08',262771588946984963,480,19),(9598,'2018-07-03 20:21:09',457300954660995114,480,24),(9599,'2018-07-03 20:51:32',357981974931046400,481,16),(9600,'2018-07-03 20:51:34',200340393596944384,481,17),(9601,'2018-07-03 20:51:34',200340393596944384,481,22),(9602,'2018-07-03 20:51:34',200340393596944384,481,13),(9603,'2018-07-03 20:51:35',200340393596944384,481,17),(9604,'2018-07-03 20:51:36',200340393596944384,481,18),(9605,'2018-07-03 20:51:36',200340393596944384,481,13),(9606,'2018-07-03 20:51:37',200340393596944384,481,24),(9607,'2018-07-03 20:51:37',200340393596944384,481,19),(9608,'2018-07-03 20:51:44',433759248800022532,481,17),(9609,'2018-07-03 20:51:44',357981974931046400,481,14),(9610,'2018-07-03 20:51:44',433759248800022532,481,9),(9611,'2018-07-03 20:51:44',262771588946984963,481,20),(9612,'2018-07-03 20:51:45',433759248800022532,481,16),(9613,'2018-07-03 20:51:45',433759248800022532,481,10),(9614,'2018-07-03 20:51:46',433759248800022532,481,15),(9615,'2018-07-03 20:51:46',433759248800022532,481,10),(9616,'2018-07-03 20:51:47',433759248800022532,481,9),(9617,'2018-07-03 20:51:48',433759248800022532,481,13),(9618,'2018-07-03 20:51:50',262771588946984963,481,21),(9619,'2018-07-03 21:07:23',457300954660995114,482,17),(9620,'2018-07-03 21:07:26',457300954660995114,482,19),(9621,'2018-07-03 21:07:41',457300954660995114,482,18),(9622,'2018-07-03 21:07:48',457300954660995114,482,24),(9623,'2018-07-03 21:07:52',286105785052954626,482,18),(9624,'2018-07-03 21:07:53',457300954660995114,482,18),(9625,'2018-07-03 21:07:54',286105785052954626,482,15),(9626,'2018-07-03 21:07:55',286105785052954626,482,10),(9627,'2018-07-03 21:07:57',286105785052954626,482,19),(9628,'2018-07-03 21:07:59',457300954660995114,482,23),(9629,'2018-07-03 21:08:01',286105785052954626,482,19),(9630,'2018-07-03 21:08:04',286105785052954626,482,21),(9631,'2018-07-03 21:08:07',286105785052954626,482,10),(9632,'2018-07-03 21:08:41',457300954660995114,482,18),(9633,'2018-07-03 21:09:30',457300954660995114,482,17),(9634,'2018-07-03 21:09:35',424563962303086594,482,12),(9635,'2018-07-03 21:09:37',424563962303086594,482,16),(9636,'2018-07-03 21:09:37',200340393596944384,482,20),(9637,'2018-07-03 21:09:38',200340393596944384,482,12),(9638,'2018-07-03 21:09:39',200340393596944384,482,13),(9639,'2018-07-03 21:09:39',200340393596944384,482,10),(9640,'2018-07-03 21:09:40',424563962303086594,482,12),(9641,'2018-07-03 21:09:44',200340393596944384,482,21),(9642,'2018-07-03 21:09:44',200340393596944384,482,11),(9643,'2018-07-03 21:09:45',200340393596944384,482,23),(9644,'2018-07-03 21:09:46',200340393596944384,482,17),(9645,'2018-07-03 21:09:48',357981974931046400,482,16),(9646,'2018-07-03 21:09:49',457300954660995114,482,12),(9647,'2018-07-03 21:10:03',454823752925052930,482,11),(9648,'2018-07-03 21:10:04',454823752925052930,482,18),(9649,'2018-07-03 21:10:05',424563962303086594,482,11),(9650,'2018-07-03 21:10:05',454823752925052930,482,16),(9651,'2018-07-03 21:21:00',163770616581718017,483,12),(9652,'2018-07-03 21:21:02',459883167160205313,483,15),(9653,'2018-07-03 21:21:02',163770616581718017,483,13),(9654,'2018-07-03 21:21:03',459883167160205313,483,12),(9655,'2018-07-03 21:21:04',163770616581718017,483,11),(9656,'2018-07-03 21:21:05',459883167160205313,483,17),(9657,'2018-07-03 21:21:05',262771588946984963,483,21),(9658,'2018-07-03 21:21:06',163770616581718017,483,6),(9659,'2018-07-03 21:21:08',163770616581718017,483,8),(9660,'2018-07-03 21:21:10',163770616581718017,483,13),(9661,'2018-07-03 21:21:11',163770616581718017,483,10),(9662,'2018-07-03 21:21:13',163770616581718017,483,14),(9663,'2018-07-03 21:21:19',163770616581718017,483,6),(9664,'2018-07-03 21:21:28',163770616581718017,483,10),(9665,'2018-07-03 21:21:42',424563962303086594,483,7),(9666,'2018-07-03 21:21:45',262771588946984963,483,18),(9667,'2018-07-03 21:21:51',424563962303086594,483,7),(9668,'2018-07-03 21:21:55',274301199841361920,483,16),(9669,'2018-07-03 21:21:58',274301199841361920,483,12),(9670,'2018-07-03 21:22:00',457300954660995114,483,21),(9671,'2018-07-03 21:22:00',274301199841361920,483,11),(9672,'2018-07-03 21:22:06',211232684209340426,483,27),(9673,'2018-07-03 21:22:14',274301199841361920,483,16),(9674,'2018-07-03 21:22:14',211232684209340426,483,20),(9675,'2018-07-03 21:22:16',274301199841361920,483,21),(9676,'2018-07-03 21:22:17',211232684209340426,483,26),(9677,'2018-07-03 21:22:18',274301199841361920,483,19),(9678,'2018-07-03 21:22:25',211232684209340426,483,28),(9679,'2018-07-03 21:22:28',276538857174990858,483,12),(9680,'2018-07-03 21:22:38',211232684209340426,483,23),(9681,'2018-07-03 21:22:42',276538857174990858,483,14),(9682,'2018-07-03 21:22:46',211232684209340426,483,18),(9683,'2018-07-03 21:22:50',276538857174990858,483,16),(9684,'2018-07-03 21:23:10',211232684209340426,483,22),(9685,'2018-07-03 21:23:12',211232684209340426,483,15),(9686,'2018-07-03 21:23:15',276538857174990858,483,9),(9687,'2018-07-03 21:23:19',424563962303086594,483,17),(9688,'2018-07-03 21:23:20',433759248800022532,483,16),(9689,'2018-07-03 21:23:22',433759248800022532,483,13),(9690,'2018-07-03 21:23:23',433759248800022532,483,17),(9691,'2018-07-03 21:23:36',454823752925052930,483,11),(9692,'2018-07-03 21:23:38',454823752925052930,483,11),(9693,'2018-07-03 21:23:41',457300954660995114,483,21),(9694,'2018-07-03 21:23:44',454823752925052930,483,17),(9695,'2018-07-03 21:23:46',276538857174990858,483,6),(9696,'2018-07-03 21:23:49',457300954660995114,483,9),(9697,'2018-07-03 21:23:54',457300954660995114,483,17),(9698,'2018-07-03 21:23:59',200340393596944384,483,14),(9699,'2018-07-03 21:36:29',200340393596944384,484,26),(9700,'2018-07-03 21:36:59',218498162745278474,484,22),(9701,'2018-07-03 21:40:03',265907268942299136,484,15),(9702,'2018-07-03 21:40:15',265907268942299136,484,9),(9703,'2018-07-03 21:40:29',265907268942299136,484,15),(9704,'2018-07-03 21:41:16',265907268942299136,484,12),(9705,'2018-07-03 21:41:42',265907268942299136,484,14),(9706,'2018-07-03 21:42:11',163770616581718017,484,8),(9707,'2018-07-03 22:01:36',150649616772235264,485,15),(9708,'2018-07-03 22:03:49',163770616581718017,485,7),(9709,'2018-07-03 22:03:54',163770616581718017,485,16),(9710,'2018-07-03 22:03:57',163770616581718017,485,13),(9711,'2018-07-03 22:04:02',163770616581718017,485,12),(9712,'2018-07-03 22:04:09',163770616581718017,485,10),(9713,'2018-07-03 22:04:16',276538857174990858,485,8),(9714,'2018-07-03 22:04:17',163770616581718017,485,14),(9715,'2018-07-03 22:05:02',276538857174990858,485,16),(9716,'2018-07-03 22:45:53',274301199841361920,486,9),(9717,'2018-07-03 22:45:54',274301199841361920,486,11),(9718,'2018-07-03 23:22:09',262771588946984963,487,17),(9719,'2018-07-03 23:22:10',262771588946984963,487,26),(9720,'2018-07-03 23:31:32',460761978135248896,488,15),(9721,'2018-07-03 23:31:35',460761978135248896,488,10),(9722,'2018-07-03 23:31:39',460761978135248896,488,18),(9723,'2018-07-03 23:31:42',460761978135248896,488,18),(9724,'2018-07-03 23:31:45',460761978135248896,488,19),(9725,'2018-07-03 23:31:47',218498162745278474,488,18),(9726,'2018-07-03 23:44:31',457300954660995114,489,12),(9727,'2018-07-03 23:44:34',457300954660995114,489,24),(9728,'2018-07-03 23:44:37',457300954660995114,489,19),(9729,'2018-07-03 23:44:41',457300954660995114,489,17),(9730,'2018-07-03 23:44:44',457300954660995114,489,20),(9731,'2018-07-03 23:44:46',460761978135248896,489,12),(9732,'2018-07-03 23:44:47',457300954660995114,489,22),(9733,'2018-07-04 00:05:23',200340393596944384,490,24),(9734,'2018-07-04 00:05:24',459883167160205313,490,18),(9735,'2018-07-04 00:05:24',262771588946984963,490,21),(9736,'2018-07-04 00:05:24',200340393596944384,490,22),(9737,'2018-07-04 00:05:24',200340393596944384,490,16),(9738,'2018-07-04 00:05:25',457300954660995114,490,18),(9739,'2018-07-04 00:29:44',276538857174990858,491,7),(9740,'2018-07-04 00:29:45',200340393596944384,491,20),(9741,'2018-07-04 00:29:50',200340393596944384,491,11),(9742,'2018-07-04 00:29:51',200340393596944384,491,10),(9743,'2018-07-04 00:29:52',200340393596944384,491,23),(9744,'2018-07-04 00:29:52',276538857174990858,491,12),(9745,'2018-07-04 00:29:52',200340393596944384,491,17),(9746,'2018-07-04 00:47:26',200340393596944384,492,10),(9747,'2018-07-04 00:47:27',200340393596944384,492,22),(9748,'2018-07-04 00:47:27',200340393596944384,492,23),(9749,'2018-07-04 00:47:27',200340393596944384,492,12),(9750,'2018-07-04 00:47:28',200340393596944384,492,24),(9751,'2018-07-04 00:47:28',200340393596944384,492,17),(9752,'2018-07-04 00:47:29',200340393596944384,492,19),(9753,'2018-07-04 01:03:58',200340393596944384,493,23),(9754,'2018-07-04 01:03:59',200340393596944384,493,20),(9755,'2018-07-04 01:03:59',200340393596944384,493,25),(9756,'2018-07-04 01:04:00',200340393596944384,493,17),(9757,'2018-07-04 01:04:00',200340393596944384,493,25),(9758,'2018-07-04 01:04:00',276538857174990858,493,8),(9759,'2018-07-04 01:04:02',131968711312539648,493,16),(9760,'2018-07-04 01:04:04',131968711312539648,493,16),(9761,'2018-07-04 01:04:05',131968711312539648,493,13),(9762,'2018-07-04 01:04:06',131968711312539648,493,11),(9763,'2018-07-04 01:04:08',131968711312539648,493,13),(9764,'2018-07-04 01:04:14',276538857174990858,493,11),(9765,'2018-07-04 01:04:16',200340393596944384,493,22),(9766,'2018-07-04 01:04:18',276538857174990858,493,7),(9767,'2018-07-04 01:04:20',200340393596944384,493,12),(9768,'2018-07-04 01:04:21',200340393596944384,493,15),(9769,'2018-07-04 01:04:24',457300954660995114,493,19),(9770,'2018-07-04 01:04:27',276538857174990858,493,11),(9771,'2018-07-04 01:04:33',276538857174990858,493,7),(9772,'2018-07-04 01:04:38',457300954660995114,493,16),(9773,'2018-07-04 01:04:39',276538857174990858,493,16),(9774,'2018-07-04 01:04:44',457300954660995114,493,19),(9775,'2018-07-04 01:04:46',185698541052755968,493,16),(9776,'2018-07-04 01:04:48',185698541052755968,493,12),(9777,'2018-07-04 01:04:49',457300954660995114,493,14),(9778,'2018-07-04 01:04:50',185698541052755968,493,8),(9779,'2018-07-04 01:04:52',185698541052755968,493,8),(9780,'2018-07-04 01:04:54',185698541052755968,493,8),(9781,'2018-07-04 01:04:54',457300954660995114,493,10),(9782,'2018-07-04 01:04:55',185698541052755968,493,7),(9783,'2018-07-04 01:04:59',185698541052755968,493,12),(9784,'2018-07-04 01:05:00',200340393596944384,493,12),(9785,'2018-07-04 01:05:01',185698541052755968,493,14),(9786,'2018-07-04 01:05:02',457300954660995114,493,23),(9787,'2018-07-04 01:05:05',185698541052755968,493,7),(9788,'2018-07-04 01:05:05',457300954660995114,493,17),(9789,'2018-07-04 01:05:08',457300954660995114,493,21),(9790,'2018-07-04 01:22:13',200340393596944384,494,16),(9791,'2018-07-04 01:22:13',388505302292627456,494,14),(9792,'2018-07-04 01:22:14',200340393596944384,494,13),(9793,'2018-07-04 01:22:14',200340393596944384,494,16),(9794,'2018-07-04 01:22:15',200340393596944384,494,21),(9795,'2018-07-04 01:22:16',200340393596944384,494,24),(9796,'2018-07-04 01:22:17',276538857174990858,494,10),(9797,'2018-07-04 01:22:18',388505302292627456,494,9),(9798,'2018-07-04 01:22:20',276538857174990858,494,10),(9799,'2018-07-04 01:22:20',211232684209340426,494,22),(9800,'2018-07-04 01:22:21',211232684209340426,494,25),(9801,'2018-07-04 01:22:22',211232684209340426,494,28),(9802,'2018-07-04 01:22:23',211232684209340426,494,20),(9803,'2018-07-04 01:22:23',388505302292627456,494,13),(9804,'2018-07-04 01:22:23',211232684209340426,494,28),(9805,'2018-07-04 01:22:23',276538857174990858,494,7),(9806,'2018-07-04 01:22:24',388505302292627456,494,9),(9807,'2018-07-04 01:22:26',388505302292627456,494,13),(9808,'2018-07-04 01:22:29',276538857174990858,494,11),(9809,'2018-07-04 01:22:30',388505302292627456,494,11),(9810,'2018-07-04 01:22:31',388505302292627456,494,8),(9811,'2018-07-04 01:22:32',185698541052755968,494,10),(9812,'2018-07-04 01:22:34',388505302292627456,494,13),(9813,'2018-07-04 01:22:34',185698541052755968,494,14),(9814,'2018-07-04 01:35:12',185698541052755968,495,7),(9815,'2018-07-04 01:35:14',185698541052755968,495,16),(9816,'2018-07-04 01:35:16',218498162745278474,495,13),(9817,'2018-07-04 01:35:16',185698541052755968,495,11),(9818,'2018-07-04 01:35:17',457300954660995114,495,15),(9819,'2018-07-04 01:35:19',218498162745278474,495,21),(9820,'2018-07-04 01:35:22',457300954660995114,495,23),(9821,'2018-07-04 01:35:23',218498162745278474,495,17),(9822,'2018-07-04 01:35:27',457300954660995114,495,19),(9823,'2018-07-04 01:35:35',218498162745278474,495,18),(9824,'2018-07-04 01:35:38',218498162745278474,495,23),(9825,'2018-07-04 01:35:47',457300954660995114,495,21),(9826,'2018-07-04 01:35:57',457300954660995114,495,15),(9827,'2018-07-04 01:38:03',438094660712267778,495,8),(9828,'2018-07-04 01:38:18',438094660712267778,495,8),(9829,'2018-07-04 01:38:38',438094660712267778,495,13),(9830,'2018-07-04 01:38:41',131968711312539648,495,21),(9831,'2018-07-04 01:39:17',438094660712267778,495,9),(9832,'2018-07-04 01:39:48',131968711312539648,495,17),(9833,'2018-07-04 01:49:24',457300954660995114,496,22),(9834,'2018-07-04 01:49:45',218498162745278474,496,9),(9835,'2018-07-04 01:49:48',218498162745278474,496,14),(9836,'2018-07-04 02:21:41',457300954660995114,497,15),(9837,'2018-07-04 02:22:55',457300954660995114,497,16),(9838,'2018-07-04 02:23:39',457300954660995114,497,19),(9839,'2018-07-04 02:32:57',459883167160205313,498,9),(9840,'2018-07-04 02:32:58',459883167160205313,498,14),(9841,'2018-07-04 02:32:59',459883167160205313,498,13),(9842,'2018-07-04 02:33:00',459883167160205313,498,14),(9843,'2018-07-04 02:33:00',459883167160205313,498,9),(9844,'2018-07-04 02:33:01',459883167160205313,498,18),(9845,'2018-07-04 02:35:03',459883167160205313,498,15),(9846,'2018-07-04 02:36:06',457300954660995114,498,17),(9847,'2018-07-04 03:23:28',457300954660995114,499,15),(9848,'2018-07-04 03:24:11',457300954660995114,499,14),(9849,'2018-07-04 03:24:15',457300954660995114,499,25),(9850,'2018-07-04 03:24:18',457300954660995114,499,18),(9851,'2018-07-04 03:24:21',457300954660995114,499,16),(9852,'2018-07-04 03:24:24',457300954660995114,499,21),(9853,'2018-07-04 03:46:08',200340393596944384,500,17),(9854,'2018-07-04 03:46:10',200340393596944384,500,16),(9855,'2018-07-04 03:46:11',200340393596944384,500,10),(9856,'2018-07-04 03:46:12',200340393596944384,500,17),(9857,'2018-07-04 03:46:13',200340393596944384,500,10),(9858,'2018-07-04 03:46:14',218498162745278474,500,11),(9859,'2018-07-04 03:46:14',200340393596944384,500,13),(9860,'2018-07-04 03:46:15',200340393596944384,500,12),(9861,'2018-07-04 03:46:15',218498162745278474,500,20),(9862,'2018-07-04 03:46:15',457300954660995114,500,13),(9863,'2018-07-04 03:46:16',200340393596944384,500,24),(9864,'2018-07-04 03:46:17',218498162745278474,500,23),(9865,'2018-07-04 03:46:17',457300954660995114,500,17),(9866,'2018-07-04 03:46:19',218498162745278474,500,19),(9867,'2018-07-04 04:00:55',457300954660995114,501,17),(9868,'2018-07-04 04:01:00',457300954660995114,501,15),(9869,'2018-07-04 04:01:05',457300954660995114,501,17),(9870,'2018-07-04 04:01:45',457300954660995114,501,17),(9871,'2018-07-04 04:02:05',457300954660995114,501,19),(9872,'2018-07-04 04:02:25',457300954660995114,501,18),(9873,'2018-07-04 04:02:35',276538857174990858,501,10),(9874,'2018-07-04 04:02:37',457300954660995114,501,17),(9875,'2018-07-04 04:02:43',276538857174990858,501,11),(9876,'2018-07-04 04:02:51',276538857174990858,501,10),(9877,'2018-07-04 04:02:53',457300954660995114,501,12),(9878,'2018-07-04 04:02:59',276538857174990858,501,11),(9879,'2018-07-04 04:03:08',276538857174990858,501,17),(9880,'2018-07-04 04:03:29',457300954660995114,501,18),(9881,'2018-07-04 04:03:57',276538857174990858,501,11),(9882,'2018-07-04 04:35:32',276538857174990858,502,16),(9883,'2018-07-04 04:35:32',294927961310625793,502,23),(9884,'2018-07-04 04:35:33',294927961310625793,502,12),(9885,'2018-07-04 05:06:14',200340393596944384,503,11),(9886,'2018-07-04 05:06:14',200340393596944384,503,26),(9887,'2018-07-04 05:06:15',200340393596944384,503,18),(9888,'2018-07-04 05:45:04',457300954660995114,504,23),(9889,'2018-07-04 05:45:04',200340393596944384,504,16),(9890,'2018-07-04 05:45:05',200340393596944384,504,18),(9891,'2018-07-04 05:45:05',200340393596944384,504,21),(9892,'2018-07-04 05:45:05',200340393596944384,504,11),(9893,'2018-07-04 05:45:06',200340393596944384,504,18),(9894,'2018-07-04 05:45:06',200340393596944384,504,23),(9895,'2018-07-04 06:18:34',457300954660995114,505,15),(9896,'2018-07-04 06:18:41',429615167492325376,505,11),(9897,'2018-07-04 06:18:41',200340393596944384,505,25),(9898,'2018-07-04 06:18:43',200340393596944384,505,26),(9899,'2018-07-04 06:18:44',200340393596944384,505,24),(9900,'2018-07-04 06:18:45',200340393596944384,505,14),(9901,'2018-07-04 06:18:46',429615167492325376,505,14),(9902,'2018-07-04 06:18:46',457300954660995114,505,17),(9903,'2018-07-04 06:18:46',200340393596944384,505,16),(9904,'2018-07-04 06:18:47',200340393596944384,505,26),(9905,'2018-07-04 06:45:43',429615167492325376,506,17),(9906,'2018-07-04 06:45:51',429615167492325376,506,15),(9907,'2018-07-04 06:46:05',429615167492325376,506,16),(9908,'2018-07-04 06:46:13',429615167492325376,506,14),(9909,'2018-07-04 06:46:23',457300954660995114,506,21),(9910,'2018-07-04 06:46:28',457300954660995114,506,21),(9911,'2018-07-04 06:46:31',429615167492325376,506,8),(9912,'2018-07-04 06:46:43',429615167492325376,506,10),(9913,'2018-07-04 06:46:52',457300954660995114,506,21),(9914,'2018-07-04 06:46:56',457300954660995114,506,12),(9915,'2018-07-04 06:47:01',457300954660995114,506,10),(9916,'2018-07-04 06:47:05',457300954660995114,506,18),(9917,'2018-07-04 07:08:58',457300954660995114,507,11),(9918,'2018-07-04 07:09:21',457300954660995114,507,25),(9919,'2018-07-04 07:09:27',457300954660995114,507,25),(9920,'2018-07-04 07:09:42',457300954660995114,507,24),(9921,'2018-07-04 07:10:02',457300954660995114,507,19),(9922,'2018-07-04 07:10:13',457300954660995114,507,20),(9923,'2018-07-04 07:10:20',457300954660995114,507,21),(9924,'2018-07-04 07:11:15',457300954660995114,507,10),(9925,'2018-07-04 07:12:17',457300954660995114,507,20),(9926,'2018-07-04 08:00:32',457300954660995114,508,14),(9927,'2018-07-04 08:00:36',457300954660995114,508,24),(9928,'2018-07-04 08:20:46',325565391478718464,509,25),(9929,'2018-07-04 08:20:47',457300954660995114,509,24),(9930,'2018-07-04 08:20:49',325565391478718464,509,32),(9931,'2018-07-04 09:04:09',357981974931046400,510,16),(9932,'2018-07-04 09:04:09',274301199841361920,510,11),(9933,'2018-07-04 09:04:09',274301199841361920,510,23),(9934,'2018-07-04 09:04:09',357981974931046400,510,23),(9935,'2018-07-04 09:04:10',274301199841361920,510,15),(9936,'2018-07-04 09:04:10',357981974931046400,510,15),(9937,'2018-07-04 09:20:01',460761978135248896,511,25),(9938,'2018-07-04 09:20:02',274301199841361920,511,16),(9939,'2018-07-04 09:20:02',262771588946984963,511,12),(9940,'2018-07-04 09:20:02',390618369545601028,511,9),(9941,'2018-07-04 09:20:02',274301199841361920,511,17),(9942,'2018-07-04 09:20:02',325565391478718464,511,18),(9943,'2018-07-04 09:20:03',274301199841361920,511,10),(9944,'2018-07-04 09:20:03',357981974931046400,511,24),(9945,'2018-07-04 09:20:03',262771588946984963,511,17),(9946,'2018-07-04 09:20:03',457300954660995114,511,23),(9947,'2018-07-04 09:33:37',274301199841361920,512,14),(9948,'2018-07-04 09:33:37',357981974931046400,512,23),(9949,'2018-07-04 09:33:37',274301199841361920,512,18),(9950,'2018-07-04 09:33:38',457300954660995114,512,14),(9951,'2018-07-04 09:33:38',274301199841361920,512,24),(9952,'2018-07-04 09:33:38',460761978135248896,512,18),(9953,'2018-07-04 09:33:38',357981974931046400,512,13),(9954,'2018-07-04 09:33:38',274301199841361920,512,14),(9955,'2018-07-04 09:33:38',357981974931046400,512,10),(9956,'2018-07-04 09:33:38',274301199841361920,512,15),(9957,'2018-07-04 10:21:56',325565391478718464,513,32),(9958,'2018-07-04 10:21:57',325565391478718464,513,16),(9959,'2018-07-04 10:21:57',390618369545601028,513,19),(9960,'2018-07-04 10:21:57',457300954660995114,513,25),(9961,'2018-07-04 10:21:57',325565391478718464,513,18),(9962,'2018-07-04 10:21:57',460761978135248896,513,10),(9963,'2018-07-04 10:21:57',390618369545601028,513,10),(9964,'2018-07-04 10:21:58',390618369545601028,513,17),(9965,'2018-07-04 10:21:58',390618369545601028,513,23),(9966,'2018-07-04 10:21:59',457300954660995114,513,25),(9967,'2018-07-04 10:22:00',325565391478718464,513,23),(9968,'2018-07-04 10:22:01',211232684209340426,513,29),(9969,'2018-07-04 10:22:01',460761978135248896,513,10),(9970,'2018-07-04 10:31:24',211232684209340426,514,27),(9971,'2018-07-04 10:31:26',211232684209340426,514,14),(9972,'2018-07-04 10:31:27',211232684209340426,514,24),(9973,'2018-07-04 10:31:28',211232684209340426,514,20),(9974,'2018-07-04 10:31:29',211232684209340426,514,24),(9975,'2018-07-04 10:31:30',211232684209340426,514,17),(9976,'2018-07-04 10:31:32',457300954660995114,514,13),(9977,'2018-07-04 10:31:32',211232684209340426,514,13),(9978,'2018-07-04 10:31:36',457300954660995114,514,18),(9979,'2018-07-04 10:31:39',211232684209340426,514,26),(9980,'2018-07-04 10:31:39',211232684209340426,514,18),(9981,'2018-07-04 10:31:40',211232684209340426,514,21),(9982,'2018-07-04 10:31:40',457300954660995114,514,23),(9983,'2018-07-04 11:05:18',357981974931046400,515,17),(9984,'2018-07-04 11:05:18',460761978135248896,515,25),(9985,'2018-07-04 11:05:19',224083099246395403,515,9),(9986,'2018-07-04 11:05:21',460761978135248896,515,20),(9987,'2018-07-04 11:05:21',357981974931046400,515,17),(9988,'2018-07-04 11:05:23',460761978135248896,515,22),(9989,'2018-07-04 11:05:25',357981974931046400,515,14),(9990,'2018-07-04 11:05:26',460761978135248896,515,15),(9991,'2018-07-04 11:05:26',224083099246395403,515,8),(9992,'2018-07-04 11:05:28',460761978135248896,515,26),(9993,'2018-07-04 11:05:31',460761978135248896,515,16),(9994,'2018-07-04 11:05:33',224083099246395403,515,10),(9995,'2018-07-04 11:05:35',460761978135248896,515,25),(9996,'2018-07-04 11:05:38',460761978135248896,515,11),(9997,'2018-07-04 11:05:39',357981974931046400,515,22),(9998,'2018-07-04 11:05:40',357981974931046400,515,10),(9999,'2018-07-04 11:05:40',224083099246395403,515,12),(10000,'2018-07-04 11:05:41',357981974931046400,515,19),(10001,'2018-07-04 11:05:52',224083099246395403,515,11),(10002,'2018-07-04 11:06:14',211232684209340426,515,12),(10003,'2018-07-04 11:06:15',211232684209340426,515,24),(10004,'2018-07-04 11:06:17',211232684209340426,515,13),(10005,'2018-07-04 12:03:01',274301199841361920,516,18),(10006,'2018-07-04 12:03:01',274301199841361920,516,16),(10007,'2018-07-04 12:03:01',357981974931046400,516,9),(10008,'2018-07-04 12:03:02',274301199841361920,516,20),(10009,'2018-07-04 12:03:02',211232684209340426,516,15),(10010,'2018-07-04 12:03:02',274301199841361920,516,23),(10011,'2018-07-04 12:03:02',274301199841361920,516,10),(10012,'2018-07-04 12:03:03',274301199841361920,516,21),(10013,'2018-07-04 12:03:03',357981974931046400,516,12),(10014,'2018-07-04 12:03:04',211232684209340426,516,17),(10015,'2018-07-04 12:03:11',211232684209340426,516,21),(10016,'2018-07-04 12:03:14',211232684209340426,516,25),(10017,'2018-07-04 12:03:15',460761978135248896,516,16),(10018,'2018-07-04 12:03:16',211232684209340426,516,27),(10019,'2018-07-04 12:21:58',218498162745278474,517,23),(10020,'2018-07-04 12:22:02',218498162745278474,517,11),(10021,'2018-07-04 12:22:07',218498162745278474,517,10),(10022,'2018-07-04 12:22:09',460761978135248896,517,19),(10023,'2018-07-04 12:22:13',460761978135248896,517,17),(10024,'2018-07-04 12:22:15',218498162745278474,517,15),(10025,'2018-07-04 12:22:17',460761978135248896,517,26),(10026,'2018-07-04 12:22:21',460761978135248896,517,21),(10027,'2018-07-04 12:22:37',460761978135248896,517,18),(10028,'2018-07-04 12:22:41',185698541052755968,517,8),(10029,'2018-07-04 12:22:42',460761978135248896,517,23),(10030,'2018-07-04 12:22:42',185698541052755968,517,11),(10031,'2018-07-04 12:22:42',185698541052755968,517,9),(10032,'2018-07-04 12:22:43',185698541052755968,517,11),(10033,'2018-07-04 12:22:43',185698541052755968,517,9),(10034,'2018-07-04 12:22:44',185698541052755968,517,10),(10035,'2018-07-04 12:22:44',185698541052755968,517,13),(10036,'2018-07-04 12:22:45',185698541052755968,517,6),(10037,'2018-07-04 12:22:48',185698541052755968,517,8),(10038,'2018-07-04 12:36:36',131968711312539648,518,22),(10039,'2018-07-04 12:36:39',131968711312539648,518,16),(10040,'2018-07-04 12:36:41',131968711312539648,518,12),(10041,'2018-07-04 12:40:01',185698541052755968,518,11),(10042,'2018-07-04 12:40:21',274301199841361920,518,19),(10043,'2018-07-04 12:47:29',211232684209340426,519,17),(10044,'2018-07-04 12:47:30',211232684209340426,519,18),(10045,'2018-07-04 12:47:33',211232684209340426,519,14),(10046,'2018-07-04 13:20:09',357981974931046400,520,21),(10047,'2018-07-04 13:20:11',357981974931046400,520,19),(10048,'2018-07-04 13:20:15',357981974931046400,520,14),(10049,'2018-07-04 13:20:18',357981974931046400,520,19),(10050,'2018-07-04 13:20:20',211232684209340426,520,28),(10051,'2018-07-04 14:02:03',357981974931046400,521,14),(10052,'2018-07-04 14:02:04',357981974931046400,521,23),(10053,'2018-07-04 14:02:05',357981974931046400,521,18),(10054,'2018-07-04 14:02:06',218498162745278474,521,22),(10055,'2018-07-04 14:02:06',357981974931046400,521,22),(10056,'2018-07-04 14:02:07',357981974931046400,521,24),(10057,'2018-07-04 14:02:07',357981974931046400,521,20),(10058,'2018-07-04 14:47:25',357981974931046400,522,14),(10059,'2018-07-04 14:47:26',357981974931046400,522,15),(10060,'2018-07-04 14:47:27',357981974931046400,522,18),(10061,'2018-07-04 14:47:29',357981974931046400,522,17),(10062,'2018-07-04 14:47:39',357981974931046400,522,16),(10063,'2018-07-04 14:47:42',357981974931046400,522,20),(10064,'2018-07-04 14:47:45',357981974931046400,522,22),(10065,'2018-07-04 14:48:08',218498162745278474,522,14),(10066,'2018-07-04 14:59:49',390618369545601028,523,10),(10067,'2018-07-04 14:59:50',390618369545601028,523,17),(10068,'2018-07-04 14:59:50',200340393596944384,523,15),(10069,'2018-07-04 14:59:50',390618369545601028,523,17),(10070,'2018-07-04 14:59:51',200340393596944384,523,24),(10071,'2018-07-04 14:59:52',390618369545601028,523,17),(10072,'2018-07-04 14:59:52',200340393596944384,523,22),(10073,'2018-07-04 14:59:53',390618369545601028,523,17),(10074,'2018-07-04 14:59:53',200340393596944384,523,14),(10075,'2018-07-04 14:59:53',276538857174990858,523,11),(10076,'2018-07-04 14:59:53',218498162745278474,523,13),(10077,'2018-07-04 14:59:53',390618369545601028,523,12),(10078,'2018-07-04 14:59:53',200340393596944384,523,17),(10079,'2018-07-04 15:32:14',357981974931046400,524,23),(10080,'2018-07-04 15:32:15',357981974931046400,524,19),(10081,'2018-07-04 15:32:17',218498162745278474,524,23),(10082,'2018-07-04 15:32:17',357981974931046400,524,19),(10083,'2018-07-04 15:32:17',218498162745278474,524,9),(10084,'2018-07-04 15:32:19',218498162745278474,524,21),(10085,'2018-07-04 15:32:19',357981974931046400,524,20),(10086,'2018-07-04 15:32:20',218498162745278474,524,11),(10087,'2018-07-04 15:32:24',357981974931046400,524,19),(10088,'2018-07-04 15:32:25',218498162745278474,524,16),(10089,'2018-07-04 15:32:27',218498162745278474,524,12),(10090,'2018-07-04 15:32:28',218498162745278474,524,12),(10091,'2018-07-04 16:37:15',460761978135248896,525,18),(10092,'2018-07-04 16:37:16',357981974931046400,525,16),(10093,'2018-07-04 16:37:16',200340393596944384,525,17),(10094,'2018-07-04 16:37:17',276538857174990858,525,11),(10095,'2018-07-04 16:37:17',200340393596944384,525,24),(10096,'2018-07-04 16:37:18',200340393596944384,525,18),(10097,'2018-07-04 16:37:18',460761978135248896,525,22),(10098,'2018-07-04 16:37:19',200340393596944384,525,25),(10099,'2018-07-04 16:37:19',276538857174990858,525,13),(10100,'2018-07-04 16:37:19',357981974931046400,525,25),(10101,'2018-07-04 16:37:20',200340393596944384,525,22),(10102,'2018-07-04 16:37:20',200340393596944384,525,18),(10103,'2018-07-04 16:51:02',200340393596944384,526,21),(10104,'2018-07-04 16:51:03',200340393596944384,526,13),(10105,'2018-07-04 16:51:04',200340393596944384,526,19),(10106,'2018-07-04 16:51:05',460761978135248896,526,17),(10107,'2018-07-04 16:51:05',200340393596944384,526,23),(10108,'2018-07-04 16:51:06',200340393596944384,526,12),(10109,'2018-07-04 16:51:10',460761978135248896,526,12),(10110,'2018-07-04 16:51:14',460761978135248896,526,12),(10111,'2018-07-04 16:51:16',200340393596944384,526,17),(10112,'2018-07-04 16:51:17',200340393596944384,526,26),(10113,'2018-07-04 16:51:19',200340393596944384,526,13),(10114,'2018-07-04 16:51:19',460761978135248896,526,21),(10115,'2018-07-04 16:51:21',276538857174990858,526,18),(10116,'2018-07-04 16:59:38',325565391478718464,527,29),(10117,'2018-07-04 16:59:40',200340393596944384,527,13),(10118,'2018-07-04 16:59:43',460761978135248896,527,22),(10119,'2018-07-04 16:59:44',325565391478718464,527,24),(10120,'2018-07-04 16:59:46',276538857174990858,527,10),(10121,'2018-07-04 16:59:46',460761978135248896,527,18),(10122,'2018-07-04 16:59:49',150649616772235264,527,7),(10123,'2018-07-04 16:59:53',460761978135248896,527,20),(10124,'2018-07-04 16:59:59',306381311923453953,527,12),(10125,'2018-07-04 17:00:00',306381311923453953,527,8),(10126,'2018-07-04 17:00:02',150649616772235264,527,15),(10127,'2018-07-04 17:00:02',306381311923453953,527,12),(10128,'2018-07-04 17:00:03',150649616772235264,527,14),(10129,'2018-07-04 17:00:04',276538857174990858,527,14),(10130,'2018-07-04 17:00:05',150649616772235264,527,8),(10131,'2018-07-04 17:00:05',306381311923453953,527,12),(10132,'2018-07-04 17:00:08',306381311923453953,527,10),(10133,'2018-07-04 17:00:09',460761978135248896,527,22),(10134,'2018-07-04 17:00:10',306381311923453953,527,11),(10135,'2018-07-04 17:34:29',357981974931046400,528,10),(10136,'2018-07-04 17:34:33',357981974931046400,528,16),(10137,'2018-07-04 17:34:44',357981974931046400,528,26),(10138,'2018-07-04 17:34:50',457289865516548098,528,8),(10139,'2018-07-04 17:34:54',200340393596944384,528,21),(10140,'2018-07-04 17:34:57',357981974931046400,528,20),(10141,'2018-07-04 17:35:00',457300954660995114,528,20),(10142,'2018-07-04 17:35:04',457300954660995114,528,14),(10143,'2018-07-04 17:35:09',457300954660995114,528,13),(10144,'2018-07-04 17:35:17',457300954660995114,528,14),(10145,'2018-07-04 17:35:26',457300954660995114,528,26),(10146,'2018-07-04 17:35:28',454823752925052930,528,18),(10147,'2018-07-04 17:35:31',454823752925052930,528,17),(10148,'2018-07-04 17:35:33',454823752925052930,528,21),(10149,'2018-07-04 17:35:34',454823752925052930,528,20),(10150,'2018-07-04 17:35:36',454823752925052930,528,20),(10151,'2018-07-04 17:35:36',457300954660995114,528,20),(10152,'2018-07-04 17:35:37',454823752925052930,528,13),(10153,'2018-07-04 17:35:39',457300954660995114,528,12),(10154,'2018-07-04 17:35:42',454823752925052930,528,19),(10155,'2018-07-04 17:48:27',163770616581718017,529,13),(10156,'2018-07-04 17:48:29',163770616581718017,529,11),(10157,'2018-07-04 17:48:36',457300954660995114,529,22),(10158,'2018-07-04 17:48:42',457300954660995114,529,25),(10159,'2018-07-04 18:15:44',357981974931046400,530,12),(10160,'2018-07-04 18:15:44',357981974931046400,530,11),(10161,'2018-07-04 18:15:44',388505302292627456,530,7),(10162,'2018-07-04 18:15:45',357981974931046400,530,21),(10163,'2018-07-04 18:51:03',276538857174990858,531,10),(10164,'2018-07-04 18:51:07',276538857174990858,531,9),(10165,'2018-07-04 18:51:08',211232684209340426,531,20),(10166,'2018-07-04 18:51:09',211232684209340426,531,16),(10167,'2018-07-04 18:51:09',211232684209340426,531,20),(10168,'2018-07-04 19:15:54',357981974931046400,532,23),(10169,'2018-07-04 19:15:54',200340393596944384,532,19),(10170,'2018-07-04 19:15:55',357981974931046400,532,10),(10171,'2018-07-04 19:15:55',200340393596944384,532,25),(10172,'2018-07-04 19:15:55',357981974931046400,532,10),(10173,'2018-07-04 19:15:55',357981974931046400,532,10),(10174,'2018-07-04 19:15:55',200340393596944384,532,26),(10175,'2018-07-04 19:15:56',357981974931046400,532,15),(10176,'2018-07-04 20:05:07',390618369545601028,533,21),(10177,'2018-07-04 20:05:08',131968711312539648,533,16),(10178,'2018-07-04 20:05:08',200340393596944384,533,11),(10179,'2018-07-04 20:05:08',390618369545601028,533,24),(10180,'2018-07-04 20:05:08',200340393596944384,533,18),(10181,'2018-07-04 20:05:08',460761978135248896,533,22),(10182,'2018-07-04 20:05:08',390618369545601028,533,23),(10183,'2018-07-04 20:05:08',200340393596944384,533,10),(10184,'2018-07-04 20:05:10',325565391478718464,533,29),(10185,'2018-07-04 20:17:46',424563962303086594,534,17),(10186,'2018-07-04 20:17:47',424563962303086594,534,8),(10187,'2018-07-04 20:17:47',424563962303086594,534,12),(10188,'2018-07-04 20:17:50',424563962303086594,534,16),(10189,'2018-07-04 20:17:50',460761978135248896,534,14),(10190,'2018-07-04 20:17:52',200340393596944384,534,26),(10191,'2018-07-04 20:17:52',200340393596944384,534,21),(10192,'2018-07-04 20:17:52',424563962303086594,534,10),(10193,'2018-07-04 20:17:52',218498162745278474,534,17),(10194,'2018-07-04 20:17:53',200340393596944384,534,12),(10195,'2018-07-04 20:17:53',200340393596944384,534,24),(10196,'2018-07-04 20:17:53',200340393596944384,534,18),(10197,'2018-07-04 20:17:54',457300954660995114,534,16),(10198,'2018-07-04 21:15:30',200340393596944384,535,23),(10199,'2018-07-04 21:15:31',388505302292627456,535,14),(10200,'2018-07-04 21:15:31',211232684209340426,535,14),(10201,'2018-07-04 21:15:31',200340393596944384,535,25),(10202,'2018-07-04 21:15:31',285930195125403650,535,12),(10203,'2018-07-04 21:15:31',457300954660995114,535,11),(10204,'2018-07-04 21:15:31',200340393596944384,535,18),(10205,'2018-07-04 21:15:31',211232684209340426,535,13),(10206,'2018-07-04 21:15:32',150649616772235264,535,7),(10207,'2018-07-04 21:15:32',460761978135248896,535,18),(10208,'2018-07-04 21:15:32',388505302292627456,535,12),(10209,'2018-07-04 21:15:32',200340393596944384,535,16),(10210,'2018-07-04 21:15:32',211232684209340426,535,17),(10211,'2018-07-04 21:15:32',200340393596944384,535,11),(10212,'2018-07-04 21:15:32',211232684209340426,535,21),(10213,'2018-07-04 21:15:33',200340393596944384,535,18),(10214,'2018-07-04 21:30:49',424563962303086594,536,9),(10215,'2018-07-04 21:30:50',357981974931046400,536,13),(10216,'2018-07-04 21:30:50',460761978135248896,536,13),(10217,'2018-07-04 21:30:50',424563962303086594,536,15),(10218,'2018-07-04 21:30:50',357981974931046400,536,19),(10219,'2018-07-04 21:30:51',388505302292627456,536,12),(10220,'2018-07-04 21:30:51',424563962303086594,536,16),(10221,'2018-07-04 21:30:51',357981974931046400,536,27),(10222,'2018-07-04 21:30:51',388505302292627456,536,16),(10223,'2018-07-04 21:30:51',357981974931046400,536,26),(10224,'2018-07-04 21:30:52',424563962303086594,536,16),(10225,'2018-07-04 21:30:52',357981974931046400,536,19),(10226,'2018-07-04 21:30:52',200340393596944384,536,15),(10227,'2018-07-04 21:30:52',388505302292627456,536,12),(10228,'2018-07-04 21:30:52',424563962303086594,536,18),(10229,'2018-07-04 21:30:52',211232684209340426,536,13),(10230,'2018-07-04 21:30:53',460761978135248896,536,22),(10231,'2018-07-04 21:30:53',211232684209340426,536,22),(10232,'2018-07-04 21:30:53',211232684209340426,536,21),(10233,'2018-07-04 21:30:53',388505302292627456,536,10),(10234,'2018-07-04 21:47:52',357981974931046400,537,17),(10235,'2018-07-04 21:47:53',388505302292627456,537,12),(10236,'2018-07-04 21:47:53',357981974931046400,537,20),(10237,'2018-07-04 21:47:54',388505302292627456,537,12),(10238,'2018-07-04 21:47:54',357981974931046400,537,19),(10239,'2018-07-04 21:47:54',424563962303086594,537,15),(10240,'2018-07-04 21:47:54',424563962303086594,537,18),(10241,'2018-07-04 21:47:55',285930195125403650,537,13),(10242,'2018-07-04 21:47:55',424563962303086594,537,11),(10243,'2018-07-04 21:47:55',357981974931046400,537,19),(10244,'2018-07-04 21:47:55',274301199841361920,537,17),(10245,'2018-07-04 21:47:55',424563962303086594,537,15),(10246,'2018-07-04 21:47:56',388505302292627456,537,12),(10247,'2018-07-04 21:47:56',218498162745278474,537,25),(10248,'2018-07-04 21:47:56',424563962303086594,537,11),(10249,'2018-07-04 21:47:56',200340393596944384,537,15),(10250,'2018-07-04 22:06:12',274301199841361920,538,14),(10251,'2018-07-04 22:06:12',150649616772235264,538,10),(10252,'2018-07-04 22:06:12',200340393596944384,538,15),(10253,'2018-07-04 22:06:12',285930195125403650,538,11),(10254,'2018-07-04 22:06:13',388505302292627456,538,8),(10255,'2018-07-04 22:06:13',200340393596944384,538,15),(10256,'2018-07-04 22:06:13',274301199841361920,538,22),(10257,'2018-07-04 22:06:13',460761978135248896,538,14),(10258,'2018-07-04 22:06:13',200340393596944384,538,19),(10259,'2018-07-04 22:06:13',388505302292627456,538,13),(10260,'2018-07-04 22:06:13',388505302292627456,538,12),(10261,'2018-07-04 22:06:14',200340393596944384,538,18),(10262,'2018-07-04 22:06:14',274301199841361920,538,24),(10263,'2018-07-04 22:06:14',200340393596944384,538,15),(10264,'2018-07-04 22:06:14',285930195125403650,538,8),(10265,'2018-07-04 22:06:14',274301199841361920,538,23),(10266,'2018-07-04 22:06:14',200340393596944384,538,15),(10267,'2018-07-04 22:06:15',150649616772235264,538,15),(10268,'2018-07-04 22:06:15',200340393596944384,538,22),(10269,'2018-07-04 22:19:45',274301199841361920,539,16),(10270,'2018-07-04 22:19:47',274301199841361920,539,17),(10271,'2018-07-04 22:19:48',274301199841361920,539,12),(10272,'2018-07-04 22:19:54',274301199841361920,539,12),(10273,'2018-07-04 22:19:56',274301199841361920,539,10),(10274,'2018-07-04 22:20:18',294927961310625793,539,24),(10275,'2018-07-04 22:20:20',294927961310625793,539,15),(10276,'2018-07-04 22:20:21',294927961310625793,539,26),(10277,'2018-07-04 22:20:23',460761978135248896,539,12),(10278,'2018-07-04 22:20:23',294927961310625793,539,20),(10279,'2018-07-04 22:20:26',460761978135248896,539,26),(10280,'2018-07-04 22:20:26',150649616772235264,539,15),(10281,'2018-07-04 22:20:27',457300954660995114,539,11),(10282,'2018-07-04 22:20:28',285930195125403650,539,13),(10283,'2018-07-04 22:20:29',294927961310625793,539,29),(10284,'2018-07-04 22:20:29',460761978135248896,539,17),(10285,'2018-07-04 22:20:31',457300954660995114,539,18),(10286,'2018-07-04 22:20:31',150649616772235264,539,15),(10287,'2018-07-04 22:20:32',150649616772235264,539,15),(10288,'2018-07-04 22:20:33',460761978135248896,539,24),(10289,'2018-07-04 22:20:33',150649616772235264,539,15),(10290,'2018-07-04 22:20:33',285930195125403650,539,12),(10291,'2018-07-04 22:20:34',457300954660995114,539,23),(10292,'2018-07-04 22:20:36',457300954660995114,539,20),(10293,'2018-07-04 22:20:36',460761978135248896,539,16),(10294,'2018-07-04 22:47:00',200340393596944384,540,25),(10295,'2018-07-04 22:47:00',285930195125403650,540,7),(10296,'2018-07-04 22:47:01',211232684209340426,540,16),(10297,'2018-07-04 22:47:01',200340393596944384,540,18),(10298,'2018-07-04 22:47:01',438094660712267778,540,18),(10299,'2018-07-04 22:47:01',285930195125403650,540,10),(10300,'2018-07-04 22:47:01',150649616772235264,540,13),(10301,'2018-07-04 22:47:01',200340393596944384,540,14),(10302,'2018-07-04 22:47:02',211232684209340426,540,29),(10303,'2018-07-04 22:47:02',285930195125403650,540,11),(10304,'2018-07-04 22:47:02',200340393596944384,540,15),(10305,'2018-07-04 22:47:02',460761978135248896,540,18),(10306,'2018-07-04 22:47:03',211232684209340426,540,26),(10307,'2018-07-04 22:47:03',285930195125403650,540,11),(10308,'2018-07-04 22:47:03',438094660712267778,540,15),(10309,'2018-07-04 22:47:03',211232684209340426,540,13),(10310,'2018-07-04 22:47:04',438094660712267778,540,19),(10311,'2018-07-04 22:47:04',211232684209340426,540,11),(10312,'2018-07-04 22:47:05',211232684209340426,540,21),(10313,'2018-07-04 22:47:05',438094660712267778,540,10),(10314,'2018-07-04 22:47:06',460761978135248896,540,10),(10315,'2018-07-04 22:47:08',438094660712267778,540,14),(10316,'2018-07-04 22:47:08',211232684209340426,540,24),(10317,'2018-07-04 22:47:09',200340393596944384,540,19),(10318,'2018-07-04 22:47:09',460761978135248896,540,12),(10319,'2018-07-04 22:47:09',200340393596944384,540,10),(10320,'2018-07-04 22:47:19',150649616772235264,540,7),(10321,'2018-07-04 22:47:25',460761978135248896,540,11),(10322,'2018-07-04 22:47:25',211232684209340426,540,13),(10323,'2018-07-04 22:47:27',460761978135248896,540,13),(10324,'2018-07-04 22:47:29',200340393596944384,540,21),(10325,'2018-07-04 23:02:10',424563962303086594,541,13),(10326,'2018-07-04 23:02:10',424563962303086594,541,11),(10327,'2018-07-04 23:02:25',460761978135248896,541,19),(10328,'2018-07-04 23:02:39',457300954660995114,541,24),(10329,'2018-07-04 23:02:42',457300954660995114,541,20),(10330,'2018-07-04 23:02:48',200340393596944384,541,11),(10331,'2018-07-04 23:02:48',457300954660995114,541,18),(10332,'2018-07-04 23:02:57',460761978135248896,541,13),(10333,'2018-07-04 23:03:49',457300954660995114,541,25),(10334,'2018-07-04 23:03:53',457300954660995114,541,26),(10335,'2018-07-04 23:03:59',457300954660995114,541,26),(10336,'2018-07-04 23:05:05',454823752925052930,541,13),(10337,'2018-07-04 23:05:06',454823752925052930,541,21),(10338,'2018-07-04 23:05:08',454823752925052930,541,15),(10339,'2018-07-04 23:05:09',454823752925052930,541,19),(10340,'2018-07-04 23:05:10',457300954660995114,541,18),(10341,'2018-07-04 23:05:10',454823752925052930,541,22),(10342,'2018-07-04 23:05:11',454823752925052930,541,15),(10343,'2018-07-04 23:05:13',457300954660995114,541,18),(10344,'2018-07-04 23:35:29',429615167492325376,542,7),(10345,'2018-07-04 23:35:57',294927961310625793,542,12),(10346,'2018-07-04 23:36:04',294927961310625793,542,24),(10347,'2018-07-05 00:02:16',294927961310625793,543,26),(10348,'2018-07-05 00:02:26',294927961310625793,543,17),(10349,'2018-07-05 00:14:41',211232684209340426,544,14),(10350,'2018-07-05 00:14:42',457300954660995114,544,26),(10351,'2018-07-05 00:14:45',200340393596944384,544,25),(10352,'2018-07-05 00:14:46',211232684209340426,544,20),(10353,'2018-07-05 00:14:47',211232684209340426,544,24),(10354,'2018-07-05 00:34:23',211232684209340426,545,22),(10355,'2018-07-05 00:34:23',211232684209340426,545,26),(10356,'2018-07-05 00:34:25',211232684209340426,545,15),(10357,'2018-07-05 00:34:25',211232684209340426,545,28),(10358,'2018-07-05 00:34:26',211232684209340426,545,16),(10359,'2018-07-05 01:06:07',200340393596944384,546,12),(10360,'2018-07-05 01:06:10',457300954660995114,546,26),(10361,'2018-07-05 01:06:10',200340393596944384,546,24),(10362,'2018-07-05 01:06:12',457300954660995114,546,18),(10363,'2018-07-05 01:06:14',460761978135248896,546,19),(10364,'2018-07-05 01:06:14',200340393596944384,546,22),(10365,'2018-07-05 01:06:15',457300954660995114,546,15),(10366,'2018-07-05 01:06:17',460761978135248896,546,16),(10367,'2018-07-05 01:06:17',457300954660995114,546,10),(10368,'2018-07-05 01:06:18',200340393596944384,546,10),(10369,'2018-07-05 01:06:20',460761978135248896,546,10),(10370,'2018-07-05 01:06:21',457300954660995114,546,21),(10371,'2018-07-05 01:35:06',200340393596944384,547,14),(10372,'2018-07-05 01:35:09',200340393596944384,547,14),(10373,'2018-07-05 01:35:11',200340393596944384,547,21),(10374,'2018-07-05 01:35:16',200340393596944384,547,22),(10375,'2018-07-05 01:35:21',460761978135248896,547,20),(10376,'2018-07-05 01:35:22',200340393596944384,547,19),(10377,'2018-07-05 01:35:24',460761978135248896,547,21),(10378,'2018-07-05 01:35:28',460761978135248896,547,25),(10379,'2018-07-05 02:00:21',457300954660995114,548,18),(10380,'2018-07-05 02:00:24',457300954660995114,548,26),(10381,'2018-07-05 02:00:28',200340393596944384,548,17),(10382,'2018-07-05 02:00:31',200340393596944384,548,26),(10383,'2018-07-05 02:00:35',457300954660995114,548,18),(10384,'2018-07-05 02:00:56',457300954660995114,548,21),(10385,'2018-07-05 02:01:06',457300954660995114,548,18),(10386,'2018-07-05 02:01:10',457300954660995114,548,10),(10387,'2018-07-05 02:01:13',457300954660995114,548,26),(10388,'2018-07-05 02:01:15',200340393596944384,548,24),(10389,'2018-07-05 02:19:16',460761978135248896,549,11),(10390,'2018-07-05 02:19:18',200340393596944384,549,19),(10391,'2018-07-05 02:19:20',200340393596944384,549,25),(10392,'2018-07-05 02:19:20',460761978135248896,549,18),(10393,'2018-07-05 02:19:22',218498162745278474,549,25),(10394,'2018-07-05 02:19:22',200340393596944384,549,18),(10395,'2018-07-05 02:19:23',457300954660995114,549,12),(10396,'2018-07-05 02:19:23',218498162745278474,549,20),(10397,'2018-07-05 02:19:23',200340393596944384,549,16),(10398,'2018-07-05 02:19:24',460761978135248896,549,13),(10399,'2018-07-05 02:19:24',200340393596944384,549,16),(10400,'2018-07-05 02:19:25',457300954660995114,549,26),(10401,'2018-07-05 02:19:25',200340393596944384,549,26),(10402,'2018-07-05 02:19:26',200340393596944384,549,10),(10403,'2018-07-05 02:19:26',460761978135248896,549,15),(10404,'2018-07-05 02:19:27',200340393596944384,549,15),(10405,'2018-07-05 02:19:28',218498162745278474,549,14),(10406,'2018-07-05 02:45:52',218498162745278474,550,16),(10407,'2018-07-05 02:45:52',278115594879107074,550,8),(10408,'2018-07-05 02:45:52',218498162745278474,550,15),(10409,'2018-07-05 02:45:53',200340393596944384,550,12),(10410,'2018-07-05 02:45:53',218498162745278474,550,24),(10411,'2018-07-05 02:45:53',460761978135248896,550,24),(10412,'2018-07-05 02:45:53',200340393596944384,550,13),(10413,'2018-07-05 02:45:53',218498162745278474,550,19),(10414,'2018-07-05 02:45:54',200340393596944384,550,17),(10415,'2018-07-05 02:45:54',218498162745278474,550,11),(10416,'2018-07-05 02:45:54',200340393596944384,550,24),(10417,'2018-07-05 02:45:55',218498162745278474,550,14),(10418,'2018-07-05 02:45:55',200340393596944384,550,10),(10419,'2018-07-05 02:45:55',200340393596944384,550,15),(10420,'2018-07-05 02:45:55',278115594879107074,550,12),(10421,'2018-07-05 03:02:02',200340393596944384,551,16),(10422,'2018-07-05 03:02:05',200340393596944384,551,19),(10423,'2018-07-05 03:02:07',460761978135248896,551,22),(10424,'2018-07-05 03:02:10',460761978135248896,551,13),(10425,'2018-07-05 03:02:11',200340393596944384,551,20),(10426,'2018-07-05 03:02:12',457300954660995114,551,13),(10427,'2018-07-05 03:02:12',460761978135248896,551,17),(10428,'2018-07-05 03:02:13',200340393596944384,551,18),(10429,'2018-07-05 03:02:14',200340393596944384,551,24),(10430,'2018-07-05 03:02:15',460761978135248896,551,12),(10431,'2018-07-05 03:02:18',460761978135248896,551,21),(10432,'2018-07-05 03:02:20',460761978135248896,551,19),(10433,'2018-07-05 03:02:22',200340393596944384,551,24),(10434,'2018-07-05 03:02:22',457300954660995114,551,20),(10435,'2018-07-05 03:02:23',460761978135248896,551,25),(10436,'2018-07-05 03:34:14',460761978135248896,552,24),(10437,'2018-07-05 03:34:18',460761978135248896,552,14),(10438,'2018-07-05 03:34:23',460761978135248896,552,18),(10439,'2018-07-05 03:34:24',457300954660995114,552,10),(10440,'2018-07-05 03:34:27',460761978135248896,552,21),(10441,'2018-07-05 03:34:30',457300954660995114,552,12),(10442,'2018-07-05 03:34:31',460761978135248896,552,10),(10443,'2018-07-05 03:34:35',460761978135248896,552,18),(10444,'2018-07-05 03:34:37',457300954660995114,552,17),(10445,'2018-07-05 03:34:40',460761978135248896,552,13),(10446,'2018-07-05 03:34:44',457300954660995114,552,16),(10447,'2018-07-05 03:34:58',460761978135248896,552,11),(10448,'2018-07-05 03:35:05',460761978135248896,552,26),(10449,'2018-07-05 03:35:08',457300954660995114,552,10),(10450,'2018-07-05 03:35:14',457300954660995114,552,26),(10451,'2018-07-05 03:35:42',200340393596944384,552,11),(10452,'2018-07-05 03:35:43',200340393596944384,552,22),(10453,'2018-07-05 03:35:44',200340393596944384,552,14),(10454,'2018-07-05 03:35:45',185698541052755968,552,7),(10455,'2018-07-05 03:35:46',457300954660995114,552,20),(10456,'2018-07-05 03:35:46',185698541052755968,552,8),(10457,'2018-07-05 03:35:46',278115594879107074,552,12),(10458,'2018-07-05 03:35:46',185698541052755968,552,10),(10459,'2018-07-05 03:35:47',185698541052755968,552,9),(10460,'2018-07-05 03:35:47',185698541052755968,552,7),(10461,'2018-07-05 03:35:47',185698541052755968,552,12),(10462,'2018-07-05 03:35:48',185698541052755968,552,16),(10463,'2018-07-05 03:35:49',278115594879107074,552,16),(10464,'2018-07-05 03:35:50',200340393596944384,552,26),(10465,'2018-07-05 03:35:51',185698541052755968,552,14),(10466,'2018-07-05 03:35:51',200340393596944384,552,11),(10467,'2018-07-05 03:35:52',200340393596944384,552,21),(10468,'2018-07-05 03:35:52',185698541052755968,552,9),(10469,'2018-07-05 03:35:53',457300954660995114,552,12),(10470,'2018-07-05 03:46:11',457300954660995114,553,25),(10471,'2018-07-05 03:46:12',200340393596944384,553,26),(10472,'2018-07-05 03:46:13',460761978135248896,553,24),(10473,'2018-07-05 03:46:18',200340393596944384,553,14),(10474,'2018-07-05 03:46:24',460761978135248896,553,16),(10475,'2018-07-05 03:46:27',457300954660995114,553,10),(10476,'2018-07-05 03:46:41',460761978135248896,553,17),(10477,'2018-07-05 03:46:47',454823752925052930,553,10),(10478,'2018-07-05 03:46:49',454823752925052930,553,21),(10479,'2018-07-05 03:46:52',460761978135248896,553,12),(10480,'2018-07-05 03:46:56',454823752925052930,553,12),(10481,'2018-07-05 03:46:57',454823752925052930,553,10),(10482,'2018-07-05 03:47:04',457300954660995114,553,10),(10483,'2018-07-05 03:47:18',163770616581718017,553,13),(10484,'2018-07-05 03:47:19',163770616581718017,553,11),(10485,'2018-07-05 03:47:21',433759248800022532,553,7),(10486,'2018-07-05 03:47:22',163770616581718017,553,11),(10487,'2018-07-05 03:47:22',433759248800022532,553,12),(10488,'2018-07-05 03:47:23',433759248800022532,553,12),(10489,'2018-07-05 03:47:23',163770616581718017,553,11),(10490,'2018-07-05 03:47:24',433759248800022532,553,16),(10491,'2018-07-05 03:47:25',460761978135248896,553,16),(10492,'2018-07-05 03:47:25',433759248800022532,553,17),(10493,'2018-07-05 03:47:27',433759248800022532,553,12),(10494,'2018-07-05 04:01:56',163770616581718017,554,11),(10495,'2018-07-05 04:01:56',163770616581718017,554,11),(10496,'2018-07-05 04:03:18',325565391478718464,554,17),(10497,'2018-07-05 04:03:23',390618369545601028,554,19),(10498,'2018-07-05 04:03:26',390618369545601028,554,23),(10499,'2018-07-05 04:03:27',460761978135248896,554,10),(10500,'2018-07-05 04:03:31',325565391478718464,554,19),(10501,'2018-07-05 05:21:29',163770616581718017,555,11),(10502,'2018-07-05 05:21:32',325565391478718464,555,21),(10503,'2018-07-05 05:21:35',325565391478718464,555,19),(10504,'2018-07-05 05:21:36',306381311923453953,555,16),(10505,'2018-07-05 05:21:38',325565391478718464,555,13),(10506,'2018-07-05 05:21:38',306381311923453953,555,16),(10507,'2018-07-05 05:21:41',306381311923453953,555,11),(10508,'2018-07-05 05:21:41',325565391478718464,555,26),(10509,'2018-07-05 05:21:44',325565391478718464,555,24),(10510,'2018-07-05 05:21:45',306381311923453953,555,15),(10511,'2018-07-05 05:21:48',306381311923453953,555,14),(10512,'2018-07-05 05:21:49',325565391478718464,555,18),(10513,'2018-07-05 05:21:51',325565391478718464,555,12),(10514,'2018-07-05 05:21:53',306381311923453953,555,7),(10515,'2018-07-05 05:22:07',306381311923453953,555,13),(10516,'2018-07-05 05:47:16',390618369545601028,556,18),(10517,'2018-07-05 05:47:19',390618369545601028,556,16),(10518,'2018-07-05 05:47:19',325565391478718464,556,32),(10519,'2018-07-05 06:02:45',185698541052755968,557,10),(10520,'2018-07-05 06:02:46',185698541052755968,557,13),(10521,'2018-07-05 06:02:46',131968711312539648,557,20),(10522,'2018-07-05 06:02:47',185698541052755968,557,12),(10523,'2018-07-05 06:02:47',185698541052755968,557,13),(10524,'2018-07-05 06:02:48',185698541052755968,557,7),(10525,'2018-07-05 06:02:49',131968711312539648,557,10),(10526,'2018-07-05 06:02:49',185698541052755968,557,7),(10527,'2018-07-05 06:02:51',390618369545601028,557,11),(10528,'2018-07-05 06:02:51',185698541052755968,557,7),(10529,'2018-07-05 06:02:52',131968711312539648,557,17),(10530,'2018-07-05 06:02:53',390618369545601028,557,18),(10531,'2018-07-05 06:19:16',200340393596944384,558,18),(10532,'2018-07-05 06:19:21',390618369545601028,558,17),(10533,'2018-07-05 06:19:23',390618369545601028,558,17),(10534,'2018-07-05 06:19:24',325565391478718464,558,30),(10535,'2018-07-05 06:19:25',390618369545601028,558,12),(10536,'2018-07-05 06:19:26',390618369545601028,558,13),(10537,'2018-07-05 06:19:26',131968711312539648,558,11),(10538,'2018-07-05 06:48:30',131968711312539648,559,14),(10539,'2018-07-05 06:48:32',131968711312539648,559,16),(10540,'2018-07-05 06:48:33',131968711312539648,559,14),(10541,'2018-07-05 06:48:35',131968711312539648,559,16),(10542,'2018-07-05 06:48:37',131968711312539648,559,11),(10543,'2018-07-05 06:50:14',460761978135248896,559,22),(10544,'2018-07-05 06:50:18',460761978135248896,559,14),(10545,'2018-07-05 06:50:22',460761978135248896,559,23),(10546,'2018-07-05 06:50:25',460761978135248896,559,26),(10547,'2018-07-05 06:50:30',460761978135248896,559,14),(10548,'2018-07-05 06:50:34',460761978135248896,559,23),(10549,'2018-07-05 06:50:38',460761978135248896,559,25),(10550,'2018-07-05 06:50:42',460761978135248896,559,21),(10551,'2018-07-05 07:32:59',357981974931046400,560,15),(10552,'2018-07-05 07:33:01',457300954660995114,560,14),(10553,'2018-07-05 07:33:02',357981974931046400,560,22),(10554,'2018-07-05 07:33:03',457300954660995114,560,23),(10555,'2018-07-05 07:33:06',457300954660995114,560,24),(10556,'2018-07-05 07:33:06',357981974931046400,560,19),(10557,'2018-07-05 07:33:09',457300954660995114,560,11),(10558,'2018-07-05 07:33:10',357981974931046400,560,26),(10559,'2018-07-05 07:33:12',357981974931046400,560,25),(10560,'2018-07-05 07:33:14',357981974931046400,560,13),(10561,'2018-07-05 07:33:14',457300954660995114,560,23),(10562,'2018-07-05 07:33:16',357981974931046400,560,22),(10563,'2018-07-05 07:33:17',457300954660995114,560,21),(10564,'2018-07-05 08:16:42',357981974931046400,561,12),(10565,'2018-07-05 08:16:43',357981974931046400,561,19),(10566,'2018-07-05 08:16:44',357981974931046400,561,13),(10567,'2018-07-05 08:16:44',357981974931046400,561,17),(10568,'2018-07-05 08:16:46',357981974931046400,561,11),(10569,'2018-07-05 08:16:48',457300954660995114,561,10),(10570,'2018-07-05 08:16:49',460761978135248896,561,20),(10571,'2018-07-05 08:16:49',357981974931046400,561,27),(10572,'2018-07-05 08:16:50',185698541052755968,561,7),(10573,'2018-07-05 08:16:50',457300954660995114,561,17),(10574,'2018-07-05 08:16:51',185698541052755968,561,11),(10575,'2018-07-05 08:16:52',185698541052755968,561,15),(10576,'2018-07-05 08:16:52',457300954660995114,561,15),(10577,'2018-07-05 08:16:53',460761978135248896,561,22),(10578,'2018-07-05 08:16:54',185698541052755968,561,16),(10579,'2018-07-05 08:16:54',457300954660995114,561,12),(10580,'2018-07-05 08:16:55',185698541052755968,561,12),(10581,'2018-07-05 08:16:55',460761978135248896,561,15),(10582,'2018-07-05 09:05:43',390618369545601028,562,19),(10583,'2018-07-05 09:05:43',357981974931046400,562,12),(10584,'2018-07-05 09:05:43',457300954660995114,562,21),(10585,'2018-07-05 09:05:44',390618369545601028,562,20),(10586,'2018-07-05 09:05:44',460761978135248896,562,16),(10587,'2018-07-05 09:05:44',390618369545601028,562,16),(10588,'2018-07-05 09:05:45',390618369545601028,562,25),(10589,'2018-07-05 09:05:45',390618369545601028,562,16),(10590,'2018-07-05 09:05:45',457300954660995114,562,11),(10591,'2018-07-05 09:05:46',390618369545601028,562,24),(10592,'2018-07-05 09:05:46',460761978135248896,562,10),(10593,'2018-07-05 09:05:48',438094660712267778,562,18),(10594,'2018-07-05 09:05:49',460761978135248896,562,23),(10595,'2018-07-05 09:05:50',438094660712267778,562,13),(10596,'2018-07-05 09:05:51',460761978135248896,562,21),(10597,'2018-07-05 09:05:54',460761978135248896,562,14),(10598,'2018-07-05 09:18:21',357981974931046400,563,13),(10599,'2018-07-05 09:18:23',325565391478718464,563,19),(10600,'2018-07-05 09:18:28',325565391478718464,563,27),(10601,'2018-07-05 09:18:38',325565391478718464,563,12),(10602,'2018-07-05 09:18:55',274301199841361920,563,13),(10603,'2018-07-05 09:18:56',274301199841361920,563,19),(10604,'2018-07-05 09:18:57',274301199841361920,563,9),(10605,'2018-07-05 09:18:58',274301199841361920,563,22),(10606,'2018-07-05 09:18:59',325565391478718464,563,24),(10607,'2018-07-05 09:19:00',274301199841361920,563,12),(10608,'2018-07-05 09:19:01',274301199841361920,563,23),(10609,'2018-07-05 09:19:15',457300954660995114,563,19),(10610,'2018-07-05 09:19:18',325565391478718464,563,13),(10611,'2018-07-05 09:19:21',457300954660995114,563,16),(10612,'2018-07-05 09:19:25',457300954660995114,563,15),(10613,'2018-07-05 09:36:39',274301199841361920,564,24),(10614,'2018-07-05 09:36:41',274301199841361920,564,12),(10615,'2018-07-05 09:36:43',274301199841361920,564,18),(10616,'2018-07-05 09:36:46',274301199841361920,564,10),(10617,'2018-07-05 09:36:47',325565391478718464,564,23),(10618,'2018-07-05 09:36:48',274301199841361920,564,13),(10619,'2018-07-05 09:36:52',457300954660995114,564,11),(10620,'2018-07-05 09:36:56',460761978135248896,564,12),(10621,'2018-07-05 09:37:00',460761978135248896,564,12),(10622,'2018-07-05 09:37:04',460761978135248896,564,18),(10623,'2018-07-05 09:37:05',357981974931046400,564,24),(10624,'2018-07-05 09:37:07',460761978135248896,564,14),(10625,'2018-07-05 09:37:11',460761978135248896,564,10),(10626,'2018-07-05 09:37:18',457300954660995114,564,13),(10627,'2018-07-05 09:37:22',457300954660995114,564,10),(10628,'2018-07-05 09:37:23',325565391478718464,564,18),(10629,'2018-07-05 09:37:26',457300954660995114,564,13),(10630,'2018-07-05 09:37:30',460761978135248896,564,22),(10631,'2018-07-05 09:37:30',457300954660995114,564,19),(10632,'2018-07-05 09:37:35',457300954660995114,564,18),(10633,'2018-07-05 09:37:36',460761978135248896,564,10),(10634,'2018-07-05 09:37:41',457300954660995114,564,20),(10635,'2018-07-05 09:38:07',457300954660995114,564,10),(10636,'2018-07-05 09:38:30',457300954660995114,564,20),(10637,'2018-07-05 09:38:56',457300954660995114,564,26),(10638,'2018-07-05 09:40:21',185698541052755968,564,7),(10639,'2018-07-05 09:40:21',185698541052755968,564,14),(10640,'2018-07-05 09:40:25',460761978135248896,564,18),(10641,'2018-07-05 09:48:23',265907268942299136,565,16),(10642,'2018-07-05 09:48:29',265907268942299136,565,12),(10643,'2018-07-05 09:48:33',265907268942299136,565,10),(10644,'2018-07-05 09:48:46',185698541052755968,565,12),(10645,'2018-07-05 09:49:00',185698541052755968,565,15),(10646,'2018-07-05 09:49:08',185698541052755968,565,11),(10647,'2018-07-05 09:50:40',211232684209340426,565,17),(10648,'2018-07-05 09:50:41',211232684209340426,565,18),(10649,'2018-07-05 09:50:43',211232684209340426,565,22),(10650,'2018-07-05 09:50:46',211232684209340426,565,14),(10651,'2018-07-05 10:04:47',325565391478718464,566,24),(10652,'2018-07-05 10:04:53',325565391478718464,566,17),(10653,'2018-07-05 10:49:43',357981974931046400,567,16),(10654,'2018-07-05 10:49:44',357981974931046400,567,24),(10655,'2018-07-05 10:49:44',357981974931046400,567,12),(10656,'2018-07-05 10:49:44',357981974931046400,567,27),(10657,'2018-07-05 11:30:22',357981974931046400,568,26),(10658,'2018-07-05 11:30:23',357981974931046400,568,10),(10659,'2018-07-05 11:30:24',357981974931046400,568,14),(10660,'2018-07-05 11:30:26',357981974931046400,568,15),(10661,'2018-07-05 11:30:29',357981974931046400,568,14),(10662,'2018-07-05 11:30:30',357981974931046400,568,28),(10663,'2018-07-05 11:30:40',357981974931046400,568,26),(10664,'2018-07-05 11:30:42',357981974931046400,568,27),(10665,'2018-07-05 12:04:25',357981974931046400,569,19),(10666,'2018-07-05 12:04:27',357981974931046400,569,16),(10667,'2018-07-05 12:04:29',357981974931046400,569,21),(10668,'2018-07-05 12:04:40',357981974931046400,569,23),(10669,'2018-07-05 12:04:42',357981974931046400,569,26),(10670,'2018-07-05 12:04:45',357981974931046400,569,14),(10671,'2018-07-05 12:04:45',211232684209340426,569,20),(10672,'2018-07-05 12:21:50',274301199841361920,570,18),(10673,'2018-07-05 12:21:51',274301199841361920,570,14),(10674,'2018-07-05 12:21:51',357981974931046400,570,20),(10675,'2018-07-05 12:21:51',274301199841361920,570,11),(10676,'2018-07-05 12:21:51',274301199841361920,570,24),(10677,'2018-07-05 12:21:51',357981974931046400,570,12),(10678,'2018-07-05 12:21:52',274301199841361920,570,19),(10679,'2018-07-05 12:21:52',357981974931046400,570,15),(10680,'2018-07-05 12:21:52',274301199841361920,570,12),(10681,'2018-07-05 12:21:52',357981974931046400,570,13),(10682,'2018-07-05 12:22:12',357981974931046400,570,19),(10683,'2018-07-05 12:22:13',357981974931046400,570,27),(10684,'2018-07-05 12:22:15',357981974931046400,570,13),(10685,'2018-07-05 12:37:23',357981974931046400,571,11),(10686,'2018-07-05 12:37:24',357981974931046400,571,10),(10687,'2018-07-05 12:37:26',357981974931046400,571,18),(10688,'2018-07-05 12:37:28',357981974931046400,571,25),(10689,'2018-07-05 12:37:30',357981974931046400,571,19),(10690,'2018-07-05 12:37:32',357981974931046400,571,23),(10691,'2018-07-05 12:37:35',357981974931046400,571,13),(10692,'2018-07-05 12:38:51',357981974931046400,571,17),(10693,'2018-07-05 12:41:34',262771588946984963,571,27),(10694,'2018-07-05 12:41:35',262771588946984963,571,22),(10695,'2018-07-05 12:41:35',262771588946984963,571,22),(10696,'2018-07-05 12:51:05',357981974931046400,572,25),(10697,'2018-07-05 12:51:07',357981974931046400,572,26),(10698,'2018-07-05 12:51:24',357981974931046400,572,26),(10699,'2018-07-05 12:51:28',357981974931046400,572,22),(10700,'2018-07-05 12:52:15',400022926348386315,572,10),(10701,'2018-07-05 12:52:23',400022926348386315,572,18),(10702,'2018-07-05 12:52:24',400022926348386315,572,9),(10703,'2018-07-05 12:52:28',400022926348386315,572,7),(10704,'2018-07-05 12:52:30',400022926348386315,572,11),(10705,'2018-07-05 12:52:31',400022926348386315,572,13),(10706,'2018-07-05 12:52:35',400022926348386315,572,10),(10707,'2018-07-05 12:52:50',400022926348386315,572,10),(10708,'2018-07-05 12:52:52',400022926348386315,572,14),(10709,'2018-07-05 12:52:54',400022926348386315,572,9),(10710,'2018-07-05 12:52:54',142612779377885185,572,19),(10711,'2018-07-05 12:53:04',142612779377885185,572,20),(10712,'2018-07-05 13:00:44',325565391478718464,573,32),(10713,'2018-07-05 13:00:47',325565391478718464,573,24),(10714,'2018-07-05 13:00:59',325565391478718464,573,13),(10715,'2018-07-05 13:01:02',325565391478718464,573,19),(10716,'2018-07-05 13:01:05',325565391478718464,573,33),(10717,'2018-07-05 13:01:09',325565391478718464,573,28),(10718,'2018-07-05 13:01:12',274301199841361920,573,17),(10719,'2018-07-05 13:01:12',274301199841361920,573,19),(10720,'2018-07-05 13:01:14',274301199841361920,573,21),(10721,'2018-07-05 13:01:18',325565391478718464,573,16),(10722,'2018-07-05 13:01:18',357981974931046400,573,22),(10723,'2018-07-05 13:01:19',274301199841361920,573,25),(10724,'2018-07-05 13:01:21',274301199841361920,573,19),(10725,'2018-07-05 13:01:21',357981974931046400,573,13),(10726,'2018-07-05 13:01:22',274301199841361920,573,19),(10727,'2018-07-05 13:01:37',357981974931046400,573,16),(10728,'2018-07-05 13:01:47',265907268942299136,573,16),(10729,'2018-07-05 13:01:54',265907268942299136,573,21),(10730,'2018-07-05 13:01:58',265907268942299136,573,22),(10731,'2018-07-05 13:32:35',357981974931046400,574,12),(10732,'2018-07-05 13:32:43',357981974931046400,574,17),(10733,'2018-07-05 13:33:19',185698541052755968,574,10),(10734,'2018-07-05 13:33:20',185698541052755968,574,7),(10735,'2018-07-05 13:33:23',185698541052755968,574,9),(10736,'2018-07-05 13:33:24',185698541052755968,574,15),(10737,'2018-07-05 13:33:26',185698541052755968,574,9),(10738,'2018-07-05 13:33:27',185698541052755968,574,7),(10739,'2018-07-05 13:33:28',185698541052755968,574,9),(10740,'2018-07-05 13:33:30',185698541052755968,574,7),(10741,'2018-07-05 13:33:37',185698541052755968,574,9),(10742,'2018-07-05 13:35:16',325565391478718464,574,20),(10743,'2018-07-05 13:35:28',325565391478718464,574,17),(10744,'2018-07-05 13:35:31',325565391478718464,574,23),(10745,'2018-07-05 13:35:34',325565391478718464,574,29),(10746,'2018-07-05 14:18:02',357981974931046400,575,11),(10747,'2018-07-05 14:18:03',357981974931046400,575,19),(10748,'2018-07-05 14:30:31',357981974931046400,576,20),(10749,'2018-07-05 14:30:32',357981974931046400,576,20),(10750,'2018-07-05 14:30:32',357981974931046400,576,15),(10751,'2018-07-05 14:30:33',325565391478718464,576,24),(10752,'2018-07-05 15:14:55',357981974931046400,577,13),(10753,'2018-07-05 15:14:57',357981974931046400,577,26),(10754,'2018-07-05 15:14:58',357981974931046400,577,22),(10755,'2018-07-05 15:15:00',357981974931046400,577,11),(10756,'2018-07-05 15:15:02',357981974931046400,577,17),(10757,'2018-07-05 15:15:04',357981974931046400,577,14),(10758,'2018-07-05 15:15:06',357981974931046400,577,26),(10759,'2018-07-05 15:46:13',357981974931046400,578,13),(10760,'2018-07-05 15:46:15',357981974931046400,578,28),(10761,'2018-07-05 15:46:18',357981974931046400,578,23),(10762,'2018-07-05 15:46:20',357981974931046400,578,12),(10763,'2018-07-05 15:46:23',357981974931046400,578,12),(10764,'2018-07-05 15:46:30',357981974931046400,578,24),(10765,'2018-07-05 15:46:46',357981974931046400,578,18),(10766,'2018-07-05 15:46:46',274301199841361920,578,18),(10767,'2018-07-05 15:46:47',274301199841361920,578,22),(10768,'2018-07-05 16:06:54',357981974931046400,579,19),(10769,'2018-07-05 16:06:55',357981974931046400,579,20),(10770,'2018-07-05 16:06:56',325565391478718464,579,21),(10771,'2018-07-05 16:07:00',325565391478718464,579,19),(10772,'2018-07-05 16:07:00',200340393596944384,579,12),(10773,'2018-07-05 16:07:02',200340393596944384,579,11),(10774,'2018-07-05 16:07:02',325565391478718464,579,26),(10775,'2018-07-05 16:07:03',200340393596944384,579,14),(10776,'2018-07-05 16:07:04',325565391478718464,579,24),(10777,'2018-07-05 16:07:05',200340393596944384,579,12),(10778,'2018-07-05 16:07:06',357981974931046400,579,11),(10779,'2018-07-05 16:07:06',325565391478718464,579,25),(10780,'2018-07-05 16:07:06',200340393596944384,579,11),(10781,'2018-07-05 16:07:08',200340393596944384,579,14),(10782,'2018-07-05 16:44:37',218498162745278474,580,17),(10783,'2018-07-05 16:44:38',218498162745278474,580,10),(10784,'2018-07-05 16:44:38',357981974931046400,580,22),(10785,'2018-07-05 16:44:38',218498162745278474,580,17),(10786,'2018-07-05 16:44:39',200340393596944384,580,24),(10787,'2018-07-05 16:44:39',218498162745278474,580,13),(10788,'2018-07-05 16:44:39',200340393596944384,580,13),(10789,'2018-07-05 16:44:39',357981974931046400,580,14),(10790,'2018-07-05 16:44:39',457300954660995114,580,20),(10791,'2018-07-05 16:44:39',200340393596944384,580,26),(10792,'2018-07-05 17:04:03',218498162745278474,581,22),(10793,'2018-07-05 17:04:03',200340393596944384,581,19),(10794,'2018-07-05 17:04:03',218498162745278474,581,11),(10795,'2018-07-05 17:04:03',457300954660995114,581,16),(10796,'2018-07-05 17:04:03',200340393596944384,581,20),(10797,'2018-07-05 17:04:03',218498162745278474,581,17),(10798,'2018-07-05 17:04:04',357981974931046400,581,15),(10799,'2018-07-05 17:04:04',334750493085794304,581,11),(10800,'2018-07-05 17:04:04',218498162745278474,581,11),(10801,'2018-07-05 17:04:04',200340393596944384,581,20),(10802,'2018-07-05 17:04:04',334750493085794304,581,7),(10803,'2018-07-05 17:04:04',218498162745278474,581,24),(10804,'2018-07-05 17:04:04',200340393596944384,581,17),(10805,'2018-07-05 17:04:05',334750493085794304,581,10),(10806,'2018-07-05 17:04:05',218498162745278474,581,19),(10807,'2018-07-05 17:04:05',200340393596944384,581,21),(10808,'2018-07-05 17:04:05',334750493085794304,581,8),(10809,'2018-07-05 17:04:05',218498162745278474,581,15),(10810,'2018-07-05 17:22:13',457300954660995114,582,15),(10811,'2018-07-05 17:22:15',200340393596944384,582,20),(10812,'2018-07-05 17:22:15',200340393596944384,582,16),(10813,'2018-07-05 17:22:15',200340393596944384,582,18),(10814,'2018-07-05 17:22:16',200340393596944384,582,11),(10815,'2018-07-05 17:22:16',200340393596944384,582,24),(10816,'2018-07-05 17:22:16',200340393596944384,582,18),(10817,'2018-07-05 17:22:17',388505302292627456,582,16),(10818,'2018-07-05 17:22:19',457300954660995114,582,12),(10819,'2018-07-05 17:22:22',388505302292627456,582,12),(10820,'2018-07-05 17:22:23',457300954660995114,582,27),(10821,'2018-07-05 17:22:24',388505302292627456,582,15),(10822,'2018-07-05 17:22:25',457300954660995114,582,10),(10823,'2018-07-05 17:22:26',388505302292627456,582,9),(10824,'2018-07-05 17:22:27',388505302292627456,582,14),(10825,'2018-07-05 17:22:27',457300954660995114,582,27),(10826,'2018-07-05 17:22:29',457300954660995114,582,21),(10827,'2018-07-05 17:22:31',388505302292627456,582,11),(10828,'2018-07-05 17:22:32',457300954660995114,582,13),(10829,'2018-07-05 17:22:35',457300954660995114,582,26),(10830,'2018-07-05 17:22:35',388505302292627456,582,8),(10831,'2018-07-05 17:22:36',388505302292627456,582,7),(10832,'2018-07-05 17:22:38',457300954660995114,582,15),(10833,'2018-07-05 17:22:42',457300954660995114,582,14),(10834,'2018-07-05 17:22:52',460761978135248896,582,26),(10835,'2018-07-05 17:44:11',274301199841361920,583,14),(10836,'2018-07-05 17:44:11',274301199841361920,583,22),(10837,'2018-07-05 17:44:11',274301199841361920,583,22),(10838,'2018-07-05 17:44:12',274301199841361920,583,12),(10839,'2018-07-05 17:44:12',460761978135248896,583,10),(10840,'2018-07-05 17:44:12',218498162745278474,583,18),(10841,'2018-07-05 17:44:12',274301199841361920,583,25),(10842,'2018-07-05 17:44:12',200340393596944384,583,13),(10843,'2018-07-05 17:44:13',200340393596944384,583,12),(10844,'2018-07-05 17:44:15',460761978135248896,583,18),(10845,'2018-07-05 17:44:19',200340393596944384,583,24),(10846,'2018-07-05 17:44:19',460761978135248896,583,13),(10847,'2018-07-05 17:44:20',200340393596944384,583,19),(10848,'2018-07-05 17:44:24',334750493085794304,583,14),(10849,'2018-07-05 17:44:25',200340393596944384,583,25),(10850,'2018-07-05 17:44:28',324727149930086400,583,12),(10851,'2018-07-05 17:44:28',460761978135248896,583,26),(10852,'2018-07-05 17:44:28',334750493085794304,583,8),(10853,'2018-07-05 17:44:29',334750493085794304,583,15),(10854,'2018-07-05 17:44:29',334750493085794304,583,11),(10855,'2018-07-05 17:44:30',334750493085794304,583,11),(10856,'2018-07-05 17:44:32',357981974931046400,583,20),(10857,'2018-07-05 17:44:33',324727149930086400,583,6),(10858,'2018-07-05 17:44:34',334750493085794304,583,7),(10859,'2018-07-05 17:44:35',334750493085794304,583,8),(10860,'2018-07-05 17:44:36',460761978135248896,583,25),(10861,'2018-07-05 17:44:42',324727149930086400,583,15),(10862,'2018-07-05 17:44:43',429615167492325376,583,7),(10863,'2018-07-05 18:14:47',274301199841361920,584,13),(10864,'2018-07-05 18:14:48',274301199841361920,584,22),(10865,'2018-07-05 18:14:50',274301199841361920,584,11),(10866,'2018-07-05 18:14:51',274301199841361920,584,15),(10867,'2018-07-05 18:15:08',357981974931046400,584,20),(10868,'2018-07-05 18:15:12',460761978135248896,584,12),(10869,'2018-07-05 18:15:31',429615167492325376,584,8),(10870,'2018-07-05 18:15:37',429615167492325376,584,7),(10871,'2018-07-05 18:35:03',357981974931046400,585,25),(10872,'2018-07-05 18:35:04',357981974931046400,585,18),(10873,'2018-07-05 18:35:04',357981974931046400,585,21),(10874,'2018-07-05 19:18:22',454823752925052930,586,13),(10875,'2018-07-05 19:18:22',357981974931046400,586,19),(10876,'2018-07-05 19:18:22',218498162745278474,586,11),(10877,'2018-07-05 19:18:23',454823752925052930,586,10),(10878,'2018-07-05 19:18:23',357981974931046400,586,24),(10879,'2018-07-05 19:33:23',357981974931046400,587,28),(10880,'2018-07-05 19:33:24',357981974931046400,587,13),(10881,'2018-07-05 19:33:25',357981974931046400,587,25),(10882,'2018-07-05 19:33:27',460761978135248896,587,23),(10883,'2018-07-05 19:33:30',460761978135248896,587,17),(10884,'2018-07-05 19:33:32',454823752925052930,587,18),(10885,'2018-07-05 19:50:54',433759248800022532,588,8),(10886,'2018-07-05 19:50:55',433759248800022532,588,12),(10887,'2018-07-05 19:50:56',211232684209340426,588,16),(10888,'2018-07-05 19:50:56',211232684209340426,588,15),(10889,'2018-07-05 19:50:56',433759248800022532,588,12),(10890,'2018-07-05 19:50:56',211232684209340426,588,12),(10891,'2018-07-05 19:50:56',211232684209340426,588,21),(10892,'2018-07-05 19:50:56',433759248800022532,588,16),(10893,'2018-07-05 19:50:57',211232684209340426,588,11),(10894,'2018-07-05 19:50:57',211232684209340426,588,22),(10895,'2018-07-05 19:50:57',433759248800022532,588,16),(10896,'2018-07-05 19:50:57',211232684209340426,588,26),(10897,'2018-07-05 20:07:19',357981974931046400,589,24),(10898,'2018-07-05 20:07:19',454823752925052930,589,16),(10899,'2018-07-05 20:07:19',457300954660995114,589,16),(10900,'2018-07-05 20:07:19',357981974931046400,589,20),(10901,'2018-07-05 20:07:19',454823752925052930,589,11),(10902,'2018-07-05 20:07:20',357981974931046400,589,12),(10903,'2018-07-05 20:07:20',454823752925052930,589,14),(10904,'2018-07-05 20:07:20',218498162745278474,589,24),(10905,'2018-07-05 20:07:20',454823752925052930,589,15),(10906,'2018-07-05 20:07:21',454823752925052930,589,15),(10907,'2018-07-05 20:07:21',218498162745278474,589,18),(10908,'2018-07-05 20:14:57',218498162745278474,590,13),(10909,'2018-07-05 20:14:58',429615167492325376,590,7),(10910,'2018-07-05 20:14:58',460761978135248896,590,25),(10911,'2018-07-05 20:14:59',196372356514447360,590,11),(10912,'2018-07-05 20:14:59',357981974931046400,590,24),(10913,'2018-07-05 20:15:00',357981974931046400,590,27),(10914,'2018-07-05 20:15:01',196372356514447360,590,17),(10915,'2018-07-05 20:15:01',460761978135248896,590,13),(10916,'2018-07-05 20:15:02',357981974931046400,590,12),(10917,'2018-07-05 20:15:02',196372356514447360,590,7),(10918,'2018-07-05 20:15:03',454823752925052930,590,17),(10919,'2018-07-05 20:15:03',454823752925052930,590,18),(10920,'2018-07-05 20:15:04',429615167492325376,590,16),(10921,'2018-07-05 20:15:04',454823752925052930,590,18),(10922,'2018-07-05 20:15:04',196372356514447360,590,19),(10923,'2018-07-05 20:15:05',454823752925052930,590,15),(10924,'2018-07-05 20:15:05',454823752925052930,590,9),(10925,'2018-07-05 20:15:07',460761978135248896,590,26),(10926,'2018-07-05 20:33:42',150649616772235264,591,12),(10927,'2018-07-05 20:33:44',454823752925052930,591,15),(10928,'2018-07-05 20:33:45',454823752925052930,591,18),(10929,'2018-07-05 20:33:46',457300954660995114,591,18),(10930,'2018-07-05 20:33:46',357981974931046400,591,26),(10931,'2018-07-05 20:33:46',454823752925052930,591,12),(10932,'2018-07-05 20:33:46',150649616772235264,591,16),(10933,'2018-07-05 20:33:46',211232684209340426,591,13),(10934,'2018-07-05 20:33:46',211232684209340426,591,20),(10935,'2018-07-05 20:33:46',196372356514447360,591,16),(10936,'2018-07-05 20:33:46',211232684209340426,591,28),(10937,'2018-07-05 20:33:47',150649616772235264,591,18),(10938,'2018-07-05 20:33:47',211232684209340426,591,16),(10939,'2018-07-05 20:33:47',211232684209340426,591,21),(10940,'2018-07-05 20:33:48',433759248800022532,591,9),(10941,'2018-07-05 20:33:48',211232684209340426,591,29),(10942,'2018-07-05 20:33:48',150649616772235264,591,11),(10943,'2018-07-05 20:33:48',211232684209340426,591,11),(10944,'2018-07-05 20:33:48',357981974931046400,591,24),(10945,'2018-07-05 20:33:48',196372356514447360,591,18),(10946,'2018-07-05 20:45:57',460761978135248896,592,15),(10947,'2018-07-05 20:45:57',454823752925052930,592,15),(10948,'2018-07-05 20:45:58',454823752925052930,592,9),(10949,'2018-07-05 20:45:58',173468649884090368,592,7),(10950,'2018-07-05 20:45:58',454823752925052930,592,19),(10951,'2018-07-05 20:45:58',196372356514447360,592,19),(10952,'2018-07-05 20:45:59',325565391478718464,592,14),(10953,'2018-07-05 20:45:59',424563962303086594,592,8),(10954,'2018-07-05 20:46:00',433759248800022532,592,17),(10955,'2018-07-05 20:46:00',196372356514447360,592,7),(10956,'2018-07-05 20:46:00',433759248800022532,592,14),(10957,'2018-07-05 20:46:00',325565391478718464,592,18),(10958,'2018-07-05 20:46:00',460761978135248896,592,24),(10959,'2018-07-05 20:46:01',433759248800022532,592,12),(10960,'2018-07-05 20:46:01',150649616772235264,592,9),(10961,'2018-07-05 20:46:01',424563962303086594,592,14),(10962,'2018-07-05 20:46:01',196372356514447360,592,10),(10963,'2018-07-05 20:46:02',196372356514447360,592,7),(10964,'2018-07-05 20:46:02',325565391478718464,592,30),(10965,'2018-07-05 20:46:02',150649616772235264,592,13),(10966,'2018-07-05 20:46:02',196372356514447360,592,11),(10967,'2018-07-05 20:46:04',325565391478718464,592,13),(10968,'2018-07-05 20:46:04',424563962303086594,592,10),(10969,'2018-07-05 20:46:04',118124619117887488,592,16),(10970,'2018-07-05 20:46:05',433759248800022532,592,9),(10971,'2018-07-05 20:46:05',433759248800022532,592,10),(10972,'2018-07-05 20:46:06',433759248800022532,592,7),(10973,'2018-07-05 20:46:06',150649616772235264,592,13),(10974,'2018-07-05 20:46:06',424563962303086594,592,8),(10975,'2018-07-05 21:03:43',173468649884090368,593,10),(10976,'2018-07-05 21:03:44',424563962303086594,593,9),(10977,'2018-07-05 21:03:45',460761978135248896,593,18),(10978,'2018-07-05 21:03:45',424563962303086594,593,18),(10979,'2018-07-05 21:03:46',173468649884090368,593,11),(10980,'2018-07-05 21:03:47',424563962303086594,593,8),(10981,'2018-07-05 21:03:49',424563962303086594,593,17),(10982,'2018-07-05 21:03:52',424563962303086594,593,12),(10983,'2018-07-05 21:03:53',173468649884090368,593,10),(10984,'2018-07-05 21:03:54',424563962303086594,593,13),(10985,'2018-07-05 21:03:55',118124619117887488,593,12),(10986,'2018-07-05 21:03:58',118124619117887488,593,7),(10987,'2018-07-05 21:04:00',173468649884090368,593,6),(10988,'2018-07-05 21:04:04',118124619117887488,593,10),(10989,'2018-07-05 21:04:07',118124619117887488,593,9),(10990,'2018-07-05 21:04:07',457300954660995114,593,19),(10991,'2018-07-05 21:04:09',457300954660995114,593,13),(10992,'2018-07-05 21:04:11',424563962303086594,593,12),(10993,'2018-07-05 21:04:12',457300954660995114,593,14),(10994,'2018-07-05 21:04:13',118124619117887488,593,8),(10995,'2018-07-05 21:04:13',457300954660995114,593,26),(10996,'2018-07-05 21:04:15',211232684209340426,593,17),(10997,'2018-07-05 22:01:09',276538857174990858,594,20),(10998,'2018-07-05 22:01:12',460761978135248896,594,14),(10999,'2018-07-05 22:01:14',265907268942299136,594,18),(11000,'2018-07-05 22:01:15',265907268942299136,594,12),(11001,'2018-07-05 22:01:15',173468649884090368,594,15),(11002,'2018-07-05 22:01:15',276538857174990858,594,8),(11003,'2018-07-05 22:01:16',429615167492325376,594,12),(11004,'2018-07-05 22:01:18',265907268942299136,594,18),(11005,'2018-07-05 22:01:20',429615167492325376,594,8),(11006,'2018-07-05 22:01:20',265907268942299136,594,18),(11007,'2018-07-05 22:01:21',276538857174990858,594,15),(11008,'2018-07-05 22:01:22',460761978135248896,594,12),(11009,'2018-07-05 22:01:23',265907268942299136,594,17),(11010,'2018-07-05 22:01:24',429615167492325376,594,12),(11011,'2018-07-05 22:01:27',276538857174990858,594,9),(11012,'2018-07-05 22:01:29',457300954660995114,594,16),(11013,'2018-07-05 22:01:30',429615167492325376,594,12),(11014,'2018-07-05 22:01:30',211232684209340426,594,18),(11015,'2018-07-05 22:01:31',276538857174990858,594,11),(11016,'2018-07-05 22:01:32',211232684209340426,594,17),(11017,'2018-07-05 22:01:33',211232684209340426,594,20),(11018,'2018-07-05 22:01:33',457300954660995114,594,26),(11019,'2018-07-05 22:01:34',397417104292446240,594,8),(11020,'2018-07-05 22:01:35',276538857174990858,594,14),(11021,'2018-07-05 22:01:35',429615167492325376,594,8),(11022,'2018-07-05 22:01:38',276538857174990858,594,14),(11023,'2018-07-05 22:01:40',460761978135248896,594,10),(11024,'2018-07-05 22:01:41',265907268942299136,594,17),(11025,'2018-07-05 22:01:41',429615167492325376,594,13),(11026,'2018-07-05 22:01:41',211232684209340426,594,20),(11027,'2018-07-05 22:01:42',457300954660995114,594,17),(11028,'2018-07-05 22:01:44',460761978135248896,594,22),(11029,'2018-07-05 22:01:46',457300954660995114,594,28),(11030,'2018-07-05 22:21:25',278241670540034048,595,6),(11031,'2018-07-05 22:21:34',218498162745278474,595,18),(11032,'2018-07-05 22:21:35',460761978135248896,595,17),(11033,'2018-07-05 22:21:39',218498162745278474,595,21),(11034,'2018-07-05 22:21:41',218498162745278474,595,10),(11035,'2018-07-05 22:21:44',278241670540034048,595,7),(11036,'2018-07-05 22:21:44',457300954660995114,595,26),(11037,'2018-07-05 22:21:48',457300954660995114,595,22),(11038,'2018-07-05 22:21:49',218498162745278474,595,18),(11039,'2018-07-05 22:21:53',191198987490033664,595,14),(11040,'2018-07-05 22:21:55',397417104292446240,595,11),(11041,'2018-07-05 22:21:57',278241670540034048,595,8),(11042,'2018-07-05 22:22:01',191198987490033664,595,12),(11043,'2018-07-05 22:22:02',397417104292446240,595,10),(11044,'2018-07-05 22:22:04',457300954660995114,595,11),(11045,'2018-07-05 22:22:08',278241670540034048,595,13),(11046,'2018-07-05 22:22:08',191198987490033664,595,12),(11047,'2018-07-05 22:22:11',460761978135248896,595,20),(11048,'2018-07-05 22:22:12',397417104292446240,595,11),(11049,'2018-07-05 22:22:17',457300954660995114,595,28),(11050,'2018-07-05 22:22:17',460761978135248896,595,21),(11051,'2018-07-05 22:22:20',397417104292446240,595,13),(11052,'2018-07-05 22:22:22',457300954660995114,595,11),(11053,'2018-07-05 22:22:23',278241670540034048,595,11),(11054,'2018-07-05 22:22:26',191198987490033664,595,8),(11055,'2018-07-05 22:22:26',457300954660995114,595,12),(11056,'2018-07-05 22:22:29',118124619117887488,595,15),(11057,'2018-07-05 22:22:30',397417104292446240,595,9),(11058,'2018-07-05 22:22:33',278241670540034048,595,8),(11059,'2018-07-05 22:22:33',118124619117887488,595,8),(11060,'2018-07-05 22:37:17',191198987490033664,596,6),(11061,'2018-07-05 22:37:23',173468649884090368,596,10),(11062,'2018-07-05 22:37:27',457300954660995114,596,14),(11063,'2018-07-05 22:37:55',424563962303086594,596,10),(11064,'2018-07-05 22:37:58',424563962303086594,596,7),(11065,'2018-07-05 22:38:00',424563962303086594,596,8),(11066,'2018-07-05 22:38:03',424563962303086594,596,11),(11067,'2018-07-05 23:45:06',364444724834074625,597,15),(11068,'2018-07-05 23:45:06',211232684209340426,597,20),(11069,'2018-07-05 23:45:07',211232684209340426,597,24),(11070,'2018-07-06 00:19:51',357981974931046400,598,19),(11071,'2018-07-06 00:19:51',364444724834074625,598,14),(11072,'2018-07-06 00:19:51',357981974931046400,598,17),(11073,'2018-07-06 00:19:52',419553745236393995,598,9),(11074,'2018-07-06 00:19:52',364444724834074625,598,10),(11075,'2018-07-06 00:19:54',205006241808777216,598,6),(11076,'2018-07-06 00:19:57',433759248800022532,598,12),(11077,'2018-07-06 00:45:34',150649616772235264,599,17),(11078,'2018-07-06 00:45:39',118124619117887488,599,9),(11079,'2018-07-06 00:45:42',118124619117887488,599,14),(11080,'2018-07-06 00:45:45',118124619117887488,599,13),(11081,'2018-07-06 00:45:47',150649616772235264,599,9),(11082,'2018-07-06 00:45:47',118124619117887488,599,7),(11083,'2018-07-06 00:45:48',433759248800022532,599,11),(11084,'2018-07-06 00:45:49',433759248800022532,599,11),(11085,'2018-07-06 00:45:50',150649616772235264,599,9),(11086,'2018-07-06 00:45:50',433759248800022532,599,16),(11087,'2018-07-06 00:45:51',433759248800022532,599,11),(11088,'2018-07-06 00:45:53',150649616772235264,599,17),(11089,'2018-07-06 00:59:32',460761978135248896,600,16),(11090,'2018-07-06 00:59:33',118124619117887488,600,11),(11091,'2018-07-06 00:59:42',294657701617598464,600,7),(11092,'2018-07-06 00:59:43',118124619117887488,600,11),(11093,'2018-07-06 00:59:47',118124619117887488,600,8),(11094,'2018-07-06 00:59:47',294657701617598464,600,11),(11095,'2018-07-06 00:59:49',118124619117887488,600,7),(11096,'2018-07-06 00:59:51',118124619117887488,600,9),(11097,'2018-07-06 00:59:53',294657701617598464,600,8),(11098,'2018-07-06 01:00:02',118124619117887488,600,15),(11099,'2018-07-06 01:00:03',150649616772235264,600,14),(11100,'2018-07-06 01:00:16',294657701617598464,600,10),(11101,'2018-07-06 01:19:26',118124619117887488,601,13),(11102,'2018-07-06 01:19:26',306381311923453953,601,17),(11103,'2018-07-06 01:19:28',306381311923453953,601,12),(11104,'2018-07-06 01:19:29',118124619117887488,601,10),(11105,'2018-07-06 01:19:31',306381311923453953,601,8),(11106,'2018-07-06 01:19:32',118124619117887488,601,11),(11107,'2018-07-06 01:19:34',306381311923453953,601,17),(11108,'2018-07-06 01:19:35',118124619117887488,601,12),(11109,'2018-07-06 01:19:36',306381311923453953,601,15),(11110,'2018-07-06 01:19:38',294657701617598464,601,8),(11111,'2018-07-06 01:19:38',306381311923453953,601,10),(11112,'2018-07-06 01:19:40',118124619117887488,601,13),(11113,'2018-07-06 01:19:40',306381311923453953,601,14),(11114,'2018-07-06 01:32:15',118124619117887488,602,8),(11115,'2018-07-06 01:32:28',162544056059035648,602,7),(11116,'2018-07-06 01:32:34',162544056059035648,602,14),(11117,'2018-07-06 01:32:34',162544056059035648,602,12),(11118,'2018-07-06 01:32:37',162544056059035648,602,13),(11119,'2018-07-06 01:32:50',162544056059035648,602,10),(11120,'2018-07-06 01:32:51',118124619117887488,602,16),(11121,'2018-07-06 01:32:57',118124619117887488,602,12),(11122,'2018-07-06 01:33:01',185698541052755968,602,8),(11123,'2018-07-06 01:33:02',185698541052755968,602,10),(11124,'2018-07-06 01:33:03',185698541052755968,602,14),(11125,'2018-07-06 01:33:04',185698541052755968,602,8),(11126,'2018-07-06 01:33:05',185698541052755968,602,11),(11127,'2018-07-06 01:33:05',433759248800022532,602,8),(11128,'2018-07-06 01:33:06',185698541052755968,602,13),(11129,'2018-07-06 01:33:06',433759248800022532,602,7),(11130,'2018-07-06 01:33:07',185698541052755968,602,9),(11131,'2018-07-06 01:33:07',433759248800022532,602,11),(11132,'2018-07-06 01:33:08',185698541052755968,602,11),(11133,'2018-07-06 01:33:08',118124619117887488,602,8),(11134,'2018-07-06 01:33:08',185698541052755968,602,9),(11135,'2018-07-06 01:33:09',185698541052755968,602,12),(11136,'2018-07-06 01:33:10',433759248800022532,602,11),(11137,'2018-07-06 01:33:11',433759248800022532,602,13),(11138,'2018-07-06 01:33:11',433759248800022532,602,8),(11139,'2018-07-06 01:33:11',433759248800022532,602,13),(11140,'2018-07-06 01:33:13',457289865516548098,602,8),(11141,'2018-07-06 01:33:14',460761978135248896,602,13),(11142,'2018-07-06 01:33:15',131968711312539648,602,16),(11143,'2018-07-06 01:45:43',433759248800022532,603,8),(11144,'2018-07-06 01:45:45',433759248800022532,603,15),(11145,'2018-07-06 01:45:45',457289865516548098,603,7),(11146,'2018-07-06 01:45:45',433759248800022532,603,12),(11147,'2018-07-06 01:45:46',433759248800022532,603,12),(11148,'2018-07-06 01:45:47',278115594879107074,603,11),(11149,'2018-07-06 01:45:47',433759248800022532,603,14),(11150,'2018-07-06 01:45:47',306381311923453953,603,13),(11151,'2018-07-06 01:45:48',433759248800022532,603,14),(11152,'2018-07-06 01:45:48',460761978135248896,603,22),(11153,'2018-07-06 01:45:49',433759248800022532,603,14),(11154,'2018-07-06 01:45:49',306381311923453953,603,12),(11155,'2018-07-06 01:45:51',306381311923453953,603,8),(11156,'2018-07-06 01:45:52',278115594879107074,603,9),(11157,'2018-07-06 01:45:53',306381311923453953,603,15),(11158,'2018-07-06 01:45:53',457289865516548098,603,11),(11159,'2018-07-06 01:45:54',460761978135248896,603,21),(11160,'2018-07-06 01:45:55',306381311923453953,603,8),(11161,'2018-07-06 01:45:56',205006241808777216,603,9),(11162,'2018-07-06 01:45:57',306381311923453953,603,10),(11163,'2018-07-06 01:45:59',306381311923453953,603,7),(11164,'2018-07-06 01:46:00',460761978135248896,603,13),(11165,'2018-07-06 01:46:01',306381311923453953,603,12),(11166,'2018-07-06 02:50:21',118124619117887488,604,14),(11167,'2018-07-06 02:50:26',118124619117887488,604,12),(11168,'2018-07-06 02:50:29',457300954660995114,604,23),(11169,'2018-07-06 02:50:32',269123062270656512,604,11),(11170,'2018-07-06 02:50:32',118124619117887488,604,12),(11171,'2018-07-06 02:50:50',460761978135248896,604,19),(11172,'2018-07-06 02:50:53',460761978135248896,604,11),(11173,'2018-07-06 02:50:58',460761978135248896,604,10),(11174,'2018-07-06 02:51:02',460761978135248896,604,15),(11175,'2018-07-06 02:51:06',460761978135248896,604,23),(11176,'2018-07-06 02:51:10',433759248800022532,604,7),(11177,'2018-07-06 02:51:11',457300954660995114,604,19),(11178,'2018-07-06 02:51:12',460761978135248896,604,22),(11179,'2018-07-06 02:51:13',433759248800022532,604,9),(11180,'2018-07-06 02:51:15',457300954660995114,604,19),(11181,'2018-07-06 02:51:18',457300954660995114,604,24),(11182,'2018-07-06 02:51:18',460761978135248896,604,11),(11183,'2018-07-06 02:51:19',433759248800022532,604,12),(11184,'2018-07-06 02:51:20',457300954660995114,604,27),(11185,'2018-07-06 02:51:21',269123062270656512,604,8),(11186,'2018-07-06 02:51:21',433759248800022532,604,14),(11187,'2018-07-06 03:06:58',142491890271518720,605,14),(11188,'2018-07-06 03:07:10',460761978135248896,605,22),(11189,'2018-07-06 03:07:10',196081395494289408,605,10),(11190,'2018-07-06 03:07:11',142491890271518720,605,14),(11191,'2018-07-06 03:07:15',460761978135248896,605,21),(11192,'2018-07-06 03:07:23',457300954660995114,605,13),(11193,'2018-07-06 03:07:26',460761978135248896,605,23),(11194,'2018-07-06 03:07:29',457300954660995114,605,16),(11195,'2018-07-06 03:07:30',131968711312539648,605,10),(11196,'2018-07-06 03:07:32',131968711312539648,605,21),(11197,'2018-07-06 03:07:33',142491890271518720,605,11),(11198,'2018-07-06 03:07:33',457300954660995114,605,17),(11199,'2018-07-06 03:07:34',131968711312539648,605,15),(11200,'2018-07-06 03:07:37',457300954660995114,605,18),(11201,'2018-07-06 03:07:41',457300954660995114,605,25),(11202,'2018-07-06 03:07:53',460761978135248896,605,25),(11203,'2018-07-06 03:07:55',457300954660995114,605,27),(11204,'2018-07-06 03:07:56',142491890271518720,605,7),(11205,'2018-07-06 03:15:02',196081395494289408,606,6),(11206,'2018-07-06 03:15:06',118124619117887488,606,18),(11207,'2018-07-06 03:15:19',196081395494289408,606,10),(11208,'2018-07-06 03:16:22',438094660712267778,606,9),(11209,'2018-07-06 03:16:30',457300954660995114,606,14),(11210,'2018-07-06 03:16:33',438094660712267778,606,14),(11211,'2018-07-06 03:16:57',438094660712267778,606,9),(11212,'2018-07-06 03:17:05',457300954660995114,606,25),(11213,'2018-07-06 03:17:08',278115594879107074,606,13),(11214,'2018-07-06 03:17:11',278115594879107074,606,8),(11215,'2018-07-06 03:17:14',278115594879107074,606,8),(11216,'2018-07-06 03:17:15',218498162745278474,606,16),(11217,'2018-07-06 03:17:17',278115594879107074,606,6),(11218,'2018-07-06 03:17:17',218498162745278474,606,26),(11219,'2018-07-06 03:17:18',438094660712267778,606,17),(11220,'2018-07-06 03:17:20',218498162745278474,606,15),(11221,'2018-07-06 03:17:24',278115594879107074,606,10),(11222,'2018-07-06 03:17:30',218498162745278474,606,18),(11223,'2018-07-06 03:17:36',185698541052755968,606,6),(11224,'2018-07-06 03:17:39',185698541052755968,606,9),(11225,'2018-07-06 03:17:42',185698541052755968,606,11),(11226,'2018-07-06 03:17:42',185698541052755968,606,16),(11227,'2018-07-06 03:17:43',185698541052755968,606,9),(11228,'2018-07-06 03:36:02',460761978135248896,607,11),(11229,'2018-07-06 03:36:07',460761978135248896,607,17),(11230,'2018-07-06 03:36:13',306381311923453953,607,12),(11231,'2018-07-06 03:36:19',306381311923453953,607,14),(11232,'2018-07-06 03:36:21',306381311923453953,607,12),(11233,'2018-07-06 03:36:24',460761978135248896,607,13),(11234,'2018-07-06 03:36:43',306381311923453953,607,7),(11235,'2018-07-06 03:36:46',306381311923453953,607,7),(11236,'2018-07-06 03:36:49',457300954660995114,607,26),(11237,'2018-07-06 03:36:51',460761978135248896,607,22),(11238,'2018-07-06 03:37:08',218498162745278474,607,23),(11239,'2018-07-06 03:37:39',306381311923453953,607,12),(11240,'2018-07-06 03:37:41',285930195125403650,607,16),(11241,'2018-07-06 03:38:04',285930195125403650,607,17),(11242,'2018-07-06 03:38:09',285930195125403650,607,16),(11243,'2018-07-06 03:38:44',457300954660995114,607,20),(11244,'2018-07-06 03:39:11',285930195125403650,607,17),(11245,'2018-07-06 03:39:16',285930195125403650,607,10),(11246,'2018-07-06 03:39:19',285930195125403650,607,16),(11247,'2018-07-06 03:39:24',218498162745278474,607,17),(11248,'2018-07-06 04:01:35',285930195125403650,608,14),(11249,'2018-07-06 04:01:39',285930195125403650,608,17),(11250,'2018-07-06 04:01:40',433759248800022532,608,12),(11251,'2018-07-06 04:30:55',359521958519504926,609,9),(11252,'2018-07-06 04:30:59',359521958519504926,609,7),(11253,'2018-07-06 04:31:04',359521958519504926,609,9),(11254,'2018-07-06 04:31:05',118124619117887488,609,12),(11255,'2018-07-06 04:31:14',118124619117887488,609,10),(11256,'2018-07-06 04:31:16',118124619117887488,609,18),(11257,'2018-07-06 04:49:10',185698541052755968,610,11),(11258,'2018-07-06 04:49:11',185698541052755968,610,7),(11259,'2018-07-06 04:49:12',185698541052755968,610,12),(11260,'2018-07-06 04:49:14',185698541052755968,610,10),(11261,'2018-07-06 04:49:15',185698541052755968,610,11),(11262,'2018-07-06 04:49:16',457300954660995114,610,27),(11263,'2018-07-06 04:49:17',185698541052755968,610,11),(11264,'2018-07-06 04:49:18',185698541052755968,610,11),(11265,'2018-07-06 04:49:19',460761978135248896,610,20),(11266,'2018-07-06 04:49:19',185698541052755968,610,9),(11267,'2018-07-06 04:49:22',457300954660995114,610,22),(11268,'2018-07-06 04:59:21',438094660712267778,611,20),(11269,'2018-07-06 04:59:23',438094660712267778,611,14),(11270,'2018-07-06 04:59:25',438094660712267778,611,20),(11271,'2018-07-06 04:59:27',142491890271518720,611,6),(11272,'2018-07-06 04:59:28',438094660712267778,611,11),(11273,'2018-07-06 04:59:42',438094660712267778,611,9),(11274,'2018-07-06 04:59:43',142491890271518720,611,8),(11275,'2018-07-06 04:59:45',438094660712267778,611,14),(11276,'2018-07-06 05:20:43',185698541052755968,612,6),(11277,'2018-07-06 05:20:46',185698541052755968,612,12),(11278,'2018-07-06 05:20:47',185698541052755968,612,12),(11279,'2018-07-06 05:20:49',185698541052755968,612,11),(11280,'2018-07-06 05:20:50',185698541052755968,612,12),(11281,'2018-07-06 05:20:56',265610485812953088,612,6),(11282,'2018-07-06 05:20:57',185698541052755968,612,15),(11283,'2018-07-06 05:20:59',185698541052755968,612,8),(11284,'2018-07-06 05:20:59',460761978135248896,612,12),(11285,'2018-07-06 05:21:00',265610485812953088,612,8),(11286,'2018-07-06 05:21:01',185698541052755968,612,9),(11287,'2018-07-06 05:21:03',460761978135248896,612,14),(11288,'2018-07-06 05:21:03',185698541052755968,612,11),(11289,'2018-07-06 05:21:06',433759248800022532,612,9),(11290,'2018-07-06 05:50:17',433759248800022532,613,13),(11291,'2018-07-06 05:50:19',433759248800022532,613,12),(11292,'2018-07-06 05:50:21',433759248800022532,613,17),(11293,'2018-07-06 05:50:26',433759248800022532,613,11),(11294,'2018-07-06 05:50:27',359521958519504926,613,13),(11295,'2018-07-06 05:50:27',460761978135248896,613,21),(11296,'2018-07-06 05:50:28',339169842781487106,613,10),(11297,'2018-07-06 05:50:30',433759248800022532,613,17),(11298,'2018-07-06 05:50:33',433759248800022532,613,14),(11299,'2018-07-06 05:50:33',359521958519504926,613,8),(11300,'2018-07-06 05:50:33',460761978135248896,613,17),(11301,'2018-07-06 05:50:34',433759248800022532,613,12),(11302,'2018-07-06 05:50:36',460761978135248896,613,25),(11303,'2018-07-06 05:50:38',359521958519504926,613,14),(11304,'2018-07-06 06:07:15',457300954660995114,614,14),(11305,'2018-07-06 06:07:19',460761978135248896,614,18),(11306,'2018-07-06 06:07:20',457300954660995114,614,13),(11307,'2018-07-06 06:07:23',460761978135248896,614,16),(11308,'2018-07-06 06:07:25',457300954660995114,614,22),(11309,'2018-07-06 06:07:27',460761978135248896,614,19),(11310,'2018-07-06 06:07:30',457300954660995114,614,19),(11311,'2018-07-06 06:07:36',460761978135248896,614,22),(11312,'2018-07-06 06:07:48',457300954660995114,614,11),(11313,'2018-07-06 06:07:52',265610485812953088,614,16),(11314,'2018-07-06 06:07:53',265610485812953088,614,10),(11315,'2018-07-06 06:07:54',457300954660995114,614,19),(11316,'2018-07-06 06:07:54',265610485812953088,614,9),(11317,'2018-07-06 06:07:54',265610485812953088,614,8),(11318,'2018-07-06 06:07:56',457300954660995114,614,19),(11319,'2018-07-06 06:20:10',438094660712267778,615,16),(11320,'2018-07-06 06:20:10',457300954660995114,615,19),(11321,'2018-07-06 06:20:11',265610485812953088,615,12),(11322,'2018-07-06 06:20:11',265610485812953088,615,13),(11323,'2018-07-06 06:20:14',438094660712267778,615,16),(11324,'2018-07-06 06:20:14',457300954660995114,615,21),(11325,'2018-07-06 06:20:15',438094660712267778,615,15),(11326,'2018-07-06 06:20:15',265610485812953088,615,10),(11327,'2018-07-06 06:20:16',438094660712267778,615,19),(11328,'2018-07-06 06:20:18',238795465158557697,615,11),(11329,'2018-07-06 06:20:18',433759248800022532,615,10),(11330,'2018-07-06 06:20:19',438094660712267778,615,10),(11331,'2018-07-06 06:20:19',433759248800022532,615,8),(11332,'2018-07-06 06:20:21',438094660712267778,615,20),(11333,'2018-07-06 06:20:25',460761978135248896,615,25),(11334,'2018-07-06 06:20:25',433759248800022532,615,7),(11335,'2018-07-06 06:20:26',433759248800022532,615,10),(11336,'2018-07-06 06:20:27',433759248800022532,615,14),(11337,'2018-07-06 06:20:28',433759248800022532,615,17),(11338,'2018-07-06 06:20:30',460761978135248896,615,11),(11339,'2018-07-06 06:20:33',433759248800022532,615,8),(11340,'2018-07-06 06:20:34',433759248800022532,615,12),(11341,'2018-07-06 06:20:35',460761978135248896,615,20),(11342,'2018-07-06 07:17:23',457300954660995114,616,22),(11343,'2018-07-06 07:17:46',457300954660995114,616,16),(11344,'2018-07-06 07:18:05',457300954660995114,616,18),(11345,'2018-07-06 07:18:53',390618369545601028,616,17),(11346,'2018-07-06 07:19:00',390618369545601028,616,21),(11347,'2018-07-06 07:19:04',390618369545601028,616,20),(11348,'2018-07-06 07:19:07',390618369545601028,616,10),(11349,'2018-07-06 07:19:12',390618369545601028,616,23),(11350,'2018-07-06 07:19:31',390618369545601028,616,13),(11351,'2018-07-06 07:19:34',265907268942299136,616,20),(11352,'2018-07-06 07:19:38',265907268942299136,616,13),(11353,'2018-07-06 07:19:40',265907268942299136,616,11),(11354,'2018-07-06 07:19:43',265907268942299136,616,9),(11355,'2018-07-06 07:19:56',457300954660995114,616,16),(11356,'2018-07-06 07:20:01',457300954660995114,616,24),(11357,'2018-07-06 07:20:07',265907268942299136,616,10),(11358,'2018-07-06 07:20:10',265907268942299136,616,16),(11359,'2018-07-06 07:20:23',457300954660995114,616,22),(11360,'2018-07-06 07:20:44',457300954660995114,616,14),(11361,'2018-07-06 08:04:49',325565391478718464,617,29),(11362,'2018-07-06 08:34:15',357981974931046400,618,22),(11363,'2018-07-06 08:34:15',357981974931046400,618,19),(11364,'2018-07-06 08:34:15',390618369545601028,618,19),(11365,'2018-07-06 08:34:16',390618369545601028,618,12),(11366,'2018-07-06 08:34:18',390618369545601028,618,11),(11367,'2018-07-06 08:34:20',191198987490033664,618,6),(11368,'2018-07-06 08:34:20',370495051815714816,618,14),(11369,'2018-07-06 08:45:33',357981974931046400,619,16),(11370,'2018-07-06 08:45:33',357981974931046400,619,21),(11371,'2018-07-06 08:45:33',357981974931046400,619,11),(11372,'2018-07-06 08:45:38',390618369545601028,619,14),(11373,'2018-07-06 08:45:38',191198987490033664,619,6),(11374,'2018-07-06 08:45:40',390618369545601028,619,10),(11375,'2018-07-06 08:45:42',357981974931046400,619,26),(11376,'2018-07-06 08:45:42',390618369545601028,619,22),(11377,'2018-07-06 08:45:45',390618369545601028,619,24),(11378,'2018-07-06 09:07:07',357981974931046400,620,17),(11379,'2018-07-06 09:07:09',357981974931046400,620,12),(11380,'2018-07-06 09:07:09',390618369545601028,620,11),(11381,'2018-07-06 09:07:11',357981974931046400,620,21),(11382,'2018-07-06 09:07:17',278241670540034048,620,14),(11383,'2018-07-06 09:07:18',390618369545601028,620,24),(11384,'2018-07-06 09:07:22',278241670540034048,620,12),(11385,'2018-07-06 09:20:53',357981974931046400,621,14),(11386,'2018-07-06 09:20:54',357981974931046400,621,23),(11387,'2018-07-06 09:20:55',357981974931046400,621,11),(11388,'2018-07-06 09:21:00',457300954660995114,621,22),(11389,'2018-07-06 09:21:02',457300954660995114,621,19),(11390,'2018-07-06 09:21:04',457300954660995114,621,20),(11391,'2018-07-06 09:21:06',457300954660995114,621,29),(11392,'2018-07-06 09:21:08',274301199841361920,621,21),(11393,'2018-07-06 09:21:08',274301199841361920,621,26),(11394,'2018-07-06 09:37:19',325565391478718464,622,23),(11395,'2018-07-06 09:37:19',357981974931046400,622,12),(11396,'2018-07-06 09:37:19',325565391478718464,622,13),(11397,'2018-07-06 09:37:19',357981974931046400,622,27),(11398,'2018-07-06 09:37:20',325565391478718464,622,25),(11399,'2018-07-06 09:37:20',357981974931046400,622,12),(11400,'2018-07-06 09:37:20',357981974931046400,622,15),(11401,'2018-07-06 09:37:21',325565391478718464,622,18),(11402,'2018-07-06 09:37:22',457300954660995114,622,19),(11403,'2018-07-06 09:37:23',278241670540034048,622,13),(11404,'2018-07-06 09:37:23',325565391478718464,622,29),(11405,'2018-07-06 09:45:26',357981974931046400,623,25),(11406,'2018-07-06 09:45:27',357981974931046400,623,25),(11407,'2018-07-06 09:45:28',357981974931046400,623,13),(11408,'2018-07-06 09:45:29',357981974931046400,623,22),(11409,'2018-07-06 09:45:30',464723134105255943,623,11),(11410,'2018-07-06 09:45:31',464723134105255943,623,9),(11411,'2018-07-06 09:45:31',357981974931046400,623,19),(11412,'2018-07-06 09:45:31',464723134105255943,623,13),(11413,'2018-07-06 09:45:31',464723134105255943,623,8),(11414,'2018-07-06 09:45:32',464723134105255943,623,11),(11415,'2018-07-06 09:45:32',191198987490033664,623,7),(11416,'2018-07-06 09:45:39',191198987490033664,623,14),(11417,'2018-07-06 09:45:45',357981974931046400,623,27),(11418,'2018-07-06 09:45:48',357981974931046400,623,22),(11419,'2018-07-06 10:00:07',325565391478718464,624,27),(11420,'2018-07-06 10:00:07',357981974931046400,624,11),(11421,'2018-07-06 10:00:07',325565391478718464,624,23),(11422,'2018-07-06 10:00:07',334750493085794304,624,15),(11423,'2018-07-06 10:00:08',457300954660995114,624,25),(11424,'2018-07-06 10:00:08',325565391478718464,624,23),(11425,'2018-07-06 10:00:08',334750493085794304,624,12),(11426,'2018-07-06 10:00:08',357981974931046400,624,13),(11427,'2018-07-06 10:00:09',334750493085794304,624,14),(11428,'2018-07-06 10:00:09',357981974931046400,624,19),(11429,'2018-07-06 10:00:09',325565391478718464,624,29),(11430,'2018-07-06 10:00:09',334750493085794304,624,8),(11431,'2018-07-06 10:00:09',457300954660995114,624,23),(11432,'2018-07-06 10:00:10',334750493085794304,624,15),(11433,'2018-07-06 10:00:10',460761978135248896,624,21),(11434,'2018-07-06 10:00:10',191198987490033664,624,10),(11435,'2018-07-06 10:45:29',334750493085794304,625,15),(11436,'2018-07-06 10:45:30',357981974931046400,625,17),(11437,'2018-07-06 10:45:30',457300954660995114,625,25),(11438,'2018-07-06 10:45:30',334750493085794304,625,12),(11439,'2018-07-06 10:45:30',460761978135248896,625,13),(11440,'2018-07-06 10:45:30',334750493085794304,625,11),(11441,'2018-07-06 10:45:31',334750493085794304,625,13),(11442,'2018-07-06 10:45:31',278241670540034048,625,13),(11443,'2018-07-06 10:45:31',173468649884090368,625,11),(11444,'2018-07-06 10:45:31',334750493085794304,625,6),(11445,'2018-07-06 10:45:32',457300954660995114,625,24),(11446,'2018-07-06 10:45:32',334750493085794304,625,11),(11447,'2018-07-06 10:45:32',280445248789020672,625,8),(11448,'2018-07-06 10:45:33',278241670540034048,625,12),(11449,'2018-07-06 10:45:33',460761978135248896,625,14),(11450,'2018-07-06 10:45:33',334750493085794304,625,9),(11451,'2018-07-06 10:45:35',460761978135248896,625,15),(11452,'2018-07-06 10:45:35',280445248789020672,625,6),(11453,'2018-07-06 10:45:35',330301910386999297,625,13),(11454,'2018-07-06 10:45:36',457300954660995114,625,20),(11455,'2018-07-06 10:45:36',278241670540034048,625,17),(11456,'2018-07-06 10:45:36',118124619117887488,625,18),(11457,'2018-07-06 10:45:37',460761978135248896,625,15),(11458,'2018-07-06 10:45:38',457300954660995114,625,13),(11459,'2018-07-06 10:45:39',173468649884090368,625,17),(11460,'2018-07-06 10:45:39',280445248789020672,625,8),(11461,'2018-07-06 10:45:39',118124619117887488,625,13),(11462,'2018-07-06 10:45:40',460761978135248896,625,20),(11463,'2018-07-06 10:45:40',278241670540034048,625,11),(11464,'2018-07-06 10:45:40',334387347380502529,625,10),(11465,'2018-07-06 10:45:42',457300954660995114,625,19),(11466,'2018-07-06 10:45:42',334387347380502529,625,6),(11467,'2018-07-06 10:45:43',460761978135248896,625,25),(11468,'2018-07-06 11:20:28',457300954660995114,626,12),(11469,'2018-07-06 11:20:29',460761978135248896,626,10),(11470,'2018-07-06 11:20:32',457300954660995114,626,14),(11471,'2018-07-06 11:20:32',460761978135248896,626,23),(11472,'2018-07-06 11:20:33',424563962303086594,626,17),(11473,'2018-07-06 11:20:35',424563962303086594,626,15),(11474,'2018-07-06 11:20:36',460761978135248896,626,16),(11475,'2018-07-06 11:20:37',424563962303086594,626,13),(11476,'2018-07-06 11:20:39',424563962303086594,626,11),(11477,'2018-07-06 11:20:40',460761978135248896,626,26),(11478,'2018-07-06 11:20:41',424563962303086594,626,13),(11479,'2018-07-06 11:20:43',424563962303086594,626,13),(11480,'2018-07-06 11:20:43',457300954660995114,626,29),(11481,'2018-07-06 11:20:46',460761978135248896,626,24),(11482,'2018-07-06 11:21:00',457300954660995114,626,24),(11483,'2018-07-06 11:21:04',460761978135248896,626,10),(11484,'2018-07-06 11:21:04',457300954660995114,626,11),(11485,'2018-07-06 11:21:04',424563962303086594,626,16),(11486,'2018-07-06 11:21:07',460761978135248896,626,20),(11487,'2018-07-06 11:21:10',460761978135248896,626,22),(11488,'2018-07-06 11:21:15',424563962303086594,626,7),(11489,'2018-07-06 11:21:22',457300954660995114,626,18),(11490,'2018-07-06 11:21:26',457300954660995114,626,17),(11491,'2018-07-06 11:21:38',191198987490033664,626,14),(11492,'2018-07-06 11:21:44',457300954660995114,626,14),(11493,'2018-07-06 11:21:46',191198987490033664,626,9),(11494,'2018-07-06 11:21:49',457300954660995114,626,21),(11495,'2018-07-06 12:18:19',325565391478718464,627,35),(11496,'2018-07-06 12:18:20',325565391478718464,627,19),(11497,'2018-07-06 12:18:20',274301199841361920,627,12),(11498,'2018-07-06 12:18:20',357981974931046400,627,20),(11499,'2018-07-06 12:18:22',278241670540034048,627,16),(11500,'2018-07-06 12:18:22',274301199841361920,627,28),(11501,'2018-07-06 12:18:23',274301199841361920,627,15),(11502,'2018-07-06 12:18:25',278241670540034048,627,17),(11503,'2018-07-06 12:18:27',330301910386999297,627,8),(11504,'2018-07-06 12:18:30',330301910386999297,627,12),(11505,'2018-07-06 12:18:31',278241670540034048,627,14),(11506,'2018-07-06 12:18:33',325565391478718464,627,28),(11507,'2018-07-06 12:18:35',330301910386999297,627,12),(11508,'2018-07-06 12:18:39',357981974931046400,627,10),(11509,'2018-07-06 12:18:40',278241670540034048,627,11),(11510,'2018-07-06 12:18:41',328320677058707456,627,13),(11511,'2018-07-06 12:18:42',330301910386999297,627,8),(11512,'2018-07-06 12:18:43',357981974931046400,627,14),(11513,'2018-07-06 12:18:47',328320677058707456,627,14),(11514,'2018-07-06 12:18:49',191198987490033664,627,14),(11515,'2018-07-06 12:18:49',325565391478718464,627,14),(11516,'2018-07-06 12:18:50',185698541052755968,627,12),(11517,'2018-07-06 13:02:07',173468649884090368,628,11),(11518,'2018-07-06 13:02:12',118124619117887488,628,15),(11519,'2018-07-06 13:02:14',383328874169237506,628,16),(11520,'2018-07-06 13:02:17',390618369545601028,628,21),(11521,'2018-07-06 13:02:20',118124619117887488,628,7),(11522,'2018-07-06 13:02:21',383328874169237506,628,12),(11523,'2018-07-06 13:02:32',357981974931046400,628,22),(11524,'2018-07-06 13:02:41',390618369545601028,628,20),(11525,'2018-07-06 13:02:45',390618369545601028,628,18),(11526,'2018-07-06 13:02:45',424563962303086594,628,14),(11527,'2018-07-06 13:02:50',383328874169237506,628,7),(11528,'2018-07-06 13:02:59',383328874169237506,628,12),(11529,'2018-07-06 13:03:04',390618369545601028,628,13),(11530,'2018-07-06 13:03:05',424563962303086594,628,9),(11531,'2018-07-06 13:03:10',424563962303086594,628,16),(11532,'2018-07-06 13:03:22',185698541052755968,628,16),(11533,'2018-07-06 13:03:24',185698541052755968,628,13),(11534,'2018-07-06 13:03:26',185698541052755968,628,13),(11535,'2018-07-06 13:03:28',185698541052755968,628,16),(11536,'2018-07-06 13:03:29',280477072713842688,628,9),(11537,'2018-07-06 13:03:31',185698541052755968,628,13),(11538,'2018-07-06 13:03:35',173468649884090368,628,12),(11539,'2018-07-06 13:03:38',278241670540034048,628,12),(11540,'2018-07-06 13:03:44',357981974931046400,628,19),(11541,'2018-07-06 13:03:44',185698541052755968,628,15),(11542,'2018-07-06 13:03:47',173468649884090368,628,9),(11543,'2018-07-06 13:03:49',185698541052755968,628,10),(11544,'2018-07-06 13:03:53',357981974931046400,628,20),(11545,'2018-07-06 13:04:07',357981974931046400,628,19),(11546,'2018-07-06 13:04:12',390618369545601028,628,26),(11547,'2018-07-06 13:04:23',278241670540034048,628,15),(11548,'2018-07-06 13:04:24',118124619117887488,628,16),(11549,'2018-07-06 13:04:24',390938926761639936,628,10),(11550,'2018-07-06 13:04:28',118124619117887488,628,11),(11551,'2018-07-06 13:04:35',390938926761639936,628,9),(11552,'2018-07-06 13:04:38',262771588946984963,628,21),(11553,'2018-07-06 13:04:38',390618369545601028,628,14),(11554,'2018-07-06 13:04:39',262771588946984963,628,27),(11555,'2018-07-06 13:32:16',150649616772235264,629,8),(11556,'2018-07-06 13:32:17',150649616772235264,629,9),(11557,'2018-07-06 13:32:18',150649616772235264,629,7),(11558,'2018-07-06 13:32:19',142612779377885185,629,10),(11559,'2018-07-06 13:32:20',142612779377885185,629,15),(11560,'2018-07-06 13:32:21',142612779377885185,629,13),(11561,'2018-07-06 13:32:23',142612779377885185,629,15),(11562,'2018-07-06 13:32:24',142612779377885185,629,14),(11563,'2018-07-06 13:32:26',142612779377885185,629,15),(11564,'2018-07-06 13:32:31',118124619117887488,629,13),(11565,'2018-07-06 13:32:32',150649616772235264,629,13),(11566,'2018-07-06 13:33:18',185698541052755968,629,9),(11567,'2018-07-06 13:33:29',185698541052755968,629,14),(11568,'2018-07-06 13:34:15',390618369545601028,629,24),(11569,'2018-07-06 13:34:38',257137018897694721,629,10),(11570,'2018-07-06 13:35:17',257137018897694721,629,10),(11571,'2018-07-06 13:35:26',257137018897694721,629,6),(11572,'2018-07-06 13:36:05',438094660712267778,629,12),(11573,'2018-07-06 13:36:08',438094660712267778,629,16),(11574,'2018-07-06 13:36:21',330301910386999297,629,13),(11575,'2018-07-06 13:36:21',438094660712267778,629,10),(11576,'2018-07-06 13:36:31',330301910386999297,629,10),(11577,'2018-07-06 13:36:33',150649616772235264,629,13),(11578,'2018-07-06 13:36:36',438094660712267778,629,15),(11579,'2018-07-06 13:36:44',438094660712267778,629,11),(11580,'2018-07-06 13:36:50',330301910386999297,629,10),(11581,'2018-07-06 13:37:39',278241670540034048,629,8),(11582,'2018-07-06 14:36:42',274301199841361920,630,13),(11583,'2018-07-06 14:36:42',357981974931046400,630,18),(11584,'2018-07-06 14:36:42',274301199841361920,630,15),(11585,'2018-07-06 14:47:14',325565391478718464,631,25),(11586,'2018-07-06 14:47:15',390938926761639936,631,7),(11587,'2018-07-06 14:47:16',390938926761639936,631,14),(11588,'2018-07-06 14:47:17',390938926761639936,631,15),(11589,'2018-07-06 14:47:17',325565391478718464,631,13),(11590,'2018-07-06 14:47:17',390938926761639936,631,9),(11591,'2018-07-06 14:47:17',390938926761639936,631,11),(11592,'2018-07-06 15:35:29',390938926761639936,632,17),(11593,'2018-07-06 15:35:29',390938926761639936,632,7),(11594,'2018-07-06 15:35:30',390938926761639936,632,7),(11595,'2018-07-06 15:35:31',390938926761639936,632,12),(11596,'2018-07-06 15:35:31',390938926761639936,632,16),(11597,'2018-07-06 15:35:43',357981974931046400,632,26),(11598,'2018-07-06 16:07:18',357981974931046400,633,25),(11599,'2018-07-06 16:07:29',185698541052755968,633,11),(11600,'2018-07-06 16:07:30',357981974931046400,633,23),(11601,'2018-07-06 16:07:31',185698541052755968,633,14),(11602,'2018-07-06 16:07:33',185698541052755968,633,10),(11603,'2018-07-06 16:07:35',185698541052755968,633,6),(11604,'2018-07-06 16:07:38',185698541052755968,633,11),(11605,'2018-07-06 16:07:40',185698541052755968,633,7),(11606,'2018-07-06 16:07:40',357981974931046400,633,12),(11607,'2018-07-06 16:19:56',388505302292627456,634,12),(11608,'2018-07-06 16:19:56',357981974931046400,634,28),(11609,'2018-07-06 16:19:56',370495051815714816,634,9),(11610,'2018-07-06 16:19:57',357981974931046400,634,29),(11611,'2018-07-06 16:19:57',370495051815714816,634,8),(11612,'2018-07-06 16:19:57',370495051815714816,634,16),(11613,'2018-07-06 16:19:58',278241670540034048,634,13),(11614,'2018-07-06 16:19:58',370495051815714816,634,8),(11615,'2018-07-06 16:19:58',388505302292627456,634,10),(11616,'2018-07-06 16:19:59',370495051815714816,634,13),(11617,'2018-07-06 16:19:59',185698541052755968,634,10),(11618,'2018-07-06 16:19:59',278241670540034048,634,9),(11619,'2018-07-06 16:20:00',357981974931046400,634,27),(11620,'2018-07-06 16:20:00',370495051815714816,634,11),(11621,'2018-07-06 16:20:01',388505302292627456,634,14),(11622,'2018-07-06 16:20:01',278241670540034048,634,15),(11623,'2018-07-06 16:46:50',357981974931046400,635,22),(11624,'2018-07-06 16:46:51',150649616772235264,635,14),(11625,'2018-07-06 16:46:51',357981974931046400,635,20),(11626,'2018-07-06 16:46:52',150649616772235264,635,17),(11627,'2018-07-06 16:46:52',357981974931046400,635,12),(11628,'2018-07-06 16:46:52',200340393596944384,635,18),(11629,'2018-07-06 16:46:53',150649616772235264,635,8),(11630,'2018-07-06 16:46:53',200340393596944384,635,18),(11631,'2018-07-06 16:46:53',357981974931046400,635,17),(11632,'2018-07-06 16:46:54',150649616772235264,635,18),(11633,'2018-07-06 16:46:54',278241670540034048,635,17),(11634,'2018-07-06 16:46:54',150649616772235264,635,18),(11635,'2018-07-06 16:46:55',185698541052755968,635,14),(11636,'2018-07-06 16:46:55',150649616772235264,635,9),(11637,'2018-07-06 16:46:57',200340393596944384,635,14),(11638,'2018-07-06 17:01:52',200340393596944384,636,24),(11639,'2018-07-06 17:01:52',388505302292627456,636,12),(11640,'2018-07-06 17:01:52',200340393596944384,636,18),(11641,'2018-07-06 17:01:52',173468649884090368,636,10),(11642,'2018-07-06 17:01:53',200340393596944384,636,17),(11643,'2018-07-06 17:01:53',200340393596944384,636,21),(11644,'2018-07-06 17:01:54',200340393596944384,636,15),(11645,'2018-07-06 17:01:54',200340393596944384,636,17),(11646,'2018-07-06 17:01:54',173468649884090368,636,12),(11647,'2018-07-06 17:01:55',200340393596944384,636,22),(11648,'2018-07-06 17:01:55',200340393596944384,636,26),(11649,'2018-07-06 17:01:57',173468649884090368,636,9),(11650,'2018-07-06 17:01:59',257137018897694721,636,8),(11651,'2018-07-06 17:01:59',388505302292627456,636,7),(11652,'2018-07-06 17:02:00',359521958519504926,636,17),(11653,'2018-07-06 17:02:01',173468649884090368,636,12),(11654,'2018-07-06 17:02:01',388505302292627456,636,17),(11655,'2018-07-06 17:02:04',388505302292627456,636,12),(11656,'2018-07-06 17:02:05',173468649884090368,636,11),(11657,'2018-07-06 17:02:06',257137018897694721,636,13),(11658,'2018-07-06 17:02:06',357981974931046400,636,14),(11659,'2018-07-06 17:20:38',257137018897694721,637,11),(11660,'2018-07-06 17:20:41',173468649884090368,637,16),(11661,'2018-07-06 17:20:48',257137018897694721,637,15),(11662,'2018-07-06 17:20:53',173468649884090368,637,7),(11663,'2018-07-06 17:20:55',200340393596944384,637,25),(11664,'2018-07-06 17:20:56',200340393596944384,637,12),(11665,'2018-07-06 17:20:57',200340393596944384,637,15),(11666,'2018-07-06 17:20:58',200340393596944384,637,16),(11667,'2018-07-06 17:20:59',257137018897694721,637,9),(11668,'2018-07-06 17:20:59',200340393596944384,637,12),(11669,'2018-07-06 17:21:01',200340393596944384,637,23),(11670,'2018-07-06 17:21:01',173468649884090368,637,11),(11671,'2018-07-06 17:21:02',200340393596944384,637,12),(11672,'2018-07-06 17:21:02',200340393596944384,637,10),(11673,'2018-07-06 17:21:13',173468649884090368,637,16),(11674,'2018-07-06 17:21:16',390938926761639936,637,13),(11675,'2018-07-06 17:21:20',390938926761639936,637,17),(11676,'2018-07-06 17:21:23',390938926761639936,637,16),(11677,'2018-07-06 17:21:28',390938926761639936,637,15),(11678,'2018-07-06 17:46:55',257137018897694721,638,14),(11679,'2018-07-06 17:46:58',150649616772235264,638,7),(11680,'2018-07-06 17:47:06',150649616772235264,638,15),(11681,'2018-07-06 17:47:08',257137018897694721,638,8),(11682,'2018-07-06 17:47:08',200340393596944384,638,13),(11683,'2018-07-06 17:47:08',200340393596944384,638,21),(11684,'2018-07-06 17:47:16',280445248789020672,638,11),(11685,'2018-07-06 17:47:20',280445248789020672,638,10),(11686,'2018-07-06 17:47:22',280445248789020672,638,8),(11687,'2018-07-06 17:47:24',388505302292627456,638,15),(11688,'2018-07-06 17:47:25',390938926761639936,638,13),(11689,'2018-07-06 17:47:26',200340393596944384,638,18),(11690,'2018-07-06 17:47:27',200340393596944384,638,18),(11691,'2018-07-06 17:47:28',388505302292627456,638,12),(11692,'2018-07-06 17:47:30',196372356514447360,638,13),(11693,'2018-07-06 17:47:30',388505302292627456,638,12),(11694,'2018-07-06 17:47:30',390938926761639936,638,12),(11695,'2018-07-06 17:47:31',200340393596944384,638,12),(11696,'2018-07-06 17:47:32',196372356514447360,638,8),(11697,'2018-07-06 17:47:34',196372356514447360,638,9),(11698,'2018-07-06 17:47:36',390938926761639936,638,15),(11699,'2018-07-06 17:47:36',388505302292627456,638,16),(11700,'2018-07-06 17:47:36',200340393596944384,638,11),(11701,'2018-07-06 17:47:36',257137018897694721,638,14),(11702,'2018-07-06 17:47:37',196372356514447360,638,20),(11703,'2018-07-06 17:47:41',390938926761639936,638,16),(11704,'2018-07-06 17:47:43',196372356514447360,638,8),(11705,'2018-07-06 17:47:46',390938926761639936,638,16),(11706,'2018-07-06 17:49:06',150649616772235264,638,13),(11707,'2018-07-06 17:49:13',150649616772235264,638,12),(11708,'2018-07-06 18:04:51',388505302292627456,639,15),(11709,'2018-07-06 18:05:55',211232684209340426,639,22),(11710,'2018-07-06 18:05:56',211232684209340426,639,22),(11711,'2018-07-06 18:05:57',211232684209340426,639,22),(11712,'2018-07-06 18:05:58',211232684209340426,639,29),(11713,'2018-07-06 18:05:58',211232684209340426,639,25),(11714,'2018-07-06 18:06:11',211232684209340426,639,26),(11715,'2018-07-06 18:06:13',211232684209340426,639,29),(11716,'2018-07-06 18:06:16',211232684209340426,639,25),(11717,'2018-07-06 18:06:48',457300954660995114,639,13),(11718,'2018-07-06 18:06:51',457300954660995114,639,28),(11719,'2018-07-06 18:06:54',457300954660995114,639,20),(11720,'2018-07-06 18:29:56',150649616772235264,640,12),(11721,'2018-07-06 18:29:59',150649616772235264,640,7),(11722,'2018-07-06 18:31:40',162544056059035648,640,10),(11723,'2018-07-06 18:31:51',162544056059035648,640,9),(11724,'2018-07-06 18:32:14',278241670540034048,640,16),(11725,'2018-07-06 18:32:19',278241670540034048,640,8),(11726,'2018-07-06 18:32:40',205006241808777216,640,9),(11727,'2018-07-06 18:32:46',278241670540034048,640,15),(11728,'2018-07-06 18:32:49',205006241808777216,640,10),(11729,'2018-07-06 18:33:14',205006241808777216,640,10),(11730,'2018-07-06 18:33:27',162544056059035648,640,11),(11731,'2018-07-06 18:33:31',162544056059035648,640,13),(11732,'2018-07-06 18:33:57',383328874169237506,640,6),(11733,'2018-07-06 18:34:04',438094660712267778,640,9),(11734,'2018-07-06 18:34:08',383328874169237506,640,12),(11735,'2018-07-06 18:34:18',438094660712267778,640,20),(11736,'2018-07-06 18:34:24',438094660712267778,640,16),(11737,'2018-07-06 18:34:34',383328874169237506,640,12),(11738,'2018-07-06 18:34:42',438094660712267778,640,12),(11739,'2018-07-06 18:52:22',150649616772235264,641,15),(11740,'2018-07-06 18:52:30',276538857174990858,641,13),(11741,'2018-07-06 18:52:34',276538857174990858,641,10),(11742,'2018-07-06 19:05:49',205006241808777216,642,12),(11743,'2018-07-06 19:05:53',278241670540034048,642,13),(11744,'2018-07-06 19:06:03',205006241808777216,642,9),(11745,'2018-07-06 19:06:05',205006241808777216,642,14),(11746,'2018-07-06 19:06:07',278241670540034048,642,16),(11747,'2018-07-06 19:18:33',150649616772235264,643,11),(11748,'2018-07-06 19:18:36',205006241808777216,643,13),(11749,'2018-07-06 19:18:40',205006241808777216,643,7),(11750,'2018-07-06 19:18:49',205006241808777216,643,16),(11751,'2018-07-06 19:18:53',205006241808777216,643,17),(11752,'2018-07-06 19:19:03',200340393596944384,643,16),(11753,'2018-07-06 19:19:04',200340393596944384,643,11),(11754,'2018-07-06 19:19:05',205006241808777216,643,10),(11755,'2018-07-06 19:37:18',278241670540034048,644,20),(11756,'2018-07-06 19:37:24',280477072713842688,644,11),(11757,'2018-07-06 19:37:25',278241670540034048,644,17),(11758,'2018-07-06 19:37:43',280477072713842688,644,8),(11759,'2018-07-06 19:37:44',278241670540034048,644,17),(11760,'2018-07-06 19:38:00',280477072713842688,644,10),(11761,'2018-07-06 19:38:07',280477072713842688,644,8),(11762,'2018-07-06 19:38:12',280477072713842688,644,10),(11763,'2018-07-06 20:35:17',357981974931046400,645,23),(11764,'2018-07-06 20:35:19',357981974931046400,645,11),(11765,'2018-07-06 20:35:20',173468649884090368,645,17),(11766,'2018-07-06 20:35:21',357981974931046400,645,15),(11767,'2018-07-06 20:35:22',357981974931046400,645,18),(11768,'2018-07-06 20:35:24',218498162745278474,645,17),(11769,'2018-07-06 20:35:24',357981974931046400,645,28),(11770,'2018-07-06 20:35:25',173468649884090368,645,12),(11771,'2018-07-06 20:35:25',357981974931046400,645,20),(11772,'2018-07-06 20:35:27',357981974931046400,645,26),(11773,'2018-07-06 20:35:28',218498162745278474,645,22),(11774,'2018-07-06 20:35:28',294657701617598464,645,15),(11775,'2018-07-06 21:20:05',173468649884090368,646,17),(11776,'2018-07-06 21:20:05',357981974931046400,646,12),(11777,'2018-07-06 21:20:05',200340393596944384,646,14),(11778,'2018-07-06 21:20:05',274301199841361920,646,15),(11779,'2018-07-06 21:20:06',218498162745278474,646,16),(11780,'2018-07-06 21:20:06',200340393596944384,646,11),(11781,'2018-07-06 21:20:06',173468649884090368,646,8),(11782,'2018-07-06 21:20:06',218498162745278474,646,23),(11783,'2018-07-06 21:20:06',357981974931046400,646,22),(11784,'2018-07-06 21:20:06',200340393596944384,646,23),(11785,'2018-07-06 21:20:06',173468649884090368,646,12),(11786,'2018-07-06 21:20:06',218498162745278474,646,21),(11787,'2018-07-06 21:20:07',274301199841361920,646,19),(11788,'2018-07-06 21:20:07',200340393596944384,646,22),(11789,'2018-07-06 21:20:07',150649616772235264,646,13),(11790,'2018-07-06 21:20:07',357981974931046400,646,22),(11791,'2018-07-06 21:20:07',173468649884090368,646,15),(11792,'2018-07-06 21:20:07',274301199841361920,646,19),(11793,'2018-07-06 21:48:15',274301199841361920,647,27),(11794,'2018-07-06 21:48:16',274301199841361920,647,16),(11795,'2018-07-06 21:48:16',274301199841361920,647,27),(11796,'2018-07-06 21:48:16',218498162745278474,647,24),(11797,'2018-07-06 21:48:16',274301199841361920,647,19),(11798,'2018-07-06 21:48:16',438094660712267778,647,20),(11799,'2018-07-06 21:48:16',218498162745278474,647,19),(11800,'2018-07-06 21:48:16',150649616772235264,647,9),(11801,'2018-07-06 21:48:17',274301199841361920,647,19),(11802,'2018-07-06 21:48:17',173468649884090368,647,17),(11803,'2018-07-06 21:48:17',274301199841361920,647,12),(11804,'2018-07-06 21:48:17',150649616772235264,647,12),(11805,'2018-07-06 21:48:18',200340393596944384,647,18),(11806,'2018-07-06 21:48:18',200340393596944384,647,17),(11807,'2018-07-06 21:48:18',200340393596944384,647,10),(11808,'2018-07-06 21:48:18',150649616772235264,647,9),(11809,'2018-07-06 21:48:19',200340393596944384,647,16),(11810,'2018-07-06 21:48:19',173468649884090368,647,15),(11811,'2018-07-06 21:48:19',278241670540034048,647,19),(11812,'2018-07-06 21:48:19',200340393596944384,647,21),(11813,'2018-07-06 21:48:19',150649616772235264,647,16),(11814,'2018-07-06 21:59:16',274301199841361920,648,11),(11815,'2018-07-06 21:59:16',438094660712267778,648,13),(11816,'2018-07-06 21:59:17',218498162745278474,648,20),(11817,'2018-07-06 21:59:17',274301199841361920,648,19),(11818,'2018-07-06 21:59:17',218498162745278474,648,26),(11819,'2018-07-06 21:59:17',460761978135248896,648,15),(11820,'2018-07-06 21:59:17',200340393596944384,648,23),(11821,'2018-07-06 21:59:18',218498162745278474,648,17),(11822,'2018-07-06 21:59:18',200340393596944384,648,25),(11823,'2018-07-06 21:59:18',438094660712267778,648,12),(11824,'2018-07-06 21:59:18',200340393596944384,648,20),(11825,'2018-07-06 21:59:18',218498162745278474,648,12),(11826,'2018-07-06 21:59:18',200340393596944384,648,21),(11827,'2018-07-06 21:59:19',274301199841361920,648,24),(11828,'2018-07-06 21:59:19',218498162745278474,648,26),(11829,'2018-07-06 21:59:19',200340393596944384,648,10),(11830,'2018-07-06 21:59:19',278241670540034048,648,17),(11831,'2018-07-06 21:59:19',200340393596944384,648,22),(11832,'2018-07-06 21:59:19',460761978135248896,648,21),(11833,'2018-07-06 22:32:47',454823752925052930,649,16),(11834,'2018-07-06 22:32:47',457300954660995114,649,11),(11835,'2018-07-06 22:32:47',457300954660995114,649,24),(11836,'2018-07-06 22:32:47',454823752925052930,649,15),(11837,'2018-07-06 22:32:48',454823752925052930,649,11),(11838,'2018-07-06 22:32:49',454823752925052930,649,10),(11839,'2018-07-06 22:32:49',454823752925052930,649,10),(11840,'2018-07-06 22:32:49',454823752925052930,649,20),(11841,'2018-07-06 22:32:49',457300954660995114,649,26),(11842,'2018-07-06 22:32:50',460761978135248896,649,19),(11843,'2018-07-06 22:32:50',454823752925052930,649,15),(11844,'2018-07-06 22:32:51',454823752925052930,649,14),(11845,'2018-07-06 22:32:52',457300954660995114,649,14),(11846,'2018-07-06 22:32:52',460761978135248896,649,26),(11847,'2018-07-06 22:32:54',460761978135248896,649,24),(11848,'2018-07-06 22:32:55',457300954660995114,649,29),(11849,'2018-07-06 22:32:59',460761978135248896,649,20),(11850,'2018-07-06 22:33:00',457300954660995114,649,18),(11851,'2018-07-06 22:33:03',460761978135248896,649,23),(11852,'2018-07-06 22:33:03',457300954660995114,649,26),(11853,'2018-07-06 22:33:06',460761978135248896,649,10),(11854,'2018-07-06 22:33:11',460761978135248896,649,11),(11855,'2018-07-06 22:33:11',173468649884090368,649,16),(11856,'2018-07-06 22:33:12',173468649884090368,649,13),(11857,'2018-07-06 23:21:57',457300954660995114,650,21),(11858,'2018-07-06 23:21:58',399953503008718859,650,14),(11859,'2018-07-06 23:22:01',460761978135248896,650,25),(11860,'2018-07-06 23:22:02',218498162745278474,650,14),(11861,'2018-07-06 23:22:02',457300954660995114,650,22),(11862,'2018-07-06 23:22:04',150649616772235264,650,17),(11863,'2018-07-06 23:22:05',399953503008718859,650,12),(11864,'2018-07-06 23:22:05',150649616772235264,650,10),(11865,'2018-07-06 23:22:05',460761978135248896,650,21),(11866,'2018-07-06 23:22:06',150649616772235264,650,11),(11867,'2018-07-06 23:22:06',150649616772235264,650,8),(11868,'2018-07-06 23:22:07',173468649884090368,650,17),(11869,'2018-07-06 23:22:07',150649616772235264,650,9),(11870,'2018-07-06 23:22:08',399953503008718859,650,14),(11871,'2018-07-06 23:22:08',150649616772235264,650,16),(11872,'2018-07-06 23:22:08',460761978135248896,650,23),(11873,'2018-07-06 23:22:10',399953503008718859,650,9),(11874,'2018-07-06 23:22:11',218498162745278474,650,22),(11875,'2018-07-06 23:22:12',460761978135248896,650,22),(11876,'2018-07-06 23:22:15',399953503008718859,650,13),(11877,'2018-07-06 23:22:16',457300954660995114,650,29),(11878,'2018-07-06 23:22:21',457300954660995114,650,16),(11879,'2018-07-06 23:22:22',460761978135248896,650,16),(11880,'2018-07-06 23:22:27',399953503008718859,650,12),(11881,'2018-07-06 23:22:38',173468649884090368,650,7),(11882,'2018-07-06 23:22:39',460761978135248896,650,28),(11883,'2018-07-06 23:22:42',173468649884090368,650,8),(11884,'2018-07-06 23:22:43',460761978135248896,650,22),(11885,'2018-07-06 23:22:44',457300954660995114,650,25),(11886,'2018-07-06 23:48:09',438094660712267778,651,18),(11887,'2018-07-06 23:48:11',438094660712267778,651,8),(11888,'2018-07-06 23:48:13',438094660712267778,651,17),(11889,'2018-07-06 23:48:13',294927961310625793,651,13),(11890,'2018-07-06 23:48:15',294927961310625793,651,14),(11891,'2018-07-06 23:48:16',438094660712267778,651,11),(11892,'2018-07-06 23:48:27',438094660712267778,651,16),(11893,'2018-07-06 23:48:41',294927961310625793,651,22),(11894,'2018-07-06 23:59:55',150649616772235264,652,11),(11895,'2018-07-07 00:00:01',173468649884090368,652,19),(11896,'2018-07-07 00:00:02',438094660712267778,652,9),(11897,'2018-07-07 00:21:00',118124619117887488,653,15),(11898,'2018-07-07 00:21:04',118124619117887488,653,13),(11899,'2018-07-07 00:21:15',118124619117887488,653,10),(11900,'2018-07-07 00:21:17',118124619117887488,653,11),(11901,'2018-07-07 00:21:20',118124619117887488,653,11),(11902,'2018-07-07 00:32:21',454823752925052930,654,21),(11903,'2018-07-07 00:32:24',454823752925052930,654,17),(11904,'2018-07-07 00:32:24',265610485812953088,654,17),(11905,'2018-07-07 00:32:27',118124619117887488,654,9),(11906,'2018-07-07 00:32:28',265610485812953088,654,9),(11907,'2018-07-07 00:32:29',265610485812953088,654,12),(11908,'2018-07-07 00:32:29',185698541052755968,654,13),(11909,'2018-07-07 00:59:08',201102155896193024,655,18),(11910,'2018-07-07 00:59:09',118124619117887488,655,10),(11911,'2018-07-07 00:59:09',201102155896193024,655,20),(11912,'2018-07-07 00:59:09',201102155896193024,655,16),(11913,'2018-07-07 00:59:10',201102155896193024,655,21),(11914,'2018-07-07 00:59:10',201102155896193024,655,13),(11915,'2018-07-07 00:59:11',185698541052755968,655,11),(11916,'2018-07-07 00:59:13',118124619117887488,655,14),(11917,'2018-07-07 00:59:14',185698541052755968,655,16),(11918,'2018-07-07 00:59:15',118124619117887488,655,18),(11919,'2018-07-07 01:16:17',438094660712267778,656,10),(11920,'2018-07-07 01:16:22',438094660712267778,656,15),(11921,'2018-07-07 01:16:27',324727149930086400,656,6),(11922,'2018-07-07 01:16:30',324727149930086400,656,13),(11923,'2018-07-07 01:16:33',324727149930086400,656,11),(11924,'2018-07-07 01:16:36',438094660712267778,656,12),(11925,'2018-07-07 01:16:38',454823752925052930,656,21),(11926,'2018-07-07 01:16:39',454823752925052930,656,20),(11927,'2018-07-07 01:16:40',454823752925052930,656,21),(11928,'2018-07-07 01:16:40',438094660712267778,656,14),(11929,'2018-07-07 01:16:40',454823752925052930,656,21),(11930,'2018-07-07 01:16:41',454823752925052930,656,19),(11931,'2018-07-07 01:16:42',454823752925052930,656,11),(11932,'2018-07-07 01:16:45',324727149930086400,656,11),(11933,'2018-07-07 01:16:47',454823752925052930,656,14),(11934,'2018-07-07 01:16:47',438094660712267778,656,19),(11935,'2018-07-07 01:34:10',454823752925052930,657,11),(11936,'2018-07-07 01:34:14',454823752925052930,657,16),(11937,'2018-07-07 01:34:14',438094660712267778,657,17),(11938,'2018-07-07 01:34:16',454823752925052930,657,20),(11939,'2018-07-07 01:34:18',438094660712267778,657,16),(11940,'2018-07-07 01:34:20',454823752925052930,657,9),(11941,'2018-07-07 01:34:30',454823752925052930,657,8),(11942,'2018-07-07 01:34:35',438094660712267778,657,14),(11943,'2018-07-07 01:34:37',454823752925052930,657,15),(11944,'2018-07-07 01:34:38',438094660712267778,657,14),(11945,'2018-07-07 01:34:39',454823752925052930,657,20),(11946,'2018-07-07 01:34:42',438094660712267778,657,14),(11947,'2018-07-07 01:34:43',454823752925052930,657,17),(11948,'2018-07-07 01:34:45',454823752925052930,657,20),(11949,'2018-07-07 01:35:00',438094660712267778,657,17),(11950,'2018-07-07 02:18:55',429615167492325376,658,17),(11951,'2018-07-07 02:19:02',429615167492325376,658,16),(11952,'2018-07-07 02:19:23',429615167492325376,658,9),(11953,'2018-07-07 02:19:28',429615167492325376,658,8),(11954,'2018-07-07 02:19:52',429615167492325376,658,11),(11955,'2018-07-07 02:19:58',218458041790496768,658,10),(11956,'2018-07-07 02:20:03',218458041790496768,658,7),(11957,'2018-07-07 02:20:11',429615167492325376,658,11),(11958,'2018-07-07 02:20:15',218458041790496768,658,12),(11959,'2018-07-07 02:20:17',218458041790496768,658,6),(11960,'2018-07-07 02:20:21',218458041790496768,658,11),(11961,'2018-07-07 02:20:24',218458041790496768,658,8),(11962,'2018-07-07 02:20:27',218458041790496768,658,8),(11963,'2018-07-07 02:20:31',218458041790496768,658,7),(11964,'2018-07-07 02:20:37',429615167492325376,658,9),(11965,'2018-07-07 02:20:58',429615167492325376,658,9),(11966,'2018-07-07 02:46:17',388505302292627456,659,7),(11967,'2018-07-07 02:46:19',388505302292627456,659,9),(11968,'2018-07-07 02:46:20',388505302292627456,659,7),(11969,'2018-07-07 02:46:21',388505302292627456,659,9),(11970,'2018-07-07 02:46:22',388505302292627456,659,16),(11971,'2018-07-07 03:01:47',433759248800022532,660,16),(11972,'2018-07-07 03:01:48',433759248800022532,660,7),(11973,'2018-07-07 03:01:48',438094660712267778,660,11),(11974,'2018-07-07 03:01:49',388505302292627456,660,9),(11975,'2018-07-07 03:01:49',433759248800022532,660,14),(11976,'2018-07-07 03:01:50',388505302292627456,660,7),(11977,'2018-07-07 03:01:50',388505302292627456,660,14),(11978,'2018-07-07 03:01:51',433759248800022532,660,11),(11979,'2018-07-07 03:14:37',370495051815714816,661,8),(11980,'2018-07-07 03:14:37',370495051815714816,661,13),(11981,'2018-07-07 03:14:38',370495051815714816,661,12),(11982,'2018-07-07 03:14:38',433759248800022532,661,16),(11983,'2018-07-07 03:14:38',370495051815714816,661,11),(11984,'2018-07-07 03:14:39',433759248800022532,661,9),(11985,'2018-07-07 03:14:39',433759248800022532,661,7),(11986,'2018-07-07 03:14:39',370495051815714816,661,9),(11987,'2018-07-07 03:14:40',433759248800022532,661,9),(11988,'2018-07-07 04:00:04',370495051815714816,662,15),(11989,'2018-07-07 04:00:05',370495051815714816,662,7),(11990,'2018-07-07 04:00:06',370495051815714816,662,12),(11991,'2018-07-07 04:00:07',370495051815714816,662,12),(11992,'2018-07-07 04:00:08',370495051815714816,662,12),(11993,'2018-07-07 04:00:08',370495051815714816,662,15),(11994,'2018-07-07 04:00:09',370495051815714816,662,9),(11995,'2018-07-07 04:02:34',370495051815714816,662,12),(11996,'2018-07-07 04:02:39',433759248800022532,662,13),(11997,'2018-07-07 04:02:40',433759248800022532,662,10),(11998,'2018-07-07 04:02:41',433759248800022532,662,17),(11999,'2018-07-07 04:02:42',433759248800022532,662,14),(12000,'2018-07-07 04:14:22',433759248800022532,663,13),(12001,'2018-07-07 04:14:39',370495051815714816,663,7),(12002,'2018-07-07 04:14:47',370495051815714816,663,13),(12003,'2018-07-07 04:15:00',433759248800022532,663,9),(12004,'2018-07-07 04:15:01',370495051815714816,663,17),(12005,'2018-07-07 04:16:02',370495051815714816,663,12),(12006,'2018-07-07 04:16:03',370495051815714816,663,9),(12007,'2018-07-07 04:16:04',370495051815714816,663,16),(12008,'2018-07-07 04:16:04',370495051815714816,663,16),(12009,'2018-07-07 04:16:44',433759248800022532,663,10),(12010,'2018-07-07 04:16:50',370495051815714816,663,10),(12011,'2018-07-07 04:17:10',454823752925052930,663,16),(12012,'2018-07-07 04:17:19',454823752925052930,663,16),(12013,'2018-07-07 04:18:11',278115594879107074,663,12),(12014,'2018-07-07 04:18:13',278115594879107074,663,12),(12015,'2018-07-07 04:54:46',142491890271518720,664,6),(12016,'2018-07-07 04:55:08',142491890271518720,664,9),(12017,'2018-07-07 04:55:10',142491890271518720,664,10),(12018,'2018-07-07 04:55:11',142491890271518720,664,9),(12019,'2018-07-07 04:55:13',142491890271518720,664,11),(12020,'2018-07-07 05:04:03',370495051815714816,665,11),(12021,'2018-07-07 05:04:18',370495051815714816,665,12),(12022,'2018-07-07 05:04:20',370495051815714816,665,8),(12023,'2018-07-07 05:04:22',370495051815714816,665,14),(12024,'2018-07-07 05:31:50',388505302292627456,666,14),(12025,'2018-07-07 05:31:52',388505302292627456,666,9),(12026,'2018-07-07 05:31:54',388505302292627456,666,12),(12027,'2018-07-07 05:31:55',388505302292627456,666,7),(12028,'2018-07-07 05:31:58',388505302292627456,666,10),(12029,'2018-07-07 05:32:00',388505302292627456,666,11),(12030,'2018-07-07 05:32:02',388505302292627456,666,17),(12031,'2018-07-07 05:32:03',388505302292627456,666,16),(12032,'2018-07-07 06:02:38',118124619117887488,667,9),(12033,'2018-07-07 06:02:39',118124619117887488,667,14),(12034,'2018-07-07 06:02:41',118124619117887488,667,9),(12035,'2018-07-07 06:02:49',118124619117887488,667,20),(12036,'2018-07-07 06:02:50',118124619117887488,667,12),(12037,'2018-07-07 06:02:55',118124619117887488,667,16),(12038,'2018-07-07 06:03:20',410462121063874561,667,13),(12039,'2018-07-07 06:03:30',410462121063874561,667,7),(12040,'2018-07-07 06:03:40',410462121063874561,667,11),(12041,'2018-07-07 06:03:48',410462121063874561,667,14),(12042,'2018-07-07 06:03:56',410462121063874561,667,12),(12043,'2018-07-07 06:04:45',315219062546497547,667,10),(12044,'2018-07-07 07:33:58',118124619117887488,671,18),(12045,'2018-07-07 07:34:00',118124619117887488,671,18),(12046,'2018-07-07 08:01:07',464723134105255943,672,11),(12047,'2018-07-07 08:01:09',464723134105255943,672,9),(12048,'2018-07-07 08:01:12',464723134105255943,672,8),(12049,'2018-07-07 08:01:14',464723134105255943,672,13),(12050,'2018-07-07 08:01:16',464723134105255943,672,10),(12051,'2018-07-07 08:01:17',118124619117887488,672,15),(12052,'2018-07-07 08:01:18',464723134105255943,672,12),(12053,'2018-07-07 08:51:19',278115594879107074,673,9),(12054,'2018-07-07 08:51:21',390938926761639936,673,10),(12055,'2018-07-07 08:51:25',390938926761639936,673,17),(12056,'2018-07-07 08:51:29',278115594879107074,673,8),(12057,'2018-07-07 08:51:29',390938926761639936,673,20),(12058,'2018-07-07 08:51:30',278115594879107074,673,7),(12059,'2018-07-07 08:51:32',278115594879107074,673,12),(12060,'2018-07-07 08:51:33',390938926761639936,673,14),(12061,'2018-07-07 08:51:33',278115594879107074,673,17),(12062,'2018-07-07 08:51:35',278115594879107074,673,8),(12063,'2018-07-07 09:30:36',464723134105255943,674,7),(12064,'2018-07-07 09:30:45',464723134105255943,674,13),(12065,'2018-07-07 09:30:46',464723134105255943,674,10),(12066,'2018-07-07 09:30:47',464723134105255943,674,15),(12067,'2018-07-07 09:30:49',464723134105255943,674,11),(12068,'2018-07-07 09:30:51',464723134105255943,674,11),(12069,'2018-07-07 09:30:53',464723134105255943,674,11),(12070,'2018-07-07 09:31:02',118124619117887488,674,10),(12071,'2018-07-07 09:31:05',118124619117887488,674,9),(12072,'2018-07-07 09:31:07',118124619117887488,674,14),(12073,'2018-07-07 10:06:25',357981974931046400,675,24),(12074,'2018-07-07 10:06:26',357981974931046400,675,25),(12075,'2018-07-07 10:06:28',357981974931046400,675,12),(12076,'2018-07-07 10:06:29',357981974931046400,675,26),(12077,'2018-07-07 10:06:31',357981974931046400,675,11),(12078,'2018-07-07 10:06:32',257137018897694721,675,9),(12079,'2018-07-07 10:06:32',357981974931046400,675,26),(12080,'2018-07-07 10:06:34',357981974931046400,675,25),(12081,'2018-07-07 10:06:34',118124619117887488,675,19),(12082,'2018-07-07 10:16:21',357981974931046400,676,18),(12083,'2018-07-07 10:16:24',357981974931046400,676,18),(12084,'2018-07-07 10:16:25',357981974931046400,676,15),(12085,'2018-07-07 10:16:27',357981974931046400,676,20),(12086,'2018-07-07 10:16:32',257137018897694721,676,8),(12087,'2018-07-07 10:16:35',257137018897694721,676,11),(12088,'2018-07-07 10:16:37',257137018897694721,676,16),(12089,'2018-07-07 10:16:38',390938926761639936,676,14),(12090,'2018-07-07 10:16:41',390938926761639936,676,18),(12091,'2018-07-07 10:16:44',390938926761639936,676,10),(12092,'2018-07-07 10:16:46',464723134105255943,676,9),(12093,'2018-07-07 10:16:54',464723134105255943,676,7),(12094,'2018-07-07 10:16:54',464723134105255943,676,11),(12095,'2018-07-07 10:16:55',464723134105255943,676,11),(12096,'2018-07-07 10:16:57',257137018897694721,676,10),(12097,'2018-07-07 10:16:57',464723134105255943,676,12),(12098,'2018-07-07 10:16:59',464723134105255943,676,10),(12099,'2018-07-07 10:17:00',118124619117887488,676,15),(12100,'2018-07-07 10:17:00',464723134105255943,676,15),(12101,'2018-07-07 10:17:16',118124619117887488,676,15),(12102,'2018-07-07 10:17:18',118124619117887488,676,18),(12103,'2018-07-07 10:17:19',118124619117887488,676,10),(12104,'2018-07-07 10:17:21',118124619117887488,676,15),(12105,'2018-07-07 10:45:44',357981974931046400,677,20),(12106,'2018-07-07 10:45:50',357981974931046400,677,20),(12107,'2018-07-07 10:45:52',357981974931046400,677,18),(12108,'2018-07-07 10:46:04',357981974931046400,677,16),(12109,'2018-07-07 10:46:06',357981974931046400,677,18),(12110,'2018-07-07 10:46:13',357981974931046400,677,29),(12111,'2018-07-07 10:46:23',357981974931046400,677,11),(12112,'2018-07-07 10:46:24',118124619117887488,677,9),(12113,'2018-07-07 10:46:25',118124619117887488,677,9),(12114,'2018-07-07 10:46:27',118124619117887488,677,9),(12115,'2018-07-07 10:46:31',257137018897694721,677,14),(12116,'2018-07-07 10:46:33',118124619117887488,677,10),(12117,'2018-07-07 10:46:35',370495051815714816,677,14),(12118,'2018-07-07 10:46:36',118124619117887488,677,15),(12119,'2018-07-07 10:46:36',370495051815714816,677,14),(12120,'2018-07-07 10:46:37',257137018897694721,677,14),(12121,'2018-07-07 10:46:37',118124619117887488,677,16),(12122,'2018-07-07 10:46:37',370495051815714816,677,8),(12123,'2018-07-07 10:46:38',370495051815714816,677,8),(12124,'2018-07-07 10:46:39',370495051815714816,677,11),(12125,'2018-07-07 11:49:12',370495051815714816,678,11),(12126,'2018-07-07 11:49:13',370495051815714816,678,14),(12127,'2018-07-07 11:49:13',357981974931046400,678,15),(12128,'2018-07-07 11:49:13',370495051815714816,678,13),(12129,'2018-07-07 11:49:14',370495051815714816,678,11),(12130,'2018-07-07 11:49:14',370495051815714816,678,9),(12131,'2018-07-07 11:49:15',370495051815714816,678,7),(12132,'2018-07-07 11:49:15',370495051815714816,678,9),(12133,'2018-07-07 11:49:21',357981974931046400,678,20),(12134,'2018-07-07 11:49:27',357981974931046400,678,14),(12135,'2018-07-07 11:49:31',357981974931046400,678,23),(12136,'2018-07-07 11:49:33',357981974931046400,678,25),(12137,'2018-07-07 11:49:41',150649616772235264,678,16),(12138,'2018-07-07 11:49:42',150649616772235264,678,16),(12139,'2018-07-07 11:49:44',150649616772235264,678,15),(12140,'2018-07-07 11:49:45',150649616772235264,678,7),(12141,'2018-07-07 11:49:46',150649616772235264,678,13),(12142,'2018-07-07 11:49:48',150649616772235264,678,15),(12143,'2018-07-07 11:49:52',357981974931046400,678,20),(12144,'2018-07-07 11:49:55',357981974931046400,678,20),(12145,'2018-07-07 11:50:03',118124619117887488,678,18),(12146,'2018-07-07 11:50:15',118124619117887488,678,17),(12147,'2018-07-07 11:50:23',118124619117887488,678,11),(12148,'2018-07-07 11:50:43',357981974931046400,678,28),(12149,'2018-07-07 11:51:01',150649616772235264,678,19),(12150,'2018-07-07 12:01:02',390618369545601028,679,12),(12151,'2018-07-07 12:01:04',150649616772235264,679,15),(12152,'2018-07-07 12:01:06',150649616772235264,679,11),(12153,'2018-07-07 12:01:08',150649616772235264,679,11),(12154,'2018-07-07 12:01:10',150649616772235264,679,10),(12155,'2018-07-07 12:01:13',150649616772235264,679,16),(12156,'2018-07-07 12:01:14',357981974931046400,679,24),(12157,'2018-07-07 12:01:19',357981974931046400,679,16),(12158,'2018-07-07 12:01:24',390618369545601028,679,28),(12159,'2018-07-07 12:01:43',390618369545601028,679,13),(12160,'2018-07-07 12:01:46',390618369545601028,679,25),(12161,'2018-07-07 12:01:49',390618369545601028,679,26),(12162,'2018-07-07 12:02:02',118124619117887488,679,21),(12163,'2018-07-07 12:03:44',139861211746402304,679,12),(12164,'2018-07-07 12:04:14',139861211746402304,679,13),(12165,'2018-07-07 12:04:34',357981974931046400,679,18),(12166,'2018-07-07 12:04:39',357981974931046400,679,26),(12167,'2018-07-07 12:04:43',357981974931046400,679,15),(12168,'2018-07-07 12:15:08',357981974931046400,680,16),(12169,'2018-07-07 12:16:37',357981974931046400,680,20),(12170,'2018-07-07 13:00:19',357981974931046400,681,18),(12171,'2018-07-07 13:00:45',357981974931046400,681,14),(12172,'2018-07-07 13:00:49',357981974931046400,681,19),(12173,'2018-07-07 13:00:56',357981974931046400,681,14),(12174,'2018-07-07 13:01:42',357981974931046400,681,12),(12175,'2018-07-07 13:01:53',357981974931046400,681,21),(12176,'2018-07-07 13:16:33',357981974931046400,682,17),(12177,'2018-07-07 13:17:00',357981974931046400,682,24),(12178,'2018-07-07 13:17:04',357981974931046400,682,16),(12179,'2018-07-07 13:17:15',357981974931046400,682,18),(12180,'2018-07-07 13:17:26',357981974931046400,682,11),(12181,'2018-07-07 13:17:29',357981974931046400,682,15),(12182,'2018-07-07 13:17:35',357981974931046400,682,11),(12183,'2018-07-07 13:18:11',383328874169237506,682,15),(12184,'2018-07-07 14:03:36',357981974931046400,683,17),(12185,'2018-07-07 14:03:45',357981974931046400,683,24),(12186,'2018-07-07 14:03:49',357981974931046400,683,24),(12187,'2018-07-07 14:03:53',357981974931046400,683,11),(12188,'2018-07-07 14:03:58',357981974931046400,683,29),(12189,'2018-07-07 14:04:01',294657701617598464,683,8),(12190,'2018-07-07 14:54:20',357981974931046400,684,14),(12191,'2018-07-07 14:54:31',357981974931046400,684,15),(12192,'2018-07-07 14:54:39',357981974931046400,684,21),(12193,'2018-07-07 14:54:45',357981974931046400,684,20),(12194,'2018-07-07 14:54:50',357981974931046400,684,29),(12195,'2018-07-07 14:54:57',357981974931046400,684,27),(12196,'2018-07-07 14:55:00',246712838603800577,684,9),(12197,'2018-07-07 14:55:14',357981974931046400,684,17),(12198,'2018-07-07 15:15:30',357981974931046400,685,12),(12199,'2018-07-07 15:16:24',246712838603800577,685,10),(12200,'2018-07-07 15:16:27',357981974931046400,685,14),(12201,'2018-07-07 15:16:38',246712838603800577,685,9),(12202,'2018-07-07 15:16:42',246712838603800577,685,11),(12203,'2018-07-07 15:17:02',246712838603800577,685,8),(12204,'2018-07-07 15:17:06',246712838603800577,685,6),(12205,'2018-07-07 15:17:20',357981974931046400,685,18),(12206,'2018-07-07 15:17:25',357981974931046400,685,25),(12207,'2018-07-07 15:17:30',357981974931046400,685,19),(12208,'2018-07-07 15:17:38',357981974931046400,685,21),(12209,'2018-07-07 15:17:56',357981974931046400,685,17),(12210,'2018-07-07 15:18:00',357981974931046400,685,28),(12211,'2018-07-07 15:19:02',246712838603800577,685,15),(12212,'2018-07-07 15:19:02',357981974931046400,685,11),(12213,'2018-07-07 15:20:56',357981974931046400,685,24),(12214,'2018-07-07 15:30:54',246712838603800577,686,10),(12215,'2018-07-07 15:31:01',246712838603800577,686,11),(12216,'2018-07-07 15:31:03',357981974931046400,686,20),(12217,'2018-07-07 15:31:06',246712838603800577,686,14),(12218,'2018-07-07 15:31:21',357981974931046400,686,17),(12219,'2018-07-07 15:31:35',357981974931046400,686,24),(12220,'2018-07-07 15:31:39',357981974931046400,686,15),(12221,'2018-07-07 15:31:39',246712838603800577,686,7),(12222,'2018-07-07 15:31:49',246712838603800577,686,14),(12223,'2018-07-07 15:32:25',390938926761639936,686,16),(12224,'2018-07-07 15:32:28',390938926761639936,686,20),(12225,'2018-07-07 15:32:31',390938926761639936,686,15),(12226,'2018-07-07 15:32:34',390938926761639936,686,21),(12227,'2018-07-07 16:07:54',246712838603800577,687,13),(12228,'2018-07-07 16:07:54',200340393596944384,687,20),(12229,'2018-07-07 16:07:58',200340393596944384,687,26),(12230,'2018-07-07 16:08:00',200340393596944384,687,15),(12231,'2018-07-07 16:08:03',200340393596944384,687,14),(12232,'2018-07-07 16:08:04',357981974931046400,687,24),(12233,'2018-07-07 16:08:05',200340393596944384,687,13),(12234,'2018-07-07 16:08:07',200340393596944384,687,14),(12235,'2018-07-07 16:08:09',357981974931046400,687,17),(12236,'2018-07-07 16:08:10',200340393596944384,687,26),(12237,'2018-07-07 16:08:14',357981974931046400,687,19),(12238,'2018-07-07 16:08:25',200340393596944384,687,17),(12239,'2018-07-07 16:08:58',433759248800022532,687,13),(12240,'2018-07-07 16:09:00',433759248800022532,687,15),(12241,'2018-07-07 16:09:01',433759248800022532,687,12),(12242,'2018-07-07 16:09:04',433759248800022532,687,11),(12243,'2018-07-07 16:09:06',433759248800022532,687,15),(12244,'2018-07-07 16:09:16',433759248800022532,687,8),(12245,'2018-07-07 16:09:18',433759248800022532,687,8),(12246,'2018-07-07 16:09:21',433759248800022532,687,9),(12247,'2018-07-07 16:09:47',200340393596944384,687,23),(12248,'2018-07-07 16:19:50',390938926761639936,688,12),(12249,'2018-07-07 16:20:31',388505302292627456,688,15),(12250,'2018-07-07 16:20:33',388505302292627456,688,9),(12251,'2018-07-07 16:20:36',388505302292627456,688,15),(12252,'2018-07-07 16:20:38',388505302292627456,688,17),(12253,'2018-07-07 16:20:39',200340393596944384,688,18),(12254,'2018-07-07 16:20:41',388505302292627456,688,14),(12255,'2018-07-07 16:20:42',200340393596944384,688,21),(12256,'2018-07-07 16:20:43',388505302292627456,688,13),(12257,'2018-07-07 16:20:44',200340393596944384,688,21),(12258,'2018-07-07 16:20:45',388505302292627456,688,9),(12259,'2018-07-07 16:20:45',200340393596944384,688,20),(12260,'2018-07-07 16:20:46',390938926761639936,688,19),(12261,'2018-07-07 16:20:47',388505302292627456,688,13),(12262,'2018-07-07 16:20:49',390938926761639936,688,12),(12263,'2018-07-07 16:20:54',390938926761639936,688,20),(12264,'2018-07-07 16:20:56',200340393596944384,688,26),(12265,'2018-07-07 16:20:59',200340393596944384,688,18),(12266,'2018-07-07 16:21:08',454823752925052930,688,11),(12267,'2018-07-07 16:21:10',454823752925052930,688,14),(12268,'2018-07-07 16:21:12',454823752925052930,688,21),(12269,'2018-07-07 16:21:12',390938926761639936,688,12),(12270,'2018-07-07 16:21:14',454823752925052930,688,18),(12271,'2018-07-07 16:21:15',454823752925052930,688,19),(12272,'2018-07-07 16:21:16',390938926761639936,688,15),(12273,'2018-07-07 17:00:47',218498162745278474,689,20),(12274,'2018-07-07 17:00:49',218498162745278474,689,22),(12275,'2018-07-07 17:00:51',218498162745278474,689,17),(12276,'2018-07-07 17:00:58',390938926761639936,689,10),(12277,'2018-07-07 17:01:24',390938926761639936,689,11),(12278,'2018-07-07 17:01:59',390938926761639936,689,10),(12279,'2018-07-07 17:46:33',274301199841361920,690,24),(12280,'2018-07-07 17:46:33',200340393596944384,690,13),(12281,'2018-07-07 19:02:10',192077723676573696,691,15),(12282,'2018-07-07 19:02:13',192077723676573696,691,7),(12283,'2018-07-07 19:02:15',192077723676573696,691,13),(12284,'2018-07-07 19:02:15',142612779377885185,691,11),(12285,'2018-07-07 19:02:15',142612779377885185,691,9),(12286,'2018-07-07 19:30:14',454823752925052930,692,18),(12287,'2018-07-07 19:30:15',357981974931046400,692,28),(12288,'2018-07-07 19:30:15',218498162745278474,692,13),(12289,'2018-07-07 19:30:15',274301199841361920,692,14),(12290,'2018-07-07 19:30:15',454823752925052930,692,19),(12291,'2018-07-07 19:48:51',357981974931046400,693,20),(12292,'2018-07-07 19:48:57',357981974931046400,693,14),(12293,'2018-07-07 19:49:00',357981974931046400,693,27),(12294,'2018-07-07 19:49:03',357981974931046400,693,27),(12295,'2018-07-07 19:49:08',357981974931046400,693,19),(12296,'2018-07-07 19:49:16',357981974931046400,693,20),(12297,'2018-07-07 19:49:17',454823752925052930,693,11),(12298,'2018-07-07 20:18:04',274301199841361920,694,15),(12299,'2018-07-07 20:18:05',274301199841361920,694,27),(12300,'2018-07-07 20:18:05',274301199841361920,694,21),(12301,'2018-07-07 20:18:05',274301199841361920,694,19),(12302,'2018-07-07 20:18:05',454823752925052930,694,9),(12303,'2018-07-07 20:18:06',274301199841361920,694,13),(12304,'2018-07-07 20:18:06',454823752925052930,694,10),(12305,'2018-07-07 20:18:06',274301199841361920,694,13),(12306,'2018-07-07 20:18:06',454823752925052930,694,14),(12307,'2018-07-07 20:34:02',200340393596944384,695,18),(12308,'2018-07-07 20:34:03',200340393596944384,695,21),(12309,'2018-07-07 20:34:03',224083099246395403,695,8),(12310,'2018-07-07 20:34:03',200340393596944384,695,25),(12311,'2018-07-07 20:34:03',224083099246395403,695,6),(12312,'2018-07-07 20:34:04',200340393596944384,695,25),(12313,'2018-07-07 20:34:04',224083099246395403,695,14),(12314,'2018-07-07 20:34:04',200340393596944384,695,26),(12315,'2018-07-07 20:34:05',224083099246395403,695,10),(12316,'2018-07-07 20:34:05',200340393596944384,695,18),(12317,'2018-07-07 20:34:05',224083099246395403,695,6),(12318,'2018-07-07 20:34:05',200340393596944384,695,19),(12319,'2018-07-07 21:00:11',200340393596944384,696,17),(12320,'2018-07-07 21:00:12',278115594879107074,696,13),(12321,'2018-07-07 21:00:12',200340393596944384,696,18),(12322,'2018-07-07 21:00:13',200340393596944384,696,24),(12323,'2018-07-07 21:00:13',278115594879107074,696,7),(12324,'2018-07-07 21:00:13',200340393596944384,696,11),(12325,'2018-07-07 21:00:13',278115594879107074,696,9),(12326,'2018-07-07 21:00:14',200340393596944384,696,11),(12327,'2018-07-07 21:00:15',200340393596944384,696,20),(12328,'2018-07-07 21:00:16',200340393596944384,696,17),(12329,'2018-07-07 21:00:17',200340393596944384,696,22),(12330,'2018-07-07 21:00:17',218498162745278474,696,18),(12331,'2018-07-07 21:00:18',218498162745278474,696,21),(12332,'2018-07-07 21:00:19',218498162745278474,696,21),(12333,'2018-07-07 21:29:10',265610485812953088,697,13),(12334,'2018-07-07 21:29:10',200340393596944384,697,15),(12335,'2018-07-07 21:29:10',438094660712267778,697,15),(12336,'2018-07-07 21:29:10',224083099246395403,697,18),(12337,'2018-07-07 21:29:10',200340393596944384,697,21),(12338,'2018-07-07 21:29:11',265610485812953088,697,8),(12339,'2018-07-07 21:29:11',200340393596944384,697,22),(12340,'2018-07-07 21:29:11',438094660712267778,697,20),(12341,'2018-07-07 21:29:11',200340393596944384,697,24),(12342,'2018-07-07 21:29:12',265610485812953088,697,19),(12343,'2018-07-07 21:29:12',200340393596944384,697,10),(12344,'2018-07-07 21:29:12',278115594879107074,697,8),(12345,'2018-07-07 21:29:12',438094660712267778,697,11),(12346,'2018-07-07 21:29:12',200340393596944384,697,14),(12347,'2018-07-07 21:29:12',224083099246395403,697,10),(12348,'2018-07-07 21:29:12',265610485812953088,697,14),(12349,'2018-07-07 21:29:13',200340393596944384,697,26),(12350,'2018-07-07 21:49:46',357981974931046400,698,12),(12351,'2018-07-07 21:49:46',173468649884090368,698,19),(12352,'2018-07-07 21:49:47',454823752925052930,698,18),(12353,'2018-07-07 21:49:47',438094660712267778,698,17),(12354,'2018-07-07 21:49:47',454823752925052930,698,23),(12355,'2018-07-07 21:49:47',454823752925052930,698,15),(12356,'2018-07-07 21:49:48',454823752925052930,698,19),(12357,'2018-07-07 21:49:48',438094660712267778,698,11),(12358,'2018-07-07 21:49:48',454823752925052930,698,21),(12359,'2018-07-07 21:49:49',454823752925052930,698,9),(12360,'2018-07-07 21:49:49',454823752925052930,698,18),(12361,'2018-07-07 21:49:49',357981974931046400,698,27),(12362,'2018-07-07 21:49:50',454823752925052930,698,14),(12363,'2018-07-07 21:49:50',224083099246395403,698,18),(12364,'2018-07-07 21:49:50',224083099246395403,698,17),(12365,'2018-07-07 22:45:31',357981974931046400,699,27),(12366,'2018-07-07 22:45:32',265610485812953088,699,8),(12367,'2018-07-07 22:45:32',357981974931046400,699,29),(12368,'2018-07-07 22:45:33',265610485812953088,699,18),(12369,'2018-07-07 22:45:33',357981974931046400,699,32),(12370,'2018-07-07 22:45:34',265610485812953088,699,14),(12371,'2018-07-07 22:45:35',265610485812953088,699,9),(12372,'2018-07-07 22:45:35',357981974931046400,699,12),(12373,'2018-07-07 22:45:38',274301199841361920,699,15),(12374,'2018-07-07 22:45:39',274301199841361920,699,28),(12375,'2018-07-07 22:45:39',274301199841361920,699,17),(12376,'2018-07-07 22:45:39',274301199841361920,699,24),(12377,'2018-07-07 22:45:40',274301199841361920,699,16),(12378,'2018-07-07 22:45:40',274301199841361920,699,20),(12379,'2018-07-07 22:59:48',200340393596944384,700,11),(12380,'2018-07-07 22:59:50',131968711312539648,700,12),(12381,'2018-07-07 22:59:50',200340393596944384,700,26),(12382,'2018-07-07 22:59:51',224083099246395403,700,12),(12383,'2018-07-07 22:59:52',131968711312539648,700,15),(12384,'2018-07-07 22:59:53',131968711312539648,700,10),(12385,'2018-07-07 22:59:54',200340393596944384,700,15),(12386,'2018-07-07 22:59:55',131968711312539648,700,11),(12387,'2018-07-07 22:59:56',224083099246395403,700,13),(12388,'2018-07-07 22:59:57',200340393596944384,700,21),(12389,'2018-07-07 23:00:05',200340393596944384,700,10),(12390,'2018-07-07 23:00:13',438094660712267778,700,13),(12391,'2018-07-07 23:00:17',433759248800022532,700,11),(12392,'2018-07-07 23:00:19',433759248800022532,700,13),(12393,'2018-07-07 23:00:20',433759248800022532,700,14),(12394,'2018-07-07 23:00:22',433759248800022532,700,13),(12395,'2018-07-07 23:00:23',433759248800022532,700,19),(12396,'2018-07-07 23:00:28',438094660712267778,700,11),(12397,'2018-07-07 23:00:30',433759248800022532,700,9),(12398,'2018-07-07 23:00:30',438094660712267778,700,13),(12399,'2018-07-07 23:00:31',433759248800022532,700,17),(12400,'2018-07-07 23:00:33',433759248800022532,700,14),(12401,'2018-07-07 23:00:35',438094660712267778,700,8),(12402,'2018-07-07 23:00:40',433759248800022532,700,11),(12403,'2018-07-07 23:00:45',438094660712267778,700,19),(12404,'2018-07-07 23:00:48',438094660712267778,700,18),(12405,'2018-07-07 23:00:52',454823752925052930,700,16),(12406,'2018-07-07 23:00:53',454823752925052930,700,17),(12407,'2018-07-07 23:00:54',454823752925052930,700,11),(12408,'2018-07-07 23:01:01',454823752925052930,700,16),(12409,'2018-07-07 23:01:10',200340393596944384,700,16),(12410,'2018-07-07 23:48:58',278241670540034048,701,15),(12411,'2018-07-07 23:49:35',278241670540034048,701,20),(12412,'2018-07-07 23:50:03',278241670540034048,701,18),(12413,'2018-07-07 23:50:07',278241670540034048,701,15),(12414,'2018-07-07 23:50:22',278241670540034048,701,9),(12415,'2018-07-07 23:50:30',278241670540034048,701,12),(12416,'2018-07-07 23:50:43',278241670540034048,701,20),(12417,'2018-07-08 00:21:35',246712838603800577,702,15),(12418,'2018-07-08 00:21:36',433759248800022532,702,9),(12419,'2018-07-08 00:21:37',433759248800022532,702,19),(12420,'2018-07-08 00:21:37',433759248800022532,702,13),(12421,'2018-07-08 00:51:57',388505302292627456,703,17),(12422,'2018-07-08 00:51:57',433759248800022532,703,14),(12423,'2018-07-08 00:51:57',433759248800022532,703,18),(12424,'2018-07-08 00:51:58',433759248800022532,703,13),(12425,'2018-07-08 00:51:58',433759248800022532,703,11),(12426,'2018-07-08 00:51:59',433759248800022532,703,7),(12427,'2018-07-08 00:51:59',388505302292627456,703,16),(12428,'2018-07-08 01:07:02',433759248800022532,704,15),(12429,'2018-07-08 01:07:07',433759248800022532,704,17),(12430,'2018-07-08 01:07:09',433759248800022532,704,17),(12431,'2018-07-08 01:07:10',433759248800022532,704,7),(12432,'2018-07-08 01:07:13',433759248800022532,704,9),(12433,'2018-07-08 01:07:14',433759248800022532,704,10),(12434,'2018-07-08 01:07:15',433759248800022532,704,16),(12435,'2018-07-08 01:07:17',388505302292627456,704,16),(12436,'2018-07-08 01:07:17',433759248800022532,704,11),(12437,'2018-07-08 01:15:40',192077723676573696,705,11),(12438,'2018-07-08 01:15:41',200340393596944384,705,14),(12439,'2018-07-08 01:15:42',192077723676573696,705,12),(12440,'2018-07-08 01:15:42',200340393596944384,705,26),(12441,'2018-07-08 01:15:43',192077723676573696,705,7),(12442,'2018-07-08 01:15:43',200340393596944384,705,19),(12443,'2018-07-08 01:15:44',200340393596944384,705,23),(12444,'2018-07-08 01:15:44',192077723676573696,705,15),(12445,'2018-07-08 01:15:45',433759248800022532,705,13),(12446,'2018-07-08 01:15:46',433759248800022532,705,13),(12447,'2018-07-08 01:15:47',433759248800022532,705,18),(12448,'2018-07-08 01:15:48',433759248800022532,705,14),(12449,'2018-07-08 01:15:48',192077723676573696,705,13),(12450,'2018-07-08 01:46:17',433759248800022532,707,11),(12451,'2018-07-08 01:46:18',433759248800022532,707,15),(12452,'2018-07-08 01:46:20',433759248800022532,707,8),(12453,'2018-07-08 02:16:07',433759248800022532,708,16),(12454,'2018-07-08 02:16:08',433759248800022532,708,15),(12455,'2018-07-08 02:16:09',433759248800022532,708,18),(12456,'2018-07-08 02:16:10',433759248800022532,708,9),(12457,'2018-07-08 02:16:41',454823752925052930,708,12),(12458,'2018-07-08 02:16:42',454823752925052930,708,19),(12459,'2018-07-08 02:16:43',454823752925052930,708,18),(12460,'2018-07-08 02:48:28',200340393596944384,709,19),(12461,'2018-07-08 02:48:29',200340393596944384,709,10),(12462,'2018-07-08 02:48:30',200340393596944384,709,10),(12463,'2018-07-08 02:48:31',200340393596944384,709,11),(12464,'2018-07-08 02:48:32',200340393596944384,709,26),(12465,'2018-07-08 02:48:34',200340393596944384,709,16),(12466,'2018-07-08 02:48:35',200340393596944384,709,25),(12467,'2018-07-08 03:03:59',438094660712267778,710,19),(12468,'2018-07-08 03:03:59',200340393596944384,710,23),(12469,'2018-07-08 03:04:01',200340393596944384,710,20),(12470,'2018-07-08 03:04:06',438094660712267778,710,15),(12471,'2018-07-08 03:04:07',438094660712267778,710,17),(12472,'2018-07-08 03:04:08',433759248800022532,710,20),(12473,'2018-07-08 03:52:32',438094660712267778,711,17),(12474,'2018-07-08 03:53:07',438094660712267778,711,12),(12475,'2018-07-08 03:53:16',438094660712267778,711,12),(12476,'2018-07-08 04:15:50',201102155896193024,712,13),(12477,'2018-07-08 04:15:51',201102155896193024,712,14),(12478,'2018-07-08 04:15:51',454823752925052930,712,22),(12479,'2018-07-08 04:44:22',433759248800022532,713,11),(12480,'2018-07-08 04:44:23',433759248800022532,713,14),(12481,'2018-07-08 04:44:23',433759248800022532,713,15),(12482,'2018-07-08 04:44:23',433759248800022532,713,12),(12483,'2018-07-08 04:44:24',433759248800022532,713,13),(12484,'2018-07-08 04:44:24',433759248800022532,713,9),(12485,'2018-07-08 04:44:25',433759248800022532,713,18),(12486,'2018-07-08 04:59:54',201102155896193024,714,19),(12487,'2018-07-08 04:59:55',454823752925052930,714,14),(12488,'2018-07-08 04:59:55',201102155896193024,714,25),(12489,'2018-07-08 04:59:55',454823752925052930,714,10),(12490,'2018-07-08 04:59:55',201102155896193024,714,23),(12491,'2018-07-08 04:59:55',454823752925052930,714,9),(12492,'2018-07-08 04:59:56',201102155896193024,714,26),(12493,'2018-07-08 04:59:56',454823752925052930,714,10),(12494,'2018-07-08 04:59:56',454823752925052930,714,15),(12495,'2018-07-08 05:15:05',454823752925052930,715,17),(12496,'2018-07-08 05:15:05',201102155896193024,715,18),(12497,'2018-07-08 05:15:06',201102155896193024,715,22),(12498,'2018-07-08 05:15:06',454823752925052930,715,20),(12499,'2018-07-08 05:15:06',454823752925052930,715,19),(12500,'2018-07-08 05:15:06',201102155896193024,715,17),(12501,'2018-07-08 05:15:06',454823752925052930,715,10),(12502,'2018-07-08 06:02:45',454823752925052930,716,20),(12503,'2018-07-08 06:02:45',454823752925052930,716,14),(12504,'2018-07-08 06:02:46',457300954660995114,716,12),(12505,'2018-07-08 06:02:46',185698541052755968,716,11),(12506,'2018-07-08 06:02:46',454823752925052930,716,18),(12507,'2018-07-08 06:02:46',454823752925052930,716,17),(12508,'2018-07-08 06:02:46',185698541052755968,716,11),(12509,'2018-07-08 06:02:46',185698541052755968,716,15),(12510,'2018-07-08 06:02:46',201102155896193024,716,15),(12511,'2018-07-08 06:02:46',185698541052755968,716,16),(12512,'2018-07-08 06:02:47',201102155896193024,716,16),(12513,'2018-07-08 06:02:47',185698541052755968,716,11),(12514,'2018-07-08 06:02:47',201102155896193024,716,23),(12515,'2018-07-08 06:02:47',185698541052755968,716,11),(12516,'2018-07-08 06:02:47',454823752925052930,716,19),(12517,'2018-07-08 06:02:47',460761978135248896,716,23),(12518,'2018-07-08 06:31:53',460761978135248896,717,23),(12519,'2018-07-08 06:31:53',457300954660995114,717,20),(12520,'2018-07-08 06:31:56',457300954660995114,717,15),(12521,'2018-07-08 06:31:56',460761978135248896,717,25),(12522,'2018-07-08 06:31:58',457300954660995114,717,15),(12523,'2018-07-08 06:31:59',460761978135248896,717,13),(12524,'2018-07-08 06:32:01',457300954660995114,717,24),(12525,'2018-07-08 06:32:02',460761978135248896,717,16),(12526,'2018-07-08 06:32:04',457300954660995114,717,27),(12527,'2018-07-08 06:32:06',460761978135248896,717,12),(12528,'2018-07-08 07:14:05',457300954660995114,718,18),(12529,'2018-07-08 07:14:06',460761978135248896,718,14),(12530,'2018-07-08 07:14:07',457300954660995114,718,26),(12531,'2018-07-08 07:14:08',460761978135248896,718,22),(12532,'2018-07-08 07:14:09',457300954660995114,718,24),(12533,'2018-07-08 07:14:11',460761978135248896,718,27),(12534,'2018-07-08 07:14:14',457300954660995114,718,17),(12535,'2018-07-08 07:14:14',460761978135248896,718,27),(12536,'2018-07-08 07:14:18',457300954660995114,718,24),(12537,'2018-07-08 07:14:18',460761978135248896,718,22),(12538,'2018-07-08 07:14:23',460761978135248896,718,26),(12539,'2018-07-08 07:14:32',457300954660995114,718,19),(12540,'2018-07-08 07:14:36',457300954660995114,718,29),(12541,'2018-07-08 07:14:37',460761978135248896,718,19),(12542,'2018-07-08 07:14:37',265610485812953088,718,16),(12543,'2018-07-08 07:34:01',370495051815714816,719,15),(12544,'2018-07-08 07:34:03',460761978135248896,719,14),(12545,'2018-07-08 07:34:04',370495051815714816,719,13),(12546,'2018-07-08 07:34:06',370495051815714816,719,11),(12547,'2018-07-08 07:34:10',370495051815714816,719,15),(12548,'2018-07-08 07:34:13',460761978135248896,719,16),(12549,'2018-07-08 07:34:17',457300954660995114,719,25),(12550,'2018-07-08 07:34:24',460761978135248896,719,17),(12551,'2018-07-08 07:34:26',370495051815714816,719,12),(12552,'2018-07-08 07:34:26',457300954660995114,719,24),(12553,'2018-07-08 07:34:42',370495051815714816,719,8),(12554,'2018-07-08 07:34:45',457300954660995114,719,15),(12555,'2018-07-08 07:34:46',460761978135248896,719,19),(12556,'2018-07-08 07:35:02',460761978135248896,719,23),(12557,'2018-07-08 07:35:05',370495051815714816,719,13),(12558,'2018-07-08 07:35:09',460761978135248896,719,20),(12559,'2018-07-08 07:35:32',460761978135248896,719,25),(12560,'2018-07-08 07:35:48',457300954660995114,719,27),(12561,'2018-07-08 07:35:52',460761978135248896,719,22),(12562,'2018-07-08 07:46:51',278241670540034048,720,15),(12563,'2018-07-08 07:46:58',278241670540034048,720,18),(12564,'2018-07-08 07:47:14',278241670540034048,720,14),(12565,'2018-07-08 07:47:30',278241670540034048,720,18),(12566,'2018-07-08 07:48:10',278241670540034048,720,11),(12567,'2018-07-08 07:48:27',142612779377885185,720,17),(12568,'2018-07-08 07:48:37',142612779377885185,720,16),(12569,'2018-07-08 07:48:40',142612779377885185,720,12),(12570,'2018-07-08 07:48:42',142612779377885185,720,21),(12571,'2018-07-08 07:48:45',142612779377885185,720,18),(12572,'2018-07-08 07:49:57',357981974931046400,720,29),(12573,'2018-07-08 07:50:00',357981974931046400,720,18),(12574,'2018-07-08 07:50:04',357981974931046400,720,13),(12575,'2018-07-08 07:50:07',357981974931046400,720,18),(12576,'2018-07-08 07:50:10',357981974931046400,720,17),(12577,'2018-07-08 08:01:09',357981974931046400,721,13),(12578,'2018-07-08 08:01:12',429787012481024010,721,12),(12579,'2018-07-08 08:01:16',357981974931046400,721,32),(12580,'2018-07-08 08:01:21',357981974931046400,721,14),(12581,'2018-07-08 08:01:25',357981974931046400,721,30),(12582,'2018-07-08 08:01:27',429787012481024010,721,10),(12583,'2018-07-08 08:01:29',357981974931046400,721,16),(12584,'2018-07-08 08:01:29',429787012481024010,721,10),(12585,'2018-07-08 08:01:35',429787012481024010,721,12),(12586,'2018-07-08 08:01:40',357981974931046400,721,19),(12587,'2018-07-08 08:01:45',357981974931046400,721,17),(12588,'2018-07-08 08:02:00',118124619117887488,721,15),(12589,'2018-07-08 08:02:43',460761978135248896,721,12),(12590,'2018-07-08 08:02:47',265610485812953088,721,11),(12591,'2018-07-08 08:02:52',460761978135248896,721,24),(12592,'2018-07-08 08:02:55',457300954660995114,721,25),(12593,'2018-07-08 08:46:21',173468649884090368,722,14),(12594,'2018-07-08 08:46:22',173468649884090368,722,8),(12595,'2018-07-08 08:46:22',173468649884090368,722,18),(12596,'2018-07-08 08:46:24',265610485812953088,722,18),(12597,'2018-07-08 08:46:24',173468649884090368,722,7),(12598,'2018-07-08 08:46:25',265610485812953088,722,13),(12599,'2018-07-08 08:46:26',173468649884090368,722,19),(12600,'2018-07-08 08:46:26',173468649884090368,722,11),(12601,'2018-07-08 08:46:27',460761978135248896,722,17),(12602,'2018-07-08 08:46:27',357981974931046400,722,29),(12603,'2018-07-08 08:46:30',118124619117887488,722,10),(12604,'2018-07-08 08:46:32',390938926761639936,722,21),(12605,'2018-07-08 08:46:33',265610485812953088,722,19),(12606,'2018-07-08 08:46:34',278241670540034048,722,15),(12607,'2018-07-08 08:46:36',265610485812953088,722,11),(12608,'2018-07-08 08:46:43',357981974931046400,722,17),(12609,'2018-07-08 08:46:50',265610485812953088,722,18),(12610,'2018-07-08 08:46:54',460761978135248896,722,23),(12611,'2018-07-08 08:46:58',457300954660995114,722,16),(12612,'2018-07-08 08:47:14',390938926761639936,722,19),(12613,'2018-07-08 08:49:19',265610485812953088,722,9),(12614,'2018-07-08 09:19:57',457300954660995114,723,20),(12615,'2018-07-08 09:19:59',460761978135248896,723,27),(12616,'2018-07-08 09:30:00',357981974931046400,724,16),(12617,'2018-07-08 09:30:04',457300954660995114,724,25),(12618,'2018-07-08 09:30:06',460761978135248896,724,18),(12619,'2018-07-08 09:51:46',357981974931046400,725,19),(12620,'2018-07-08 09:51:46',224083099246395403,725,25),(12621,'2018-07-08 09:51:46',457300954660995114,725,26),(12622,'2018-07-08 09:51:47',224083099246395403,725,14),(12623,'2018-07-08 10:20:17',224083099246395403,726,10),(12624,'2018-07-08 10:20:18',224083099246395403,726,10),(12625,'2018-07-08 10:20:19',224083099246395403,726,22),(12626,'2018-07-08 10:20:22',224083099246395403,726,18),(12627,'2018-07-08 10:20:24',224083099246395403,726,25),(12628,'2018-07-08 10:20:28',457300954660995114,726,26),(12629,'2018-07-08 10:20:29',460761978135248896,726,16),(12630,'2018-07-08 11:16:48',224083099246395403,727,16),(12631,'2018-07-08 11:16:49',224083099246395403,727,10),(12632,'2018-07-08 11:16:49',390938926761639936,727,13),(12633,'2018-07-08 11:16:50',390938926761639936,727,17),(12634,'2018-07-08 11:16:50',224083099246395403,727,21),(12635,'2018-07-08 11:16:50',390938926761639936,727,10),(12636,'2018-07-08 11:16:51',390938926761639936,727,9),(12637,'2018-07-08 11:16:51',224083099246395403,727,22),(12638,'2018-07-08 11:16:51',390938926761639936,727,18),(12639,'2018-07-08 11:16:52',460761978135248896,727,23),(12640,'2018-07-08 11:16:54',457300954660995114,727,20),(12641,'2018-07-08 11:16:56',460761978135248896,727,23),(12642,'2018-07-08 11:31:27',274301199841361920,728,26),(12643,'2018-07-08 11:31:27',274301199841361920,728,21),(12644,'2018-07-08 11:31:28',274301199841361920,728,20),(12645,'2018-07-08 11:31:29',274301199841361920,728,21),(12646,'2018-07-08 11:31:29',274301199841361920,728,15),(12647,'2018-07-08 11:31:31',274301199841361920,728,14),(12648,'2018-07-08 11:31:42',457300954660995114,728,19),(12649,'2018-07-08 11:31:46',457300954660995114,728,20),(12650,'2018-07-08 11:31:50',457300954660995114,728,17),(12651,'2018-07-08 11:31:51',460761978135248896,728,19),(12652,'2018-07-08 11:31:54',457300954660995114,728,26),(12653,'2018-07-08 11:31:55',460761978135248896,728,18),(12654,'2018-07-08 11:31:56',457300954660995114,728,15),(12655,'2018-07-08 11:31:58',460761978135248896,728,20),(12656,'2018-07-08 11:32:00',457300954660995114,728,20),(12657,'2018-07-08 11:48:59',370495051815714816,729,8),(12658,'2018-07-08 11:49:00',457300954660995114,729,20),(12659,'2018-07-08 11:49:00',370495051815714816,729,10),(12660,'2018-07-08 11:49:00',460761978135248896,729,11),(12661,'2018-07-08 11:49:01',370495051815714816,729,12),(12662,'2018-07-08 11:49:02',370495051815714816,729,16),(12663,'2018-07-08 11:49:02',457300954660995114,729,13),(12664,'2018-07-08 11:49:03',460761978135248896,729,19),(12665,'2018-07-08 11:49:03',370495051815714816,729,13),(12666,'2018-07-08 11:49:04',357981974931046400,729,25),(12667,'2018-07-08 11:49:05',457300954660995114,729,20),(12668,'2018-07-08 11:49:05',460761978135248896,729,14),(12669,'2018-07-08 11:49:06',390938926761639936,729,9),(12670,'2018-07-08 11:49:07',460761978135248896,729,19),(12671,'2018-07-08 11:49:07',457300954660995114,729,20),(12672,'2018-07-08 11:49:08',357981974931046400,729,29),(12673,'2018-07-08 11:49:08',390938926761639936,729,15),(12674,'2018-07-08 11:49:10',390938926761639936,729,14),(12675,'2018-07-08 11:49:10',460761978135248896,729,24),(12676,'2018-07-08 11:49:11',457300954660995114,729,17),(12677,'2018-07-08 12:17:47',224083099246395403,730,20),(12678,'2018-07-08 12:17:47',390938926761639936,730,14),(12679,'2018-07-08 12:17:47',224083099246395403,730,11),(12680,'2018-07-08 12:17:48',390938926761639936,730,19),(12681,'2018-07-08 12:17:48',224083099246395403,730,22),(12682,'2018-07-08 12:17:49',224083099246395403,730,14),(12683,'2018-07-08 12:17:49',390938926761639936,730,10),(12684,'2018-07-08 12:17:49',224083099246395403,730,26),(12685,'2018-07-08 12:17:49',390938926761639936,730,10),(12686,'2018-07-08 12:17:50',390938926761639936,730,18),(12687,'2018-07-08 12:18:39',357981974931046400,730,26),(12688,'2018-07-08 12:18:48',357981974931046400,730,28),(12689,'2018-07-08 12:18:50',357981974931046400,730,13),(12690,'2018-07-08 12:18:53',357981974931046400,730,14),(12691,'2018-07-08 12:18:56',357981974931046400,730,26),(12692,'2018-07-08 12:19:03',357981974931046400,730,19),(12693,'2018-07-08 12:19:10',357981974931046400,730,26),(12694,'2018-07-08 12:33:37',357981974931046400,731,23),(12695,'2018-07-08 12:34:38',274301199841361920,731,22),(12696,'2018-07-08 12:34:39',274301199841361920,731,20),(12697,'2018-07-08 12:34:40',274301199841361920,731,20),(12698,'2018-07-08 12:34:41',274301199841361920,731,18),(12699,'2018-07-08 12:34:42',274301199841361920,731,26),(12700,'2018-07-08 12:34:43',274301199841361920,731,28),(12701,'2018-07-08 12:34:46',211232684209340426,731,29),(12702,'2018-07-08 12:34:46',211232684209340426,731,20),(12703,'2018-07-08 12:34:47',211232684209340426,731,27),(12704,'2018-07-08 12:34:47',211232684209340426,731,22),(12705,'2018-07-08 12:34:47',211232684209340426,731,20),(12706,'2018-07-08 12:34:47',211232684209340426,731,17),(12707,'2018-07-08 12:34:48',211232684209340426,731,20),(12708,'2018-07-08 12:34:48',211232684209340426,731,23),(12709,'2018-07-08 12:34:48',211232684209340426,731,29),(12710,'2018-07-08 12:34:48',211232684209340426,731,13),(12711,'2018-07-08 12:34:52',185698541052755968,731,11),(12712,'2018-07-08 12:34:53',185698541052755968,731,11),(12713,'2018-07-08 12:34:54',185698541052755968,731,7),(12714,'2018-07-08 12:34:55',185698541052755968,731,14),(12715,'2018-07-08 12:47:58',274301199841361920,732,21),(12716,'2018-07-08 12:47:59',274301199841361920,732,11),(12717,'2018-07-08 12:48:00',274301199841361920,732,13),(12718,'2018-07-08 12:48:00',274301199841361920,732,13),(12719,'2018-07-08 12:48:07',274301199841361920,732,11),(12720,'2018-07-08 12:48:07',274301199841361920,732,21),(12721,'2018-07-08 12:48:21',211232684209340426,732,18),(12722,'2018-07-08 12:48:22',211232684209340426,732,23),(12723,'2018-07-08 12:48:23',211232684209340426,732,24),(12724,'2018-07-08 12:48:25',211232684209340426,732,17),(12725,'2018-07-08 12:48:41',211232684209340426,732,15),(12726,'2018-07-08 12:48:43',211232684209340426,732,20),(12727,'2018-07-08 12:48:44',211232684209340426,732,20),(12728,'2018-07-08 12:49:14',185698541052755968,732,8),(12729,'2018-07-08 12:49:14',185698541052755968,732,15),(12730,'2018-07-08 12:49:15',185698541052755968,732,8),(12731,'2018-07-08 12:49:17',185698541052755968,732,8),(12732,'2018-07-08 12:49:19',185698541052755968,732,10),(12733,'2018-07-08 12:49:20',185698541052755968,732,11),(12734,'2018-07-08 12:49:21',185698541052755968,732,6),(12735,'2018-07-08 12:49:23',185698541052755968,732,10),(12736,'2018-07-08 13:06:52',211232684209340426,733,18),(12737,'2018-07-08 13:06:55',211232684209340426,733,20),(12738,'2018-07-08 13:07:14',211232684209340426,733,28),(12739,'2018-07-08 13:07:27',357981974931046400,733,22),(12740,'2018-07-08 13:07:31',357981974931046400,733,26),(12741,'2018-07-08 13:07:35',357981974931046400,733,15),(12742,'2018-07-08 13:10:19',211232684209340426,733,11),(12743,'2018-07-08 13:10:20',211232684209340426,733,15),(12744,'2018-07-08 13:10:22',211232684209340426,733,12),(12745,'2018-07-08 13:10:23',211232684209340426,733,28),(12746,'2018-07-08 13:10:24',211232684209340426,733,13),(12747,'2018-07-08 13:10:31',211232684209340426,733,28),(12748,'2018-07-08 13:10:32',211232684209340426,733,18),(12749,'2018-07-08 13:10:33',211232684209340426,733,24),(12750,'2018-07-08 13:12:29',211232684209340426,733,20),(12751,'2018-07-08 13:17:58',357981974931046400,734,22),(12752,'2018-07-08 13:17:58',370495051815714816,734,12),(12753,'2018-07-08 13:17:59',370495051815714816,734,11),(12754,'2018-07-08 13:44:22',370495051815714816,735,14),(12755,'2018-07-08 13:44:23',370495051815714816,735,14),(12756,'2018-07-08 13:44:26',370495051815714816,735,13),(12757,'2018-07-08 13:44:27',370495051815714816,735,8),(12758,'2018-07-08 13:44:29',370495051815714816,735,15),(12759,'2018-07-08 13:44:30',370495051815714816,735,14),(12760,'2018-07-08 14:05:07',357981974931046400,736,29),(12761,'2018-07-08 14:05:11',201102155896193024,736,25),(12762,'2018-07-08 14:05:11',201102155896193024,736,19),(12763,'2018-07-08 14:05:12',201102155896193024,736,10),(12764,'2018-07-08 14:05:12',201102155896193024,736,15),(12765,'2018-07-08 14:22:20',201102155896193024,737,21),(12766,'2018-07-08 14:22:20',201102155896193024,737,19),(12767,'2018-07-08 14:22:21',201102155896193024,737,26),(12768,'2018-07-08 14:22:21',201102155896193024,737,25),(12769,'2018-07-08 14:22:22',201102155896193024,737,22),(12770,'2018-07-08 14:22:24',459879057295671296,737,12),(12771,'2018-07-08 14:22:25',459879057295671296,737,12),(12772,'2018-07-08 14:22:25',459879057295671296,737,14),(12773,'2018-07-08 14:22:26',459879057295671296,737,15),(12774,'2018-07-08 14:45:59',274301199841361920,738,28),(12775,'2018-07-08 14:46:00',274301199841361920,738,20),(12776,'2018-07-08 14:46:00',274301199841361920,738,22),(12777,'2018-07-08 14:46:00',274301199841361920,738,21),(12778,'2018-07-08 14:46:01',274301199841361920,738,28),(12779,'2018-07-08 14:46:01',274301199841361920,738,26),(12780,'2018-07-08 14:46:07',201102155896193024,738,16),(12781,'2018-07-08 14:46:07',201102155896193024,738,16),(12782,'2018-07-08 14:46:08',201102155896193024,738,18),(12783,'2018-07-08 14:46:08',201102155896193024,738,16),(12784,'2018-07-08 14:46:09',201102155896193024,738,19),(12785,'2018-07-08 15:00:25',201102155896193024,739,15),(12786,'2018-07-08 15:00:26',224083099246395403,739,19),(12787,'2018-07-08 15:00:26',201102155896193024,739,12),(12788,'2018-07-08 15:00:26',201102155896193024,739,22),(12789,'2018-07-08 15:00:27',224083099246395403,739,17),(12790,'2018-07-08 15:00:27',201102155896193024,739,18),(12791,'2018-07-08 15:00:27',201102155896193024,739,11),(12792,'2018-07-08 15:00:27',224083099246395403,739,18),(12793,'2018-07-08 15:00:29',459879057295671296,739,17),(12794,'2018-07-08 15:00:29',459879057295671296,739,16),(12795,'2018-07-08 15:00:30',459879057295671296,739,17),(12796,'2018-07-08 15:00:30',459879057295671296,739,12),(12797,'2018-07-08 15:00:31',459879057295671296,739,13),(12798,'2018-07-08 15:00:32',224083099246395403,739,26),(12799,'2018-07-08 15:00:34',459876383431327746,739,8),(12800,'2018-07-08 15:00:35',459876383431327746,739,10),(12801,'2018-07-08 15:35:14',357981974931046400,740,15),(12802,'2018-07-08 15:35:14',224083099246395403,740,20),(12803,'2018-07-08 15:35:15',224083099246395403,740,11),(12804,'2018-07-08 15:35:16',224083099246395403,740,25),(12805,'2018-07-08 15:35:18',224083099246395403,740,27),(12806,'2018-07-08 15:35:20',201102155896193024,740,11),(12807,'2018-07-08 15:35:20',201102155896193024,740,16),(12808,'2018-07-08 15:35:21',357981974931046400,740,34),(12809,'2018-07-08 15:35:21',201102155896193024,740,19),(12810,'2018-07-08 15:35:22',201102155896193024,740,12),(12811,'2018-07-08 15:35:23',201102155896193024,740,25),(12812,'2018-07-08 15:35:24',357981974931046400,740,22),(12813,'2018-07-08 15:35:25',357981974931046400,740,31),(12814,'2018-07-08 16:01:49',201102155896193024,741,10),(12815,'2018-07-08 16:01:49',357981974931046400,741,13),(12816,'2018-07-08 16:01:49',201102155896193024,741,20),(12817,'2018-07-08 16:01:50',201102155896193024,741,26),(12818,'2018-07-08 16:01:50',201102155896193024,741,20),(12819,'2018-07-08 16:01:51',201102155896193024,741,16),(12820,'2018-07-08 16:01:52',459879057295671296,741,7),(12821,'2018-07-08 16:01:53',357981974931046400,741,14),(12822,'2018-07-08 16:01:53',459879057295671296,741,14),(12823,'2018-07-08 16:01:54',459879057295671296,741,18),(12824,'2018-07-08 16:01:54',459879057295671296,741,9),(12825,'2018-07-08 16:01:55',459879057295671296,741,19),(12826,'2018-07-08 16:01:56',357981974931046400,741,16),(12827,'2018-07-08 16:01:59',459876383431327746,741,12),(12828,'2018-07-08 16:02:00',459876383431327746,741,11),(12829,'2018-07-08 16:02:00',191198987490033664,741,7),(12830,'2018-07-08 16:02:01',459876383431327746,741,10),(12831,'2018-07-08 16:02:02',459876383431327746,741,9),(12832,'2018-07-08 16:02:03',459876383431327746,741,12),(12833,'2018-07-08 16:02:05',191198987490033664,741,15),(12834,'2018-07-08 16:02:09',357981974931046400,741,14),(12835,'2018-07-08 16:02:10',459881667104997376,741,15),(12836,'2018-07-08 16:02:11',191198987490033664,741,8),(12837,'2018-07-08 16:02:11',459881667104997376,741,12),(12838,'2018-07-08 16:02:12',357981974931046400,741,29),(12839,'2018-07-08 16:47:36',454823752925052930,742,16),(12840,'2018-07-08 16:47:36',454823752925052930,742,20),(12841,'2018-07-08 16:47:37',454823752925052930,742,17),(12842,'2018-07-08 16:47:37',357981974931046400,742,15),(12843,'2018-07-08 16:47:37',454823752925052930,742,13),(12844,'2018-07-08 16:47:37',454823752925052930,742,16),(12845,'2018-07-08 16:47:38',454823752925052930,742,11),(12846,'2018-07-08 16:47:38',274301199841361920,742,13),(12847,'2018-07-08 16:47:38',454823752925052930,742,15),(12848,'2018-07-08 16:47:39',201102155896193024,742,18),(12849,'2018-07-08 16:47:39',274301199841361920,742,20),(12850,'2018-07-08 16:47:39',454823752925052930,742,22),(12851,'2018-07-08 16:47:39',201102155896193024,742,19),(12852,'2018-07-08 16:47:39',274301199841361920,742,11),(12853,'2018-07-08 16:47:39',274301199841361920,742,27),(12854,'2018-07-08 16:47:39',201102155896193024,742,11),(12855,'2018-07-08 16:47:40',274301199841361920,742,13),(12856,'2018-07-08 16:47:40',274301199841361920,742,16),(12857,'2018-07-08 16:47:40',201102155896193024,742,16),(12858,'2018-07-08 16:47:40',357981974931046400,742,27),(12859,'2018-07-08 16:47:40',433759248800022532,742,10),(12860,'2018-07-08 16:47:41',201102155896193024,742,11),(12861,'2018-07-08 16:47:41',274301199841361920,742,23),(12862,'2018-07-08 16:47:41',433759248800022532,742,19),(12863,'2018-07-08 16:47:41',433759248800022532,742,11),(12864,'2018-07-08 16:47:41',278115594879107074,742,10),(12865,'2018-07-08 16:47:41',118124619117887488,742,12),(12866,'2018-07-08 16:47:41',433759248800022532,742,17),(12867,'2018-07-08 16:59:03',454823752925052930,743,16),(12868,'2018-07-08 16:59:03',246712838603800577,743,15),(12869,'2018-07-08 16:59:03',224083099246395403,743,11),(12870,'2018-07-08 16:59:04',454823752925052930,743,13),(12871,'2018-07-08 16:59:04',224083099246395403,743,28),(12872,'2018-07-08 16:59:05',224083099246395403,743,19),(12873,'2018-07-08 16:59:05',246712838603800577,743,15),(12874,'2018-07-08 16:59:06',201102155896193024,743,27),(12875,'2018-07-08 16:59:06',224083099246395403,743,19),(12876,'2018-07-08 16:59:06',274301199841361920,743,19),(12877,'2018-07-08 16:59:06',274301199841361920,743,22),(12878,'2018-07-08 16:59:06',201102155896193024,743,13),(12879,'2018-07-08 16:59:07',274301199841361920,743,24),(12880,'2018-07-08 16:59:07',246712838603800577,743,7),(12881,'2018-07-08 16:59:07',274301199841361920,743,14),(12882,'2018-07-08 16:59:08',454823752925052930,743,9),(12883,'2018-07-08 16:59:10',246712838603800577,743,12),(12884,'2018-07-08 16:59:10',459873273308643328,743,16),(12885,'2018-07-08 16:59:10',454823752925052930,743,17),(12886,'2018-07-08 16:59:10',459873273308643328,743,20),(12887,'2018-07-08 16:59:12',459873273308643328,743,18),(12888,'2018-07-08 16:59:12',459873273308643328,743,14),(12889,'2018-07-08 16:59:12',200340393596944384,743,17),(12890,'2018-07-08 16:59:13',459873273308643328,743,18),(12891,'2018-07-08 17:16:58',433759248800022532,744,18),(12892,'2018-07-08 17:16:58',457300954660995114,744,16),(12893,'2018-07-08 17:16:59',433759248800022532,744,19),(12894,'2018-07-08 17:17:02',457300954660995114,744,17),(12895,'2018-07-08 17:17:02',201102155896193024,744,20),(12896,'2018-07-08 17:17:06',457300954660995114,744,18),(12897,'2018-07-08 17:17:08',459873273308643328,744,13),(12898,'2018-07-08 17:17:09',459873273308643328,744,24),(12899,'2018-07-08 17:17:10',457300954660995114,744,25),(12900,'2018-07-08 17:17:10',433759248800022532,744,8),(12901,'2018-07-08 17:17:12',457300954660995114,744,15),(12902,'2018-07-08 17:17:13',118124619117887488,744,15),(12903,'2018-07-08 17:17:13',200340393596944384,744,18),(12904,'2018-07-08 17:17:14',200340393596944384,744,11),(12905,'2018-07-08 17:17:16',459883167160205313,744,9),(12906,'2018-07-08 17:17:16',200340393596944384,744,19),(12907,'2018-07-08 17:17:16',459883167160205313,744,10),(12908,'2018-07-08 17:17:17',200340393596944384,744,20),(12909,'2018-07-08 17:17:17',459883167160205313,744,14),(12910,'2018-07-08 17:46:01',459883167160205313,745,22),(12911,'2018-07-08 17:46:01',388505302292627456,745,19),(12912,'2018-07-08 17:46:02',459883167160205313,745,15),(12913,'2018-07-08 17:46:02',274301199841361920,745,27),(12914,'2018-07-08 17:46:02',200340393596944384,745,16),(12915,'2018-07-08 17:46:02',388505302292627456,745,13),(12916,'2018-07-08 17:46:02',459883167160205313,745,15),(12917,'2018-07-08 17:46:03',388505302292627456,745,15),(12918,'2018-07-08 17:46:03',200340393596944384,745,18),(12919,'2018-07-08 17:46:03',459883167160205313,745,17),(12920,'2018-07-08 17:46:03',274301199841361920,745,20),(12921,'2018-07-08 17:46:03',459883167160205313,745,19),(12922,'2018-07-08 17:46:03',388505302292627456,745,12),(12923,'2018-07-08 17:46:03',200340393596944384,745,24),(12924,'2018-07-08 17:46:04',200340393596944384,745,20),(12925,'2018-07-08 17:46:04',388505302292627456,745,14),(12926,'2018-07-08 17:46:04',357981974931046400,745,17),(12927,'2018-07-08 17:46:04',200340393596944384,745,21),(12928,'2018-07-08 17:46:04',388505302292627456,745,13),(12929,'2018-07-08 17:46:05',388505302292627456,745,13),(12930,'2018-07-08 17:46:06',459876383431327746,745,16),(12931,'2018-07-08 17:46:06',200340393596944384,745,20),(12932,'2018-07-08 17:46:06',459876383431327746,745,9),(12933,'2018-07-08 17:46:07',459876383431327746,745,14),(12934,'2018-07-08 17:46:08',459876383431327746,745,14),(12935,'2018-07-08 17:46:08',459876383431327746,745,13),(12936,'2018-07-08 17:46:09',118124619117887488,745,9),(12937,'2018-07-08 17:46:10',118124619117887488,745,21),(12938,'2018-07-08 17:46:12',224083099246395403,745,26),(12939,'2018-07-08 17:46:14',357981974931046400,745,33),(12940,'2018-07-08 17:46:17',118124619117887488,745,9),(12941,'2018-07-08 17:46:19',459879057295671296,745,11),(12942,'2018-07-08 17:46:20',459879057295671296,745,10),(12943,'2018-07-08 17:46:20',459879057295671296,745,10),(12944,'2018-07-08 17:46:21',459879057295671296,745,17),(12945,'2018-07-08 17:46:22',459879057295671296,745,11),(12946,'2018-07-08 18:17:21',459881667104997376,746,19),(12947,'2018-07-08 18:17:22',459881667104997376,746,15),(12948,'2018-07-08 18:17:22',459881667104997376,746,15),(12949,'2018-07-08 18:17:23',459881667104997376,746,19),(12950,'2018-07-08 18:17:23',459881667104997376,746,9),(12951,'2018-07-08 18:17:26',257137018897694721,746,13),(12952,'2018-07-08 18:17:27',459884642192064512,746,15),(12953,'2018-07-08 18:17:27',459884642192064512,746,23),(12954,'2018-07-08 18:17:27',459884642192064512,746,20),(12955,'2018-07-08 18:17:28',459884642192064512,746,20),(12956,'2018-07-08 18:17:29',459884642192064512,746,12),(12957,'2018-07-08 18:17:31',257137018897694721,746,10),(12958,'2018-07-08 18:17:32',459834182961463299,746,16),(12959,'2018-07-08 18:17:33',459834182961463299,746,15),(12960,'2018-07-08 18:17:34',459834182961463299,746,14),(12961,'2018-07-08 18:17:34',459834182961463299,746,13),(12962,'2018-07-08 18:17:35',459834182961463299,746,12),(12963,'2018-07-08 18:17:57',459876383431327746,746,10),(12964,'2018-07-08 18:18:25',459883167160205313,746,13),(12965,'2018-07-08 18:18:32',118124619117887488,746,20),(12966,'2018-07-08 18:18:34',118124619117887488,746,12),(12967,'2018-07-08 18:18:44',459884642192064512,746,16),(12968,'2018-07-08 18:18:45',118124619117887488,746,20),(12969,'2018-07-08 18:18:46',459884642192064512,746,21),(12970,'2018-07-08 18:18:49',118124619117887488,746,15),(12971,'2018-07-08 18:19:12',118124619117887488,746,16),(12972,'2018-07-08 18:19:16',201102155896193024,746,29),(12973,'2018-07-08 18:19:39',201102155896193024,746,14),(12974,'2018-07-08 18:19:48',201102155896193024,746,26),(12975,'2018-07-08 18:19:52',201102155896193024,746,22),(12976,'2018-07-08 18:19:57',201102155896193024,746,28),(12977,'2018-07-08 18:51:26',191198987490033664,747,15),(12978,'2018-07-08 18:51:31',459879057295671296,747,13),(12979,'2018-07-08 18:51:32',459879057295671296,747,14),(12980,'2018-07-08 18:51:45',459876383431327746,747,15),(12981,'2018-07-08 18:51:56',459881667104997376,747,10),(12982,'2018-07-08 18:52:18',459883167160205313,747,21),(12983,'2018-07-08 18:53:20',459884642192064512,747,17),(12984,'2018-07-08 19:02:09',357981974931046400,748,33),(12985,'2018-07-08 19:02:25',459876383431327746,748,10),(12986,'2018-07-08 19:02:27',459876383431327746,748,20),(12987,'2018-07-08 19:48:40',246712838603800577,749,14),(12988,'2018-07-08 19:48:40',278115594879107074,749,14),(12989,'2018-07-08 19:48:40',224083099246395403,749,18),(12990,'2018-07-08 19:48:40',274301199841361920,749,13),(12991,'2018-07-08 20:01:00',454823752925052930,750,19),(12992,'2018-07-08 20:01:00',274301199841361920,750,27),(12993,'2018-07-08 20:01:01',274301199841361920,750,26),(12994,'2018-07-08 20:01:01',454823752925052930,750,11),(12995,'2018-07-08 20:01:01',246712838603800577,750,12),(12996,'2018-07-08 20:01:01',454823752925052930,750,10),(12997,'2018-07-08 20:17:53',454823752925052930,751,17),(12998,'2018-07-08 20:17:53',274301199841361920,751,12),(12999,'2018-07-08 20:17:53',274301199841361920,751,22),(13000,'2018-07-08 20:17:53',454823752925052930,751,13),(13001,'2018-07-08 20:17:53',274301199841361920,751,17),(13002,'2018-07-08 20:17:53',454823752925052930,751,16),(13003,'2018-07-08 20:17:54',274301199841361920,751,23),(13004,'2018-07-08 20:17:54',454823752925052930,751,21),(13005,'2018-07-08 20:17:54',274301199841361920,751,21),(13006,'2018-07-08 20:17:54',274301199841361920,751,21),(13007,'2018-07-08 20:17:54',454823752925052930,751,19),(13008,'2018-07-08 20:31:09',274301199841361920,752,26),(13009,'2018-07-08 20:31:09',454823752925052930,752,22),(13010,'2018-07-08 20:31:09',454823752925052930,752,22),(13011,'2018-07-08 20:31:09',460761978135248896,752,24),(13012,'2018-07-08 20:31:09',274301199841361920,752,28),(13013,'2018-07-08 20:31:09',454823752925052930,752,18),(13014,'2018-07-08 20:31:09',274301199841361920,752,13),(13015,'2018-07-08 20:31:10',454823752925052930,752,23),(13016,'2018-07-08 20:31:10',274301199841361920,752,28),(13017,'2018-07-08 20:31:10',274301199841361920,752,24),(13018,'2018-07-08 21:01:20',454823752925052930,753,12),(13019,'2018-07-08 21:01:20',218498162745278474,753,18),(13020,'2018-07-08 21:01:21',246712838603800577,753,8),(13021,'2018-07-08 21:01:21',454823752925052930,753,17),(13022,'2018-07-08 21:01:21',218498162745278474,753,20),(13023,'2018-07-08 21:01:21',457300954660995114,753,20),(13024,'2018-07-08 21:01:21',454823752925052930,753,10),(13025,'2018-07-08 21:01:21',246712838603800577,753,15),(13026,'2018-07-08 21:01:21',460761978135248896,753,10),(13027,'2018-07-08 21:01:21',454823752925052930,753,15),(13028,'2018-07-08 21:01:21',218498162745278474,753,21),(13029,'2018-07-08 21:01:22',454823752925052930,753,9),(13030,'2018-07-08 21:01:22',246712838603800577,753,16),(13031,'2018-07-08 21:01:23',218498162745278474,753,18),(13032,'2018-07-08 21:01:23',218498162745278474,753,22),(13033,'2018-07-08 21:01:23',218498162745278474,753,11),(13034,'2018-07-08 21:01:23',460761978135248896,753,21),(13035,'2018-07-08 21:01:23',218498162745278474,753,18),(13036,'2018-07-08 21:01:23',246712838603800577,753,6),(13037,'2018-07-08 21:01:24',257137018897694721,753,9),(13038,'2018-07-08 21:01:25',246712838603800577,753,11),(13039,'2018-07-08 21:19:20',224083099246395403,754,22),(13040,'2018-07-08 21:19:20',200340393596944384,754,12),(13041,'2018-07-08 21:19:21',457300954660995114,754,21),(13042,'2018-07-08 21:19:21',460761978135248896,754,14),(13043,'2018-07-08 21:19:21',224083099246395403,754,24),(13044,'2018-07-08 21:19:21',200340393596944384,754,14),(13045,'2018-07-08 21:19:21',200340393596944384,754,19),(13046,'2018-07-08 21:19:22',224083099246395403,754,11),(13047,'2018-07-08 21:19:22',200340393596944384,754,19),(13048,'2018-07-08 21:19:22',200340393596944384,754,26),(13049,'2018-07-08 21:19:23',457300954660995114,754,19),(13050,'2018-07-08 21:19:23',200340393596944384,754,17),(13051,'2018-07-08 21:46:13',224083099246395403,755,13),(13052,'2018-07-08 21:46:13',460761978135248896,755,19),(13053,'2018-07-08 21:46:13',200340393596944384,755,21),(13054,'2018-07-08 21:46:14',438094660712267778,755,8),(13055,'2018-07-08 21:46:15',460761978135248896,755,17),(13056,'2018-07-08 21:46:15',200340393596944384,755,21),(13057,'2018-07-08 21:46:15',118124619117887488,755,13),(13058,'2018-07-08 21:46:17',200340393596944384,755,21),(13059,'2018-07-08 21:46:17',118124619117887488,755,15),(13060,'2018-07-08 21:46:18',438094660712267778,755,10),(13061,'2018-07-08 21:46:18',460761978135248896,755,23),(13062,'2018-07-08 21:46:19',118124619117887488,755,10),(13063,'2018-07-08 21:46:19',438094660712267778,755,17),(13064,'2018-07-08 21:46:21',460761978135248896,755,13),(13065,'2018-07-08 21:46:22',438094660712267778,755,14),(13066,'2018-07-08 21:46:24',200340393596944384,755,26),(13067,'2018-07-08 21:46:25',438094660712267778,755,13),(13068,'2018-07-08 21:46:25',200340393596944384,755,13),(13069,'2018-07-08 21:46:26',118124619117887488,755,10),(13070,'2018-07-08 21:46:26',200340393596944384,755,23),(13071,'2018-07-08 21:46:27',460761978135248896,755,15),(13072,'2018-07-08 21:46:28',200340393596944384,755,13),(13073,'2018-07-08 21:46:29',460761978135248896,755,25),(13074,'2018-07-08 21:46:29',118124619117887488,755,9),(13075,'2018-07-08 22:00:15',118124619117887488,756,16),(13076,'2018-07-08 22:00:15',200340393596944384,756,20),(13077,'2018-07-08 22:00:17',457300954660995114,756,11),(13078,'2018-07-08 22:00:17',278115594879107074,756,11),(13079,'2018-07-08 22:00:18',278115594879107074,756,12),(13080,'2018-07-08 22:00:19',278115594879107074,756,12),(13081,'2018-07-08 22:00:19',285930195125403650,756,11),(13082,'2018-07-08 22:00:20',460761978135248896,756,22),(13083,'2018-07-08 22:00:20',457300954660995114,756,24),(13084,'2018-07-08 22:00:20',278115594879107074,756,13),(13085,'2018-07-08 22:00:21',278115594879107074,756,17),(13086,'2018-07-08 22:00:22',278115594879107074,756,7),(13087,'2018-07-08 22:00:23',460761978135248896,756,11),(13088,'2018-07-08 22:00:24',457300954660995114,756,21),(13089,'2018-07-08 22:00:25',118124619117887488,756,19),(13090,'2018-07-08 22:00:25',460761978135248896,756,16),(13091,'2018-07-08 22:00:25',285930195125403650,756,15),(13092,'2018-07-08 22:00:26',200340393596944384,756,10),(13093,'2018-07-08 22:00:26',118124619117887488,756,23),(13094,'2018-07-08 22:00:28',457300954660995114,756,20),(13095,'2018-07-08 22:00:28',433759248800022532,756,15),(13096,'2018-07-08 22:00:28',460761978135248896,756,25),(13097,'2018-07-08 22:00:29',433759248800022532,756,16),(13098,'2018-07-08 22:00:29',433759248800022532,756,9),(13099,'2018-07-08 22:00:30',433759248800022532,756,13),(13100,'2018-07-08 22:44:53',460761978135248896,757,22),(13101,'2018-07-08 22:44:53',457300954660995114,757,29),(13102,'2018-07-08 22:44:57',460761978135248896,757,23),(13103,'2018-07-08 22:44:58',457300954660995114,757,24),(13104,'2018-07-08 22:45:01',460761978135248896,757,18),(13105,'2018-07-08 22:45:02',257137018897694721,757,15),(13106,'2018-07-08 22:45:08',460761978135248896,757,17),(13107,'2018-07-08 22:45:14',191198987490033664,757,11),(13108,'2018-07-08 22:45:15',257137018897694721,757,15),(13109,'2018-07-08 22:45:19',191198987490033664,757,11),(13110,'2018-07-08 22:45:24',257137018897694721,757,11),(13111,'2018-07-08 22:45:25',460761978135248896,757,23),(13112,'2018-07-08 22:45:25',200340393596944384,757,20),(13113,'2018-07-08 22:45:28',191198987490033664,757,14),(13114,'2018-07-08 22:45:29',200340393596944384,757,20),(13115,'2018-07-08 22:45:31',457300954660995114,757,15),(13116,'2018-07-08 22:45:33',191198987490033664,757,12),(13117,'2018-07-08 22:45:53',460761978135248896,757,27),(13118,'2018-07-08 22:45:58',457300954660995114,757,11),(13119,'2018-07-08 22:46:04',457300954660995114,757,20),(13120,'2018-07-08 22:46:07',257137018897694721,757,14),(13121,'2018-07-08 22:46:10',457300954660995114,757,26),(13122,'2018-07-08 22:46:13',257137018897694721,757,10),(13123,'2018-07-08 22:46:32',433759248800022532,757,13),(13124,'2018-07-08 22:46:35',457300954660995114,757,12),(13125,'2018-07-08 22:46:36',433759248800022532,757,14),(13126,'2018-07-08 22:46:41',433759248800022532,757,18),(13127,'2018-07-08 22:46:55',433759248800022532,757,14),(13128,'2018-07-08 22:47:00',433759248800022532,757,8),(13129,'2018-07-08 22:47:12',433759248800022532,757,14),(13130,'2018-07-08 23:50:47',285930195125403650,759,7),(13131,'2018-07-08 23:50:47',433759248800022532,759,14),(13132,'2018-07-08 23:50:48',257137018897694721,759,14),(13133,'2018-07-08 23:50:48',211232684209340426,759,19),(13134,'2018-07-09 00:00:32',211232684209340426,760,20),(13135,'2018-07-09 00:00:32',211232684209340426,760,13),(13136,'2018-07-09 00:00:32',211232684209340426,760,14),(13137,'2018-07-09 00:00:33',211232684209340426,760,28),(13138,'2018-07-09 00:00:33',211232684209340426,760,13),(13139,'2018-07-09 00:00:33',211232684209340426,760,12),(13140,'2018-07-09 00:22:12',211232684209340426,761,15),(13141,'2018-07-09 00:22:13',211232684209340426,761,14),(13142,'2018-07-09 00:22:13',211232684209340426,761,22),(13143,'2018-07-09 00:22:14',211232684209340426,761,21),(13144,'2018-07-09 00:22:14',211232684209340426,761,14),(13145,'2018-07-09 00:22:14',211232684209340426,761,17),(13146,'2018-07-09 00:22:15',211232684209340426,761,20),(13147,'2018-07-09 00:22:15',211232684209340426,761,21),(13148,'2018-07-09 00:32:03',211232684209340426,762,22),(13149,'2018-07-09 00:32:03',457300954660995114,762,29),(13150,'2018-07-09 00:32:03',211232684209340426,762,14),(13151,'2018-07-09 00:32:04',211232684209340426,762,24),(13152,'2018-07-09 00:32:04',211232684209340426,762,11),(13153,'2018-07-09 00:32:04',211232684209340426,762,20),(13154,'2018-07-09 00:32:04',211232684209340426,762,28),(13155,'2018-07-09 00:32:05',211232684209340426,762,25),(13156,'2018-07-09 00:48:09',433759248800022532,763,12),(13157,'2018-07-09 00:48:09',211232684209340426,763,15),(13158,'2018-07-09 00:48:09',211232684209340426,763,23),(13159,'2018-07-09 00:48:09',457300954660995114,763,14),(13160,'2018-07-09 00:48:09',433759248800022532,763,13),(13161,'2018-07-09 00:48:09',211232684209340426,763,24),(13162,'2018-07-09 00:48:09',211232684209340426,763,26),(13163,'2018-07-09 00:48:09',433759248800022532,763,15),(13164,'2018-07-09 00:48:10',433759248800022532,763,14),(13165,'2018-07-09 00:48:10',433759248800022532,763,13),(13166,'2018-07-09 00:48:10',211232684209340426,763,18),(13167,'2018-07-09 00:48:10',433759248800022532,763,15),(13168,'2018-07-09 00:48:10',211232684209340426,763,22),(13169,'2018-07-09 01:20:08',211232684209340426,764,28),(13170,'2018-07-09 01:20:09',211232684209340426,764,23),(13171,'2018-07-09 01:20:09',211232684209340426,764,19),(13172,'2018-07-09 01:20:09',211232684209340426,764,26),(13173,'2018-07-09 01:20:10',211232684209340426,764,20),(13174,'2018-07-09 01:20:10',433759248800022532,764,9),(13175,'2018-07-09 01:20:10',211232684209340426,764,19),(13176,'2018-07-09 01:20:10',433759248800022532,764,12),(13177,'2018-07-09 01:20:10',211232684209340426,764,23),(13178,'2018-07-09 01:50:57',433759248800022532,765,9),(13179,'2018-07-09 01:50:58',433759248800022532,765,10),(13180,'2018-07-09 01:50:58',433759248800022532,765,12),(13181,'2018-07-09 01:50:58',433759248800022532,765,12),(13182,'2018-07-09 01:50:58',457300954660995114,765,14),(13183,'2018-07-09 01:50:59',433759248800022532,765,10),(13184,'2018-07-09 01:50:59',433759248800022532,765,8),(13185,'2018-07-09 01:51:00',433759248800022532,765,14),(13186,'2018-07-09 01:51:00',433759248800022532,765,17),(13187,'2018-07-09 01:51:01',457300954660995114,765,17),(13188,'2018-07-09 01:51:01',460761978135248896,765,22),(13189,'2018-07-09 01:51:03',457300954660995114,765,16),(13190,'2018-07-09 01:51:10',460761978135248896,765,27),(13191,'2018-07-09 01:51:10',457300954660995114,765,17),(13192,'2018-07-09 01:51:12',185698541052755968,765,8),(13193,'2018-07-09 01:51:13',460761978135248896,765,18),(13194,'2018-07-09 01:51:14',185698541052755968,765,15),(13195,'2018-07-09 01:51:15',457300954660995114,765,20),(13196,'2018-07-09 01:51:16',460761978135248896,765,25),(13197,'2018-07-09 01:51:16',185698541052755968,765,16),(13198,'2018-07-09 02:06:31',457300954660995114,766,12),(13199,'2018-07-09 02:06:33',457300954660995114,766,21),(13200,'2018-07-09 02:06:36',457300954660995114,766,26),(13201,'2018-07-09 02:06:40',457300954660995114,766,21),(13202,'2018-07-09 02:06:42',433759248800022532,766,9),(13203,'2018-07-09 02:06:43',433759248800022532,766,9),(13204,'2018-07-09 02:06:44',457300954660995114,766,29),(13205,'2018-07-09 02:06:47',457300954660995114,766,18),(13206,'2018-07-09 02:06:50',433759248800022532,766,18),(13207,'2018-07-09 02:06:52',433759248800022532,766,16),(13208,'2018-07-09 02:06:58',185698541052755968,766,11),(13209,'2018-07-09 02:06:59',433759248800022532,766,14),(13210,'2018-07-09 02:07:00',185698541052755968,766,15),(13211,'2018-07-09 02:07:00',433759248800022532,766,10),(13212,'2018-07-09 02:07:01',433759248800022532,766,17),(13213,'2018-07-09 02:07:03',185698541052755968,766,12),(13214,'2018-07-09 02:07:04',457300954660995114,766,12),(13215,'2018-07-09 02:35:04',200340393596944384,767,25),(13216,'2018-07-09 02:35:05',200340393596944384,767,11),(13217,'2018-07-09 02:35:07',200340393596944384,767,15),(13218,'2018-07-09 02:35:08',200340393596944384,767,10),(13219,'2018-07-09 02:35:09',200340393596944384,767,26),(13220,'2018-07-09 02:35:10',200340393596944384,767,23),(13221,'2018-07-09 02:35:11',200340393596944384,767,11),(13222,'2018-07-09 02:35:12',200340393596944384,767,18),(13223,'2018-07-09 02:35:35',433759248800022532,767,8),(13224,'2018-07-09 02:35:36',433759248800022532,767,9),(13225,'2018-07-09 02:35:37',433759248800022532,767,10),(13226,'2018-07-09 02:35:38',433759248800022532,767,9),(13227,'2018-07-09 02:35:51',433759248800022532,767,13),(13228,'2018-07-09 02:35:52',433759248800022532,767,15),(13229,'2018-07-09 02:35:57',433759248800022532,767,12),(13230,'2018-07-09 02:35:58',433759248800022532,767,13),(13231,'2018-07-09 02:36:41',457300954660995114,767,23),(13232,'2018-07-09 02:36:43',457300954660995114,767,20),(13233,'2018-07-09 02:36:45',457300954660995114,767,13),(13234,'2018-07-09 02:36:49',457300954660995114,767,22),(13235,'2018-07-09 02:36:51',457300954660995114,767,25),(13236,'2018-07-09 02:36:54',457300954660995114,767,23),(13237,'2018-07-09 03:06:11',457300954660995114,768,13),(13238,'2018-07-09 03:06:14',150649616772235264,768,12),(13239,'2018-07-09 03:06:17',457300954660995114,768,14),(13240,'2018-07-09 03:06:21',457300954660995114,768,18),(13241,'2018-07-09 03:06:39',457300954660995114,768,18),(13242,'2018-07-09 03:30:24',433759248800022532,769,18),(13243,'2018-07-09 03:30:24',433759248800022532,769,21),(13244,'2018-07-09 03:44:38',218498162745278474,770,18),(13245,'2018-07-09 03:44:39',185698541052755968,770,11),(13246,'2018-07-09 03:44:39',218498162745278474,770,20),(13247,'2018-07-09 03:44:40',433759248800022532,770,21),(13248,'2018-07-09 04:20:25',218498162745278474,771,19),(13249,'2018-07-09 04:20:26',218498162745278474,771,21),(13250,'2018-07-09 04:20:26',218498162745278474,771,21),(13251,'2018-07-09 04:20:27',218498162745278474,771,17),(13252,'2018-07-09 04:20:27',185698541052755968,771,9),(13253,'2018-07-09 04:31:28',218498162745278474,772,20),(13254,'2018-07-09 04:31:29',185698541052755968,772,12),(13255,'2018-07-09 04:31:29',218498162745278474,772,19),(13256,'2018-07-09 04:31:29',185698541052755968,772,7),(13257,'2018-07-09 04:31:29',218498162745278474,772,17),(13258,'2018-07-09 04:31:29',185698541052755968,772,8),(13259,'2018-07-09 04:31:30',218498162745278474,772,19),(13260,'2018-07-09 04:31:30',185698541052755968,772,9),(13261,'2018-07-09 04:31:30',218498162745278474,772,17),(13262,'2018-07-09 04:31:30',185698541052755968,772,11),(13263,'2018-07-09 04:31:31',218498162745278474,772,20),(13264,'2018-07-09 04:31:31',185698541052755968,772,9),(13265,'2018-07-09 05:04:51',185698541052755968,773,8),(13266,'2018-07-09 05:04:52',185698541052755968,773,12),(13267,'2018-07-09 05:04:53',185698541052755968,773,11),(13268,'2018-07-09 05:04:54',185698541052755968,773,8),(13269,'2018-07-09 05:04:55',185698541052755968,773,13),(13270,'2018-07-09 05:04:56',185698541052755968,773,15),(13271,'2018-07-09 05:04:58',185698541052755968,773,7),(13272,'2018-07-09 05:04:59',200340393596944384,773,12),(13273,'2018-07-09 05:04:59',185698541052755968,773,7),(13274,'2018-07-09 05:04:59',200340393596944384,773,22),(13275,'2018-07-09 05:05:00',185698541052755968,773,12),(13276,'2018-07-09 05:05:00',200340393596944384,773,17),(13277,'2018-07-09 05:05:01',200340393596944384,773,12),(13278,'2018-07-09 05:05:01',185698541052755968,773,11),(13279,'2018-07-09 05:05:02',200340393596944384,773,10),(13280,'2018-07-09 05:05:02',200340393596944384,773,16),(13281,'2018-07-09 05:05:03',200340393596944384,773,23),(13282,'2018-07-09 05:18:56',185698541052755968,774,11),(13283,'2018-07-09 05:18:57',185698541052755968,774,9),(13284,'2018-07-09 05:18:58',185698541052755968,774,13),(13285,'2018-07-09 05:18:59',185698541052755968,774,7),(13286,'2018-07-09 05:19:00',185698541052755968,774,6),(13287,'2018-07-09 05:19:00',185698541052755968,774,14),(13288,'2018-07-09 05:19:01',185698541052755968,774,11),(13289,'2018-07-09 05:19:16',429615167492325376,774,17),(13290,'2018-07-09 05:19:21',429615167492325376,774,19),(13291,'2018-07-09 05:19:29',429615167492325376,774,10),(13292,'2018-07-09 05:19:34',429615167492325376,774,15),(13293,'2018-07-09 05:19:42',429615167492325376,774,14),(13294,'2018-07-09 05:19:48',429615167492325376,774,15),(13295,'2018-07-09 05:19:54',457300954660995114,774,12),(13296,'2018-07-09 05:19:57',457300954660995114,774,27),(13297,'2018-07-09 05:20:00',457300954660995114,774,29),(13298,'2018-07-09 05:20:06',457300954660995114,774,28),(13299,'2018-07-09 05:20:09',429615167492325376,774,14),(13300,'2018-07-09 05:20:29',185698541052755968,774,12),(13301,'2018-07-09 05:20:41',457300954660995114,774,17),(13302,'2018-07-09 06:17:53',433759248800022532,775,18),(13303,'2018-07-09 06:17:53',457300954660995114,775,14),(13304,'2018-07-09 06:17:54',433759248800022532,775,14),(13305,'2018-07-09 06:17:55',433759248800022532,775,10),(13306,'2018-07-09 06:17:59',457300954660995114,775,22),(13307,'2018-07-09 06:18:03',457300954660995114,775,12),(13308,'2018-07-09 06:18:06',457300954660995114,775,22),(13309,'2018-07-09 06:18:09',429615167492325376,775,16),(13310,'2018-07-09 06:18:10',457300954660995114,775,13),(13311,'2018-07-09 06:18:13',457300954660995114,775,23),(13312,'2018-07-09 06:18:17',429615167492325376,775,17),(13313,'2018-07-09 06:18:17',200340393596944384,775,18),(13314,'2018-07-09 06:18:17',457300954660995114,775,23),(13315,'2018-07-09 06:18:20',200340393596944384,775,20),(13316,'2018-07-09 06:18:21',457300954660995114,775,20),(13317,'2018-07-09 06:18:25',457300954660995114,775,20),(13318,'2018-07-09 06:18:30',457300954660995114,775,17),(13319,'2018-07-09 07:01:06',457300954660995114,776,19),(13320,'2018-07-09 07:01:07',433759248800022532,776,15),(13321,'2018-07-09 07:01:09',433759248800022532,776,8),(13322,'2018-07-09 07:01:10',433759248800022532,776,12),(13323,'2018-07-09 07:01:10',457300954660995114,776,20),(13324,'2018-07-09 07:01:14',457300954660995114,776,25),(13325,'2018-07-09 07:01:15',433759248800022532,776,18),(13326,'2018-07-09 07:01:16',433759248800022532,776,21),(13327,'2018-07-09 07:01:21',433759248800022532,776,11),(13328,'2018-07-09 07:01:23',433759248800022532,776,10),(13329,'2018-07-09 07:01:25',433759248800022532,776,8),(13330,'2018-07-09 07:01:30',200340393596944384,776,16),(13331,'2018-07-09 07:01:31',200340393596944384,776,14),(13332,'2018-07-09 07:01:33',200340393596944384,776,25),(13333,'2018-07-09 07:01:34',200340393596944384,776,16),(13334,'2018-07-09 07:01:35',200340393596944384,776,16),(13335,'2018-07-09 07:01:36',200340393596944384,776,14),(13336,'2018-07-09 07:01:37',457300954660995114,776,13),(13337,'2018-07-09 07:01:38',200340393596944384,776,19),(13338,'2018-07-09 07:01:39',200340393596944384,776,24),(13339,'2018-07-09 07:32:06',390618369545601028,777,15),(13340,'2018-07-09 07:32:09',390618369545601028,777,11),(13341,'2018-07-09 07:32:12',390618369545601028,777,26),(13342,'2018-07-09 07:32:12',142612779377885185,777,10),(13343,'2018-07-09 07:32:14',390618369545601028,777,21),(13344,'2018-07-09 07:32:16',390618369545601028,777,18),(13345,'2018-07-09 07:32:18',200340393596944384,777,26),(13346,'2018-07-09 07:32:19',200340393596944384,777,10),(13347,'2018-07-09 07:32:20',200340393596944384,777,22),(13348,'2018-07-09 07:32:22',200340393596944384,777,19),(13349,'2018-07-09 07:32:29',200340393596944384,777,11),(13350,'2018-07-09 07:32:31',200340393596944384,777,11),(13351,'2018-07-09 07:32:34',457300954660995114,777,20),(13352,'2018-07-09 07:32:40',433759248800022532,777,10),(13353,'2018-07-09 07:32:42',433759248800022532,777,12),(13354,'2018-07-09 07:33:39',390618369545601028,777,16),(13355,'2018-07-09 07:33:42',390618369545601028,777,26),(13356,'2018-07-09 07:36:45',192077723676573696,777,8),(13357,'2018-07-09 07:36:47',192077723676573696,777,11),(13358,'2018-07-09 07:36:48',192077723676573696,777,8),(13359,'2018-07-09 07:36:49',192077723676573696,777,13),(13360,'2018-07-09 07:36:51',192077723676573696,777,15),(13361,'2018-07-09 07:50:54',464723134105255943,778,10),(13362,'2018-07-09 07:50:54',457300954660995114,778,14),(13363,'2018-07-09 07:50:55',464723134105255943,778,14),(13364,'2018-07-09 07:50:55',464723134105255943,778,7),(13365,'2018-07-09 08:16:02',457300954660995114,779,20),(13366,'2018-07-09 08:16:04',457300954660995114,779,17),(13367,'2018-07-09 08:16:06',457300954660995114,779,15),(13368,'2018-07-09 08:36:55',173468649884090368,780,10),(13369,'2018-07-09 08:36:58',173468649884090368,780,10),(13370,'2018-07-09 08:37:07',173468649884090368,780,10),(13371,'2018-07-09 08:37:14',173468649884090368,780,11),(13372,'2018-07-09 08:37:17',173468649884090368,780,14),(13373,'2018-07-09 08:37:23',370495051815714816,780,14),(13374,'2018-07-09 08:37:25',370495051815714816,780,14),(13375,'2018-07-09 08:46:43',390618369545601028,781,21),(13376,'2018-07-09 08:46:54',390618369545601028,781,24),(13377,'2018-07-09 08:46:56',390618369545601028,781,27),(13378,'2018-07-09 08:46:58',390618369545601028,781,14),(13379,'2018-07-09 08:47:00',390618369545601028,781,16),(13380,'2018-07-09 08:47:03',390618369545601028,781,11),(13381,'2018-07-09 08:47:31',173468649884090368,781,16),(13382,'2018-07-09 09:17:55',357981974931046400,782,28),(13383,'2018-07-09 09:17:59',163655183438446593,782,10),(13384,'2018-07-09 09:17:59',191198987490033664,782,16),(13385,'2018-07-09 09:18:02',173468649884090368,782,18),(13386,'2018-07-09 09:18:04',357981974931046400,782,23),(13387,'2018-07-09 09:18:05',191198987490033664,782,16),(13388,'2018-07-09 09:18:05',173468649884090368,782,17),(13389,'2018-07-09 09:18:05',224083099246395403,782,28),(13390,'2018-07-09 09:48:53',357981974931046400,783,29),(13391,'2018-07-09 09:49:03',163655183438446593,783,7),(13392,'2018-07-09 09:49:03',357981974931046400,783,15),(13393,'2018-07-09 09:49:06',357981974931046400,783,25),(13394,'2018-07-09 09:49:09',163655183438446593,783,9),(13395,'2018-07-09 09:49:09',357981974931046400,783,29),(13396,'2018-07-09 09:49:13',357981974931046400,783,20),(13397,'2018-07-09 09:49:15',163655183438446593,783,12),(13398,'2018-07-09 09:49:17',357981974931046400,783,21),(13399,'2018-07-09 09:49:25',163655183438446593,783,11),(13400,'2018-07-09 09:49:27',357981974931046400,783,18),(13401,'2018-07-09 09:49:35',163655183438446593,783,13),(13402,'2018-07-09 09:50:35',400022926348386315,783,12),(13403,'2018-07-09 09:50:37',400022926348386315,783,14),(13404,'2018-07-09 09:50:38',400022926348386315,783,14),(13405,'2018-07-09 09:50:38',400022926348386315,783,11),(13406,'2018-07-09 10:30:49',274301199841361920,784,14),(13407,'2018-07-09 10:30:50',325565391478718464,784,30),(13408,'2018-07-09 10:30:50',274301199841361920,784,13),(13409,'2018-07-09 10:30:50',274301199841361920,784,11),(13410,'2018-07-09 10:30:50',274301199841361920,784,22),(13411,'2018-07-09 10:30:51',274301199841361920,784,18),(13412,'2018-07-09 10:30:51',274301199841361920,784,16),(13413,'2018-07-09 10:30:51',274301199841361920,784,18),(13414,'2018-07-09 10:30:53',325565391478718464,784,23),(13415,'2018-07-09 10:30:54',357981974931046400,784,17),(13416,'2018-07-09 10:30:57',325565391478718464,784,32),(13417,'2018-07-09 11:01:06',357981974931046400,785,24),(13418,'2018-07-09 11:01:06',274301199841361920,785,22),(13419,'2018-07-09 11:01:06',224083099246395403,785,17),(13420,'2018-07-09 11:01:07',274301199841361920,785,19),(13421,'2018-07-09 11:01:07',224083099246395403,785,20),(13422,'2018-07-09 11:01:07',274301199841361920,785,13),(13423,'2018-07-09 11:01:07',274301199841361920,785,16),(13424,'2018-07-09 11:01:07',224083099246395403,785,11),(13425,'2018-07-09 11:01:07',274301199841361920,785,20),(13426,'2018-07-09 11:01:08',274301199841361920,785,24),(13427,'2018-07-09 11:01:08',274301199841361920,785,17),(13428,'2018-07-09 11:01:08',224083099246395403,785,24),(13429,'2018-07-09 11:01:08',438094660712267778,785,11),(13430,'2018-07-09 11:01:08',357981974931046400,785,17),(13431,'2018-07-09 11:01:09',224083099246395403,785,18),(13432,'2018-07-09 11:01:12',438094660712267778,785,19),(13433,'2018-07-09 11:01:15',357981974931046400,785,15),(13434,'2018-07-09 11:01:18',438094660712267778,785,14),(13435,'2018-07-09 11:01:19',357981974931046400,785,16),(13436,'2018-07-09 11:21:08',274301199841361920,786,24),(13437,'2018-07-09 11:21:09',438094660712267778,786,16),(13438,'2018-07-09 11:21:09',274301199841361920,786,17),(13439,'2018-07-09 11:21:11',438094660712267778,786,18),(13440,'2018-07-09 11:21:12',438094660712267778,786,16),(13441,'2018-07-09 11:21:14',211232684209340426,786,18),(13442,'2018-07-09 11:21:15',438094660712267778,786,15),(13443,'2018-07-09 11:21:15',211232684209340426,786,11),(13444,'2018-07-09 11:21:15',274301199841361920,786,20),(13445,'2018-07-09 11:21:15',211232684209340426,786,18),(13446,'2018-07-09 11:21:16',211232684209340426,786,24),(13447,'2018-07-09 11:21:16',211232684209340426,786,20),(13448,'2018-07-09 11:21:17',438094660712267778,786,9),(13449,'2018-07-09 11:21:17',211232684209340426,786,13),(13450,'2018-07-09 11:31:22',438094660712267778,787,17),(13451,'2018-07-09 11:31:23',274301199841361920,787,23),(13452,'2018-07-09 11:31:23',211232684209340426,787,19),(13453,'2018-07-09 11:31:24',211232684209340426,787,20),(13454,'2018-07-09 11:31:24',211232684209340426,787,15),(13455,'2018-07-09 11:31:24',211232684209340426,787,18),(13456,'2018-07-09 11:31:25',211232684209340426,787,20),(13457,'2018-07-09 11:31:25',438094660712267778,787,8),(13458,'2018-07-09 11:31:25',211232684209340426,787,25),(13459,'2018-07-09 11:31:27',163655183438446593,787,10),(13460,'2018-07-09 11:31:27',438094660712267778,787,13),(13461,'2018-07-09 11:31:29',438094660712267778,787,20),(13462,'2018-07-09 11:31:29',163655183438446593,787,11),(13463,'2018-07-09 11:31:31',438094660712267778,787,9),(13464,'2018-07-09 11:31:34',438094660712267778,787,14),(13465,'2018-07-09 11:31:35',173468649884090368,787,19),(13466,'2018-07-09 11:31:43',173468649884090368,787,18),(13467,'2018-07-09 11:31:47',438094660712267778,787,16),(13468,'2018-07-09 11:31:52',163655183438446593,787,13),(13469,'2018-07-09 11:31:54',173468649884090368,787,14),(13470,'2018-07-09 11:31:56',163655183438446593,787,15),(13471,'2018-07-09 11:32:00',163655183438446593,787,12),(13472,'2018-07-09 11:32:03',173468649884090368,787,13),(13473,'2018-07-09 11:32:07',173468649884090368,787,8),(13474,'2018-07-09 11:33:00',211232684209340426,787,14),(13475,'2018-07-09 11:33:20',211232684209340426,787,11),(13476,'2018-07-09 11:33:20',211232684209340426,787,20),(13477,'2018-07-09 11:33:21',211232684209340426,787,24),(13478,'2018-07-09 12:19:48',464723134105255943,788,10),(13479,'2018-07-09 12:19:49',274301199841361920,788,22),(13480,'2018-07-09 12:19:50',464723134105255943,788,14),(13481,'2018-07-09 12:19:53',464723134105255943,788,8),(13482,'2018-07-09 12:19:54',257137018897694721,788,18),(13483,'2018-07-09 12:19:55',464723134105255943,788,14),(13484,'2018-07-09 12:19:56',464723134105255943,788,16),(13485,'2018-07-09 12:19:58',325565391478718464,788,32),(13486,'2018-07-09 12:19:59',464723134105255943,788,17),(13487,'2018-07-09 12:19:59',257137018897694721,788,11),(13488,'2018-07-09 12:19:59',274301199841361920,788,19),(13489,'2018-07-09 12:20:00',325565391478718464,788,16),(13490,'2018-07-09 12:20:02',325565391478718464,788,13),(13491,'2018-07-09 12:20:04',325565391478718464,788,35),(13492,'2018-07-09 12:20:06',325565391478718464,788,26),(13493,'2018-07-09 12:20:06',257137018897694721,788,18),(13494,'2018-07-09 12:20:08',325565391478718464,788,25),(13495,'2018-07-09 12:20:14',211232684209340426,788,23),(13496,'2018-07-09 12:20:15',211232684209340426,788,16),(13497,'2018-07-09 12:20:17',211232684209340426,788,29),(13498,'2018-07-09 12:20:18',211232684209340426,788,29),(13499,'2018-07-09 12:20:19',211232684209340426,788,20),(13500,'2018-07-09 13:47:01',257137018897694721,789,12),(13501,'2018-07-09 13:47:05',357981974931046400,789,19),(13502,'2018-07-09 13:47:08',173468649884090368,789,10),(13503,'2018-07-09 13:47:14',257137018897694721,789,14),(13504,'2018-07-09 13:47:19',173468649884090368,789,7),(13505,'2018-07-09 13:47:27',357981974931046400,789,13),(13506,'2018-07-09 13:47:35',150649616772235264,789,10),(13507,'2018-07-09 13:47:39',357981974931046400,789,23),(13508,'2018-07-09 13:47:39',173468649884090368,789,10),(13509,'2018-07-09 13:47:42',150649616772235264,789,7),(13510,'2018-07-09 13:47:44',150649616772235264,789,9),(13511,'2018-07-09 13:47:47',150649616772235264,789,9),(13512,'2018-07-09 13:47:51',173468649884090368,789,19),(13513,'2018-07-09 13:47:54',257137018897694721,789,20),(13514,'2018-07-09 13:47:59',257137018897694721,789,10),(13515,'2018-07-09 13:48:06',150649616772235264,789,17),(13516,'2018-07-09 13:48:09',357981974931046400,789,16),(13517,'2018-07-09 13:48:18',438094660712267778,789,15),(13518,'2018-07-09 13:48:19',150649616772235264,789,8),(13519,'2018-07-09 13:48:23',438094660712267778,789,12),(13520,'2018-07-09 13:48:35',438094660712267778,789,14),(13521,'2018-07-09 13:48:47',464723134105255943,789,14),(13522,'2018-07-09 13:49:03',464723134105255943,789,14),(13523,'2018-07-09 13:50:51',460761978135248896,789,18),(13524,'2018-07-09 13:50:55',460761978135248896,789,12),(13525,'2018-07-09 13:50:57',163655183438446593,789,13),(13526,'2018-07-09 13:50:59',460761978135248896,789,19),(13527,'2018-07-09 13:51:02',460761978135248896,789,18),(13528,'2018-07-09 13:51:02',163655183438446593,789,10),(13529,'2018-07-09 13:51:05',460761978135248896,789,16),(13530,'2018-07-09 13:51:07',163655183438446593,789,13),(13531,'2018-07-09 13:51:08',460761978135248896,789,27),(13532,'2018-07-09 14:50:22',201102155896193024,790,25),(13533,'2018-07-09 14:50:23',201102155896193024,790,27),(13534,'2018-07-09 14:50:23',201102155896193024,790,12),(13535,'2018-07-09 14:50:24',201102155896193024,790,24),(13536,'2018-07-09 14:50:24',201102155896193024,790,12),(13537,'2018-07-09 14:50:25',201102155896193024,790,24),(13538,'2018-07-09 14:50:28',390618369545601028,790,13),(13539,'2018-07-09 14:50:29',459879057295671296,790,11),(13540,'2018-07-09 14:50:29',390618369545601028,790,27),(13541,'2018-07-09 14:50:30',459879057295671296,790,17),(13542,'2018-07-09 14:50:31',459879057295671296,790,14),(13543,'2018-07-09 14:50:31',390618369545601028,790,16),(13544,'2018-07-09 14:50:32',274301199841361920,790,24),(13545,'2018-07-09 14:50:32',459879057295671296,790,11),(13546,'2018-07-09 14:50:32',459879057295671296,790,12),(13547,'2018-07-09 14:50:33',390618369545601028,790,22),(13548,'2018-07-09 14:50:33',274301199841361920,790,24),(13549,'2018-07-09 14:50:36',460761978135248896,790,11),(13550,'2018-07-09 14:50:36',274301199841361920,790,22),(13551,'2018-07-09 14:50:41',390618369545601028,790,22),(13552,'2018-07-09 15:17:19',459876383431327746,791,10),(13553,'2018-07-09 15:17:20',459876383431327746,791,13),(13554,'2018-07-09 15:17:20',459876383431327746,791,13),(13555,'2018-07-09 15:17:21',459876383431327746,791,15),(13556,'2018-07-09 15:17:21',459876383431327746,791,9),(13557,'2018-07-09 15:17:24',460761978135248896,791,22),(13558,'2018-07-09 15:17:28',460761978135248896,791,27),(13559,'2018-07-09 15:17:32',460761978135248896,791,21),(13560,'2018-07-09 15:17:33',459881667104997376,791,16),(13561,'2018-07-09 15:17:34',459881667104997376,791,11),(13562,'2018-07-09 15:17:35',459881667104997376,791,7),(13563,'2018-07-09 15:17:36',459881667104997376,791,8),(13564,'2018-07-09 15:17:37',459881667104997376,791,8),(13565,'2018-07-09 15:17:38',460761978135248896,791,18),(13566,'2018-07-09 15:17:42',459873273308643328,791,10),(13567,'2018-07-09 15:17:42',459873273308643328,791,17),(13568,'2018-07-09 15:17:43',459873273308643328,791,17),(13569,'2018-07-09 15:17:43',459873273308643328,791,17),(13570,'2018-07-09 15:17:44',459873273308643328,791,12),(13571,'2018-07-09 15:17:44',459873273308643328,791,15),(13572,'2018-07-09 15:17:53',460761978135248896,791,16),(13573,'2018-07-09 15:17:53',459883167160205313,791,14),(13574,'2018-07-09 15:17:54',459883167160205313,791,16),(13575,'2018-07-09 15:17:55',459883167160205313,791,8),(13576,'2018-07-09 15:17:55',459883167160205313,791,12),(13577,'2018-07-09 15:17:56',459883167160205313,791,16),(13578,'2018-07-09 15:17:56',459883167160205313,791,13),(13579,'2018-07-09 15:17:59',163655183438446593,791,16),(13580,'2018-07-09 16:00:47',459834182961463299,792,10),(13581,'2018-07-09 16:00:47',459834182961463299,792,14),(13582,'2018-07-09 16:00:48',459834182961463299,792,11),(13583,'2018-07-09 16:00:52',459884642192064512,792,16),(13584,'2018-07-09 16:00:52',191198987490033664,792,13),(13585,'2018-07-09 16:00:53',459884642192064512,792,19),(13586,'2018-07-09 16:00:53',459884642192064512,792,19),(13587,'2018-07-09 16:00:53',191198987490033664,792,13),(13588,'2018-07-09 16:00:54',459884642192064512,792,19),(13589,'2018-07-09 16:00:54',459884642192064512,792,14),(13590,'2018-07-09 16:00:56',191198987490033664,792,13),(13591,'2018-07-09 16:00:57',118124619117887488,792,15),(13592,'2018-07-09 16:00:58',191198987490033664,792,11),(13593,'2018-07-09 16:01:00',118124619117887488,792,14),(13594,'2018-07-09 16:01:01',118124619117887488,792,12),(13595,'2018-07-09 16:01:02',191198987490033664,792,7),(13596,'2018-07-09 16:01:03',459884642192064512,792,19),(13597,'2018-07-09 16:01:11',460761978135248896,792,23),(13598,'2018-07-09 16:01:21',459879057295671296,792,16),(13599,'2018-07-09 16:01:26',460761978135248896,792,20),(13600,'2018-07-09 16:01:32',460761978135248896,792,19),(13601,'2018-07-09 16:01:33',459876383431327746,792,21),(13602,'2018-07-09 16:01:34',459876383431327746,792,16),(13603,'2018-07-09 16:01:51',459881667104997376,792,9),(13604,'2018-07-09 16:01:55',325565391478718464,792,29),(13605,'2018-07-09 16:01:57',357981974931046400,792,31),(13606,'2018-07-09 16:02:08',357981974931046400,792,21),(13607,'2018-07-09 16:02:08',325565391478718464,792,32),(13608,'2018-07-09 16:02:13',459883167160205313,792,12),(13609,'2018-07-09 16:02:18',325565391478718464,792,33),(13610,'2018-07-09 16:02:22',325565391478718464,792,33),(13611,'2018-07-09 16:21:26',438094660712267778,793,11),(13612,'2018-07-09 16:45:24',173468649884090368,794,11),(13613,'2018-07-09 16:45:26',274301199841361920,794,27),(13614,'2018-07-09 17:15:53',201102155896193024,795,20),(13615,'2018-07-09 17:15:53',201102155896193024,795,27),(13616,'2018-07-09 17:15:54',201102155896193024,795,11),(13617,'2018-07-09 17:15:54',118124619117887488,795,23),(13618,'2018-07-09 17:15:54',201102155896193024,795,18),(13619,'2018-07-09 17:36:53',118124619117887488,796,10),(13620,'2018-07-09 17:36:53',173468649884090368,796,11),(13621,'2018-07-09 17:36:53',201102155896193024,796,24),(13622,'2018-07-09 17:36:53',173468649884090368,796,12),(13623,'2018-07-09 17:36:54',201102155896193024,796,22),(13624,'2018-07-09 17:36:54',173468649884090368,796,9),(13625,'2018-07-09 17:36:54',173468649884090368,796,15),(13626,'2018-07-09 17:36:54',118124619117887488,796,16),(13627,'2018-07-09 18:02:14',150649616772235264,797,18),(13628,'2018-07-09 18:02:14',201102155896193024,797,21),(13629,'2018-07-09 18:02:14',357981974931046400,797,29),(13630,'2018-07-09 18:02:14',211232684209340426,797,21),(13631,'2018-07-09 18:02:14',201102155896193024,797,16),(13632,'2018-07-09 18:02:14',211232684209340426,797,24),(13633,'2018-07-09 18:16:45',201102155896193024,798,28),(13634,'2018-07-09 18:16:45',173468649884090368,798,10),(13635,'2018-07-09 18:16:45',201102155896193024,798,14),(13636,'2018-07-09 18:16:46',118124619117887488,798,14),(13637,'2018-07-09 18:16:46',150649616772235264,798,14),(13638,'2018-07-09 18:16:46',201102155896193024,798,25),(13639,'2018-07-09 18:16:46',390938926761639936,798,13),(13640,'2018-07-09 18:16:46',201102155896193024,798,22),(13641,'2018-07-09 18:16:46',118124619117887488,798,22),(13642,'2018-07-09 18:16:46',173468649884090368,798,18),(13643,'2018-07-09 18:16:47',201102155896193024,798,24),(13644,'2018-07-09 18:16:47',118124619117887488,798,20),(13645,'2018-07-09 18:16:47',150649616772235264,798,16),(13646,'2018-07-09 18:16:47',201102155896193024,798,13),(13647,'2018-07-09 18:37:17',357981974931046400,799,14),(13648,'2018-07-09 18:37:17',201102155896193024,799,12),(13649,'2018-07-09 18:37:17',118124619117887488,799,22),(13650,'2018-07-09 18:37:17',357981974931046400,799,25),(13651,'2018-07-09 18:37:17',390938926761639936,799,10),(13652,'2018-07-09 18:37:17',173468649884090368,799,16),(13653,'2018-07-09 18:37:17',201102155896193024,799,16),(13654,'2018-07-09 18:37:17',388505302292627456,799,7),(13655,'2018-07-09 18:37:18',201102155896193024,799,27),(13656,'2018-07-09 18:37:18',201102155896193024,799,19),(13657,'2018-07-09 18:37:18',118124619117887488,799,11),(13658,'2018-07-09 18:37:18',201102155896193024,799,21),(13659,'2018-07-09 18:37:19',118124619117887488,799,20),(13660,'2018-07-09 18:50:11',454823752925052930,800,15),(13661,'2018-07-09 18:50:11',201102155896193024,800,20),(13662,'2018-07-09 18:50:11',390938926761639936,800,23),(13663,'2018-07-09 18:50:11',201102155896193024,800,23),(13664,'2018-07-09 18:50:12',454823752925052930,800,12),(13665,'2018-07-09 18:50:12',454823752925052930,800,23),(13666,'2018-07-09 18:50:12',201102155896193024,800,12),(13667,'2018-07-09 18:50:12',454823752925052930,800,16),(13668,'2018-07-09 18:50:12',390938926761639936,800,23),(13669,'2018-07-09 18:50:12',201102155896193024,800,18),(13670,'2018-07-09 18:50:12',173468649884090368,800,16),(13671,'2018-07-09 18:50:13',454823752925052930,800,23),(13672,'2018-07-09 18:50:13',173468649884090368,800,18),(13673,'2018-07-09 18:50:13',201102155896193024,800,13),(13674,'2018-07-09 18:50:13',173468649884090368,800,11),(13675,'2018-07-09 18:50:13',454823752925052930,800,10),(13676,'2018-07-09 18:50:13',173468649884090368,800,13),(13677,'2018-07-09 18:50:13',173468649884090368,800,11),(13678,'2018-07-09 18:50:14',454823752925052930,800,17),(13679,'2018-07-09 19:07:03',459879057295671296,801,16),(13680,'2018-07-09 19:07:03',388505302292627456,801,16),(13681,'2018-07-09 19:07:03',459879057295671296,801,19),(13682,'2018-07-09 19:07:03',457300954660995114,801,22),(13683,'2018-07-09 19:07:04',150649616772235264,801,12),(13684,'2018-07-09 19:07:04',459879057295671296,801,9),(13685,'2018-07-09 19:07:04',390938926761639936,801,22),(13686,'2018-07-09 19:07:04',459879057295671296,801,12),(13687,'2018-07-09 19:07:04',150649616772235264,801,13),(13688,'2018-07-09 19:07:05',459879057295671296,801,10),(13689,'2018-07-09 19:07:05',150649616772235264,801,17),(13690,'2018-07-09 19:07:05',388505302292627456,801,9),(13691,'2018-07-09 19:07:05',150649616772235264,801,13),(13692,'2018-07-09 19:07:07',390938926761639936,801,11),(13693,'2018-07-09 19:07:07',388505302292627456,801,8),(13694,'2018-07-09 19:07:08',150649616772235264,801,15),(13695,'2018-07-09 19:07:08',201102155896193024,801,12),(13696,'2018-07-09 19:07:09',388505302292627456,801,11),(13697,'2018-07-09 19:07:10',390938926761639936,801,13),(13698,'2018-07-09 19:07:10',390938926761639936,801,11),(13699,'2018-07-09 19:07:11',388505302292627456,801,13),(13700,'2018-07-09 19:07:11',390938926761639936,801,21),(13701,'2018-07-09 19:07:12',150649616772235264,801,18),(13702,'2018-07-09 19:07:13',201102155896193024,801,14),(13703,'2018-07-09 19:07:14',388505302292627456,801,11),(13704,'2018-07-09 19:07:14',201102155896193024,801,23),(13705,'2018-07-09 19:07:16',388505302292627456,801,9),(13706,'2018-07-09 19:07:18',460761978135248896,801,26),(13707,'2018-07-09 19:19:39',150649616772235264,802,13),(13708,'2018-07-09 19:19:39',459879057295671296,802,14),(13709,'2018-07-09 19:19:39',457300954660995114,802,23),(13710,'2018-07-09 19:19:39',459879057295671296,802,15),(13711,'2018-07-09 19:19:40',459879057295671296,802,18),(13712,'2018-07-09 19:19:40',285930195125403650,802,14),(13713,'2018-07-09 19:19:40',459879057295671296,802,13),(13714,'2018-07-09 19:19:41',150649616772235264,802,12),(13715,'2018-07-09 19:19:42',457300954660995114,802,25),(13716,'2018-07-09 19:19:42',285930195125403650,802,15),(13717,'2018-07-09 19:19:44',118124619117887488,802,10),(13718,'2018-07-09 19:19:44',457300954660995114,802,20),(13719,'2018-07-09 19:19:45',118124619117887488,802,19),(13720,'2018-07-09 19:19:45',459881667104997376,802,13),(13721,'2018-07-09 19:19:46',459881667104997376,802,14),(13722,'2018-07-09 19:19:46',459881667104997376,802,8),(13723,'2018-07-09 19:19:46',285930195125403650,802,8),(13724,'2018-07-09 19:19:47',459881667104997376,802,12),(13725,'2018-07-09 19:19:47',459881667104997376,802,15),(13726,'2018-07-09 19:19:49',460761978135248896,802,14),(13727,'2018-07-09 19:19:50',459873273308643328,802,20),(13728,'2018-07-09 19:50:40',459883167160205313,803,20),(13729,'2018-07-09 19:50:40',457300954660995114,803,27),(13730,'2018-07-09 19:50:40',459883167160205313,803,19),(13731,'2018-07-09 19:50:41',460761978135248896,803,18),(13732,'2018-07-09 19:50:41',459883167160205313,803,12),(13733,'2018-07-09 19:50:41',459883167160205313,803,15),(13734,'2018-07-09 19:50:42',459883167160205313,803,10),(13735,'2018-07-09 19:50:42',457300954660995114,803,12),(13736,'2018-07-09 19:50:42',459883167160205313,803,10),(13737,'2018-07-09 19:50:43',460761978135248896,803,18),(13738,'2018-07-09 19:50:44',459881667104997376,803,13),(13739,'2018-07-09 19:50:44',457300954660995114,803,13),(13740,'2018-07-09 19:50:45',459881667104997376,803,14),(13741,'2018-07-09 19:50:45',459881667104997376,803,18),(13742,'2018-07-09 19:50:45',460761978135248896,803,17),(13743,'2018-07-09 19:50:46',139861211746402304,803,10),(13744,'2018-07-09 19:50:46',459881667104997376,803,15),(13745,'2018-07-09 19:50:47',457300954660995114,803,29),(13746,'2018-07-09 20:03:25',457300954660995114,804,27),(13747,'2018-07-09 20:03:26',460761978135248896,804,16),(13748,'2018-07-09 20:03:28',460761978135248896,804,24),(13749,'2018-07-09 20:03:28',457300954660995114,804,15),(13750,'2018-07-09 20:03:31',460761978135248896,804,14),(13751,'2018-07-09 20:03:31',388505302292627456,804,14),(13752,'2018-07-09 20:03:33',388505302292627456,804,10),(13753,'2018-07-09 20:03:33',388505302292627456,804,16),(13754,'2018-07-09 20:03:33',457300954660995114,804,25),(13755,'2018-07-09 20:03:34',460761978135248896,804,18),(13756,'2018-07-09 20:03:34',388505302292627456,804,7),(13757,'2018-07-09 20:03:35',150649616772235264,804,12),(13758,'2018-07-09 20:03:35',388505302292627456,804,13),(13759,'2018-07-09 20:03:36',388505302292627456,804,18),(13760,'2018-07-09 20:03:37',388505302292627456,804,9),(13761,'2018-07-09 20:03:38',150649616772235264,804,15),(13762,'2018-07-09 20:03:39',460761978135248896,804,13),(13763,'2018-07-09 20:03:39',388505302292627456,804,15),(13764,'2018-07-09 20:03:41',150649616772235264,804,13),(13765,'2018-07-09 20:03:53',460761978135248896,804,15),(13766,'2018-07-09 20:03:54',150649616772235264,804,14),(13767,'2018-07-09 20:03:56',460761978135248896,804,28),(13768,'2018-07-09 20:03:57',201102155896193024,804,12),(13769,'2018-07-09 20:03:58',150649616772235264,804,16),(13770,'2018-07-09 20:03:59',457300954660995114,804,23),(13771,'2018-07-09 20:04:02',460761978135248896,804,14),(13772,'2018-07-09 20:04:02',459884642192064512,804,10),(13773,'2018-07-09 20:04:03',459884642192064512,804,22),(13774,'2018-07-09 20:04:04',459884642192064512,804,13),(13775,'2018-07-09 20:34:23',459873273308643328,805,16),(13776,'2018-07-09 20:34:23',118124619117887488,805,20),(13777,'2018-07-09 20:34:23',459873273308643328,805,10),(13778,'2018-07-09 20:34:24',459873273308643328,805,16),(13779,'2018-07-09 20:34:24',459873273308643328,805,18),(13780,'2018-07-09 20:34:24',118124619117887488,805,20),(13781,'2018-07-09 20:34:25',459873273308643328,805,20),(13782,'2018-07-09 20:34:25',118124619117887488,805,18),(13783,'2018-07-09 20:34:25',118124619117887488,805,18),(13784,'2018-07-09 20:34:26',118124619117887488,805,11),(13785,'2018-07-09 20:34:26',457300954660995114,805,21),(13786,'2018-07-09 20:34:30',460761978135248896,805,28),(13787,'2018-07-09 20:34:37',460761978135248896,805,12),(13788,'2018-07-09 20:34:38',459876383431327746,805,21),(13789,'2018-07-09 20:34:38',459876383431327746,805,14),(13790,'2018-07-09 20:34:39',459876383431327746,805,18),(13791,'2018-07-09 20:34:39',459876383431327746,805,22),(13792,'2018-07-09 20:34:39',459876383431327746,805,12),(13793,'2018-07-09 20:34:44',460761978135248896,805,23),(13794,'2018-07-09 20:34:49',150649616772235264,805,14),(13795,'2018-07-09 20:34:50',457300954660995114,805,14),(13796,'2018-07-09 20:34:51',429787012481024010,805,7),(13797,'2018-07-09 20:35:01',429787012481024010,805,6),(13798,'2018-07-09 20:35:11',201102155896193024,805,19),(13799,'2018-07-09 20:35:39',459884642192064512,805,23),(13800,'2018-07-09 20:35:40',459884642192064512,805,21),(13801,'2018-07-09 21:06:50',274301199841361920,806,18),(13802,'2018-07-09 21:06:51',274301199841361920,806,26),(13803,'2018-07-09 21:06:52',459883167160205313,806,11),(13804,'2018-07-09 21:06:52',274301199841361920,806,23),(13805,'2018-07-09 21:06:53',200340393596944384,806,19),(13806,'2018-07-09 21:06:54',274301199841361920,806,13),(13807,'2018-07-09 21:06:54',200340393596944384,806,18),(13808,'2018-07-09 21:06:56',200340393596944384,806,18),(13809,'2018-07-09 21:06:58',196081395494289408,806,7),(13810,'2018-07-09 21:07:02',459876383431327746,806,20),(13811,'2018-07-09 21:07:04',459876383431327746,806,18),(13812,'2018-07-09 21:07:07',200340393596944384,806,17),(13813,'2018-07-09 21:07:21',218498162745278474,806,16),(13814,'2018-07-09 21:07:23',196081395494289408,806,10),(13815,'2018-07-09 21:07:24',218498162745278474,806,20),(13816,'2018-07-09 21:07:26',200340393596944384,806,13),(13817,'2018-07-09 21:07:27',218498162745278474,806,25),(13818,'2018-07-09 21:07:29',200340393596944384,806,14),(13819,'2018-07-09 21:07:32',218498162745278474,806,19),(13820,'2018-07-09 21:07:40',218498162745278474,806,11),(13821,'2018-07-09 21:07:40',429787012481024010,806,15),(13822,'2018-07-09 21:07:43',429787012481024010,806,14),(13823,'2018-07-09 21:07:50',196081395494289408,806,11),(13824,'2018-07-09 21:07:58',454823752925052930,806,19),(13825,'2018-07-09 21:07:59',454823752925052930,806,20),(13826,'2018-07-09 21:08:00',454823752925052930,806,16),(13827,'2018-07-09 21:08:13',454823752925052930,806,11),(13828,'2018-07-09 21:08:15',196081395494289408,806,8),(13829,'2018-07-09 21:33:34',201102155896193024,807,17),(13830,'2018-07-09 21:33:34',201102155896193024,807,17),(13831,'2018-07-09 21:33:35',201102155896193024,807,16),(13832,'2018-07-09 21:44:42',201102155896193024,808,16),(13833,'2018-07-09 21:44:43',196081395494289408,808,10),(13834,'2018-07-09 21:44:43',454823752925052930,808,10),(13835,'2018-07-09 21:44:43',218498162745278474,808,24),(13836,'2018-07-09 21:44:43',357981974931046400,808,25),(13837,'2018-07-09 22:01:41',357981974931046400,809,21),(13838,'2018-07-09 22:01:41',454823752925052930,809,16),(13839,'2018-07-09 22:01:41',201102155896193024,809,14),(13840,'2018-07-09 22:01:41',201102155896193024,809,13),(13841,'2018-07-09 22:01:41',454823752925052930,809,11),(13842,'2018-07-09 22:01:42',457300954660995114,809,29),(13843,'2018-07-09 22:01:42',454823752925052930,809,19),(13844,'2018-07-09 22:01:42',201102155896193024,809,12),(13845,'2018-07-09 22:01:42',454823752925052930,809,13),(13846,'2018-07-09 22:22:00',274301199841361920,810,25),(13847,'2018-07-09 22:22:01',201102155896193024,810,19),(13848,'2018-07-09 22:22:01',429787012481024010,810,12),(13849,'2018-07-09 22:22:01',150649616772235264,810,11),(13850,'2018-07-09 22:22:01',274301199841361920,810,24),(13851,'2018-07-09 22:22:02',150649616772235264,810,9),(13852,'2018-07-09 22:22:02',201102155896193024,810,15),(13853,'2018-07-09 22:22:02',201102155896193024,810,13),(13854,'2018-07-09 22:22:02',274301199841361920,810,20),(13855,'2018-07-09 22:22:02',201102155896193024,810,22),(13856,'2018-07-09 22:50:35',201102155896193024,811,25),(13857,'2018-07-09 22:50:35',150649616772235264,811,15),(13858,'2018-07-09 22:50:35',201102155896193024,811,25),(13859,'2018-07-09 22:50:36',201102155896193024,811,26),(13860,'2018-07-09 22:50:36',460761978135248896,811,25),(13861,'2018-07-09 22:50:36',150649616772235264,811,12),(13862,'2018-07-09 22:50:36',201102155896193024,811,14),(13863,'2018-07-09 22:50:37',201102155896193024,811,28),(13864,'2018-07-09 22:50:37',150649616772235264,811,13),(13865,'2018-07-09 23:15:56',454823752925052930,812,20),(13866,'2018-07-09 23:15:56',454823752925052930,812,21),(13867,'2018-07-09 23:15:57',454823752925052930,812,20),(13868,'2018-07-09 23:15:57',460761978135248896,812,12),(13869,'2018-07-09 23:15:57',454823752925052930,812,23),(13870,'2018-07-09 23:15:58',454823752925052930,812,12),(13871,'2018-07-09 23:15:58',454823752925052930,812,17),(13872,'2018-07-09 23:15:59',460761978135248896,812,29),(13873,'2018-07-09 23:16:01',460761978135248896,812,16),(13874,'2018-07-09 23:16:03',460761978135248896,812,12),(13875,'2018-07-09 23:16:05',457300954660995114,812,24),(13876,'2018-07-09 23:16:06',460761978135248896,812,27),(13877,'2018-07-09 23:16:07',457300954660995114,812,24),(13878,'2018-07-09 23:16:07',460761978135248896,812,28),(13879,'2018-07-09 23:52:16',454823752925052930,813,9),(13880,'2018-07-09 23:52:17',457300954660995114,813,17),(13881,'2018-07-09 23:52:17',454823752925052930,813,12),(13882,'2018-07-09 23:52:17',460761978135248896,813,22),(13883,'2018-07-09 23:52:17',454823752925052930,813,16),(13884,'2018-07-09 23:52:18',454823752925052930,813,18),(13885,'2018-07-09 23:52:18',457300954660995114,813,16),(13886,'2018-07-09 23:52:18',454823752925052930,813,10),(13887,'2018-07-09 23:52:19',429787012481024010,813,10),(13888,'2018-07-09 23:52:19',454823752925052930,813,22),(13889,'2018-07-09 23:52:19',460761978135248896,813,11),(13890,'2018-07-09 23:52:19',454823752925052930,813,16),(13891,'2018-07-09 23:52:20',457289865516548098,813,15),(13892,'2018-07-09 23:52:20',454823752925052930,813,9),(13893,'2018-07-09 23:52:22',460761978135248896,813,23),(13894,'2018-07-09 23:52:22',200340393596944384,813,25),(13895,'2018-07-09 23:52:23',200340393596944384,813,19),(13896,'2018-07-10 00:04:11',457300954660995114,814,11),(13897,'2018-07-10 00:04:12',201102155896193024,814,29),(13898,'2018-07-10 00:04:12',201102155896193024,814,24),(13899,'2018-07-10 00:04:12',460761978135248896,814,21),(13900,'2018-07-10 00:04:14',457300954660995114,814,27),(13901,'2018-07-10 00:04:15',460761978135248896,814,19),(13902,'2018-07-10 00:04:16',457289865516548098,814,7),(13903,'2018-07-10 00:04:16',459883167160205313,814,10),(13904,'2018-07-10 00:04:16',457300954660995114,814,23),(13905,'2018-07-10 00:04:16',459883167160205313,814,9),(13906,'2018-07-10 00:04:17',459883167160205313,814,20),(13907,'2018-07-10 00:04:17',459883167160205313,814,23),(13908,'2018-07-10 00:04:18',459883167160205313,814,14),(13909,'2018-07-10 00:04:18',460761978135248896,814,23),(13910,'2018-07-10 00:04:20',457289865516548098,814,11),(13911,'2018-07-10 00:04:21',459876383431327746,814,23),(13912,'2018-07-10 00:04:21',460761978135248896,814,20),(13913,'2018-07-10 00:16:42',200340393596944384,815,21),(13914,'2018-07-10 00:16:42',150649616772235264,815,8),(13915,'2018-07-10 00:16:42',200340393596944384,815,21),(13916,'2018-07-10 00:16:42',150649616772235264,815,12),(13917,'2018-07-10 00:16:43',200340393596944384,815,22),(13918,'2018-07-10 00:16:43',200340393596944384,815,13),(13919,'2018-07-10 00:16:43',150649616772235264,815,16),(13920,'2018-07-10 00:16:43',200340393596944384,815,17),(13921,'2018-07-10 00:16:44',429787012481024010,815,16),(13922,'2018-07-10 00:16:44',150649616772235264,815,16),(13923,'2018-07-10 00:16:44',200340393596944384,815,25),(13924,'2018-07-10 00:16:44',200340393596944384,815,19),(13925,'2018-07-10 00:16:45',150649616772235264,815,16),(13926,'2018-07-10 00:16:45',200340393596944384,815,21),(13927,'2018-07-10 00:16:46',150649616772235264,815,12),(13928,'2018-07-10 00:16:50',429787012481024010,815,15),(13929,'2018-07-10 00:17:22',454823752925052930,815,22),(13930,'2018-07-10 00:17:24',454823752925052930,815,19),(13931,'2018-07-10 00:17:27',429787012481024010,815,6),(13932,'2018-07-10 00:17:30',454823752925052930,815,14),(13933,'2018-07-10 00:17:31',454823752925052930,815,17),(13934,'2018-07-10 00:17:32',429787012481024010,815,11),(13935,'2018-07-10 00:17:32',454823752925052930,815,10),(13936,'2018-07-10 00:17:32',460761978135248896,815,20),(13937,'2018-07-10 00:17:34',460761978135248896,815,12),(13938,'2018-07-10 00:17:37',460761978135248896,815,26),(13939,'2018-07-10 00:29:43',457300954660995114,816,29),(13940,'2018-07-10 00:29:46',200340393596944384,816,11),(13941,'2018-07-10 00:29:46',457300954660995114,816,24),(13942,'2018-07-10 00:29:47',200340393596944384,816,19),(13943,'2018-07-10 00:29:48',200340393596944384,816,12),(13944,'2018-07-10 00:29:48',200340393596944384,816,24),(13945,'2018-07-10 00:29:49',200340393596944384,816,16),(13946,'2018-07-10 00:29:50',200340393596944384,816,18),(13947,'2018-07-10 00:29:50',457300954660995114,816,29),(13948,'2018-07-10 00:29:54',457300954660995114,816,11),(13949,'2018-07-10 00:29:57',457300954660995114,816,16),(13950,'2018-07-10 00:30:01',457300954660995114,816,29),(13951,'2018-07-10 00:30:05',457300954660995114,816,15),(13952,'2018-07-10 00:30:08',457300954660995114,816,19),(13953,'2018-07-10 00:30:23',457300954660995114,816,15),(13954,'2018-07-10 00:30:25',457300954660995114,816,29),(13955,'2018-07-10 01:16:48',457300954660995114,817,11),(13956,'2018-07-10 01:16:51',460761978135248896,817,25),(13957,'2018-07-10 01:16:51',457300954660995114,817,20),(13958,'2018-07-10 01:16:54',457300954660995114,817,15),(13959,'2018-07-10 01:16:55',460761978135248896,817,24),(13960,'2018-07-10 01:16:57',460761978135248896,817,25),(13961,'2018-07-10 01:16:59',457300954660995114,817,16),(13962,'2018-07-10 01:17:01',460761978135248896,817,13),(13963,'2018-07-10 01:17:03',457300954660995114,817,27),(13964,'2018-07-10 01:17:05',460761978135248896,817,12),(13965,'2018-07-10 01:17:07',200340393596944384,817,18),(13966,'2018-07-10 01:17:08',200340393596944384,817,12),(13967,'2018-07-10 01:17:09',200340393596944384,817,10),(13968,'2018-07-10 01:17:10',200340393596944384,817,13),(13969,'2018-07-10 01:17:11',200340393596944384,817,17),(13970,'2018-07-10 01:17:11',200340393596944384,817,16),(13971,'2018-07-10 01:17:11',460761978135248896,817,12),(13972,'2018-07-10 01:17:12',200340393596944384,817,24),(13973,'2018-07-10 01:51:53',457300954660995114,818,22),(13974,'2018-07-10 01:51:56',460761978135248896,818,20),(13975,'2018-07-10 01:52:03',460761978135248896,818,15),(13976,'2018-07-10 01:52:07',460761978135248896,818,15),(13977,'2018-07-10 01:52:12',460761978135248896,818,16),(13978,'2018-07-10 02:01:47',201102155896193024,819,24),(13979,'2018-07-10 02:01:48',201102155896193024,819,29),(13980,'2018-07-10 02:35:29',460761978135248896,820,26),(13981,'2018-07-10 02:35:34',459876383431327746,820,13),(13982,'2018-07-10 02:35:34',460761978135248896,820,29),(13983,'2018-07-10 02:35:35',459876383431327746,820,20),(13984,'2018-07-10 02:35:36',459876383431327746,820,19),(13985,'2018-07-10 03:02:49',218498162745278474,821,20),(13986,'2018-07-10 03:02:49',454823752925052930,821,13),(13987,'2018-07-10 03:02:49',218498162745278474,821,20),(13988,'2018-07-10 03:02:50',438094660712267778,821,17),(13989,'2018-07-10 03:02:50',454823752925052930,821,16),(13990,'2018-07-10 03:02:50',460761978135248896,821,22),(13991,'2018-07-10 03:15:21',218498162745278474,822,15),(13992,'2018-07-10 03:15:21',438094660712267778,822,19),(13993,'2018-07-10 03:15:21',218498162745278474,822,11),(13994,'2018-07-10 03:15:22',460761978135248896,822,14),(13995,'2018-07-10 03:15:22',218498162745278474,822,18),(13996,'2018-07-10 03:15:22',218498162745278474,822,19),(13997,'2018-07-10 03:15:22',438094660712267778,822,16),(13998,'2018-07-10 03:15:23',218498162745278474,822,19),(13999,'2018-07-10 03:15:23',218498162745278474,822,19),(14000,'2018-07-10 03:15:23',460761978135248896,822,20),(14001,'2018-07-10 03:15:24',218498162745278474,822,12),(14002,'2018-07-10 03:50:52',454823752925052930,823,10),(14003,'2018-07-10 03:50:52',218498162745278474,823,11),(14004,'2018-07-10 03:50:52',438094660712267778,823,15),(14005,'2018-07-10 03:50:52',218498162745278474,823,12),(14006,'2018-07-10 03:50:52',460761978135248896,823,23),(14007,'2018-07-10 03:50:53',454823752925052930,823,21),(14008,'2018-07-10 03:50:53',218498162745278474,823,11),(14009,'2018-07-10 03:50:53',454823752925052930,823,12),(14010,'2018-07-10 03:50:53',438094660712267778,823,16),(14011,'2018-07-10 03:50:54',454823752925052930,823,14),(14012,'2018-07-10 03:50:54',454823752925052930,823,16),(14013,'2018-07-10 03:50:54',438094660712267778,823,16),(14014,'2018-07-10 03:50:55',218498162745278474,823,23),(14015,'2018-07-10 03:50:55',460761978135248896,823,17),(14016,'2018-07-10 03:50:55',218498162745278474,823,15),(14017,'2018-07-10 04:03:07',201102155896193024,824,12),(14018,'2018-07-10 04:03:08',200340393596944384,824,10),(14019,'2018-07-10 04:03:08',200340393596944384,824,18),(14020,'2018-07-10 04:03:08',201102155896193024,824,30),(14021,'2018-07-10 04:03:08',200340393596944384,824,22),(14022,'2018-07-10 04:03:09',460761978135248896,824,27),(14023,'2018-07-10 04:03:09',201102155896193024,824,21),(14024,'2018-07-10 04:03:09',200340393596944384,824,26),(14025,'2018-07-10 04:03:09',200340393596944384,824,26),(14026,'2018-07-10 04:03:09',201102155896193024,824,17),(14027,'2018-07-10 04:03:09',200340393596944384,824,17),(14028,'2018-07-10 04:03:10',201102155896193024,824,31),(14029,'2018-07-10 04:14:03',201102155896193024,825,26),(14030,'2018-07-10 04:14:04',201102155896193024,825,23),(14031,'2018-07-10 04:14:04',457300954660995114,825,20),(14032,'2018-07-10 04:14:04',201102155896193024,825,15),(14033,'2018-07-10 04:14:05',201102155896193024,825,28),(14034,'2018-07-10 04:14:05',201102155896193024,825,21),(14035,'2018-07-10 04:14:06',454823752925052930,825,14),(14036,'2018-07-10 04:14:06',454823752925052930,825,15),(14037,'2018-07-10 04:14:06',454823752925052930,825,12),(14038,'2018-07-10 04:14:07',459876383431327746,825,16),(14039,'2018-07-10 04:14:07',457300954660995114,825,23),(14040,'2018-07-10 04:14:07',454823752925052930,825,12),(14041,'2018-07-10 04:14:07',459876383431327746,825,19),(14042,'2018-07-10 04:14:07',454823752925052930,825,15),(14043,'2018-07-10 04:14:08',459876383431327746,825,15),(14044,'2018-07-10 04:14:08',454823752925052930,825,15),(14045,'2018-07-10 04:14:08',459876383431327746,825,19),(14046,'2018-07-10 04:14:08',459876383431327746,825,19),(14047,'2018-07-10 04:14:08',457300954660995114,825,17),(14048,'2018-07-10 04:30:45',457300954660995114,826,24),(14049,'2018-07-10 04:30:45',454823752925052930,826,21),(14050,'2018-07-10 04:30:46',454823752925052930,826,16),(14051,'2018-07-10 04:30:47',457300954660995114,826,29),(14052,'2018-07-10 04:30:47',454823752925052930,826,19),(14053,'2018-07-10 04:30:48',454823752925052930,826,10),(14054,'2018-07-10 04:30:49',457300954660995114,826,14),(14055,'2018-07-10 04:30:49',454823752925052930,826,12),(14056,'2018-07-10 04:30:50',429615167492325376,826,14),(14057,'2018-07-10 04:30:50',454823752925052930,826,12),(14058,'2018-07-10 04:30:51',457300954660995114,826,18),(14059,'2018-07-10 04:30:51',454823752925052930,826,17),(14060,'2018-07-10 04:30:51',454823752925052930,826,23),(14061,'2018-07-10 04:30:53',457300954660995114,826,11),(14062,'2018-07-10 04:30:55',429615167492325376,826,11),(14063,'2018-07-10 04:30:55',457300954660995114,826,17),(14064,'2018-07-10 04:30:58',457300954660995114,826,16),(14065,'2018-07-10 04:31:00',429615167492325376,826,10),(14066,'2018-07-10 04:31:00',457300954660995114,826,17),(14067,'2018-07-10 04:31:02',457300954660995114,826,29),(14068,'2018-07-10 04:31:05',429615167492325376,826,16),(14069,'2018-07-10 04:31:10',429615167492325376,826,12),(14070,'2018-07-10 04:31:16',429615167492325376,826,14),(14071,'2018-07-10 04:45:59',200340393596944384,827,23),(14072,'2018-07-10 04:46:00',200340393596944384,827,20),(14073,'2018-07-10 04:46:01',200340393596944384,827,21),(14074,'2018-07-10 04:46:02',457300954660995114,827,11),(14075,'2018-07-10 04:46:02',200340393596944384,827,12),(14076,'2018-07-10 04:46:03',200340393596944384,827,22),(14077,'2018-07-10 04:46:04',200340393596944384,827,16),(14078,'2018-07-10 04:46:05',200340393596944384,827,16),(14079,'2018-07-10 04:46:05',278115594879107074,827,14),(14080,'2018-07-10 04:46:05',200340393596944384,827,26),(14081,'2018-07-10 04:46:08',457300954660995114,827,29),(14082,'2018-07-10 04:46:10',457300954660995114,827,15),(14083,'2018-07-10 04:46:12',278115594879107074,827,18),(14084,'2018-07-10 04:46:13',457300954660995114,827,11),(14085,'2018-07-10 04:46:19',278115594879107074,827,18),(14086,'2018-07-10 04:46:21',454823752925052930,827,18),(14087,'2018-07-10 04:46:22',278115594879107074,827,7),(14088,'2018-07-10 04:46:22',454823752925052930,827,11),(14089,'2018-07-10 04:46:23',457300954660995114,827,19),(14090,'2018-07-10 04:46:24',454823752925052930,827,9),(14091,'2018-07-10 04:46:28',278115594879107074,827,14),(14092,'2018-07-10 04:46:29',454823752925052930,827,9),(14093,'2018-07-10 04:46:31',457300954660995114,827,20),(14094,'2018-07-10 04:46:32',278115594879107074,827,18),(14095,'2018-07-10 05:19:48',457300954660995114,828,15),(14096,'2018-07-10 05:19:53',173468649884090368,828,10),(14097,'2018-07-10 05:19:54',457300954660995114,828,28),(14098,'2018-07-10 05:19:54',460761978135248896,828,21),(14099,'2018-07-10 05:19:57',173468649884090368,828,12),(14100,'2018-07-10 05:19:57',460761978135248896,828,29),(14101,'2018-07-10 05:19:59',173468649884090368,828,14),(14102,'2018-07-10 05:20:04',173468649884090368,828,15),(14103,'2018-07-10 05:20:06',460761978135248896,828,25),(14104,'2018-07-10 05:20:07',173468649884090368,828,17),(14105,'2018-07-10 05:20:10',460761978135248896,828,18),(14106,'2018-07-10 05:20:13',460761978135248896,828,29),(14107,'2018-07-10 05:20:18',460761978135248896,828,18),(14108,'2018-07-10 05:20:19',457300954660995114,828,24),(14109,'2018-07-10 05:20:24',457300954660995114,828,29),(14110,'2018-07-10 05:20:31',173468649884090368,828,9),(14111,'2018-07-10 05:20:37',460761978135248896,828,16),(14112,'2018-07-10 05:20:41',460761978135248896,828,15),(14113,'2018-07-10 05:20:46',460761978135248896,828,16),(14114,'2018-07-10 05:20:51',457300954660995114,828,26),(14115,'2018-07-10 05:20:58',457300954660995114,828,22),(14116,'2018-07-10 05:21:34',201102155896193024,828,31),(14117,'2018-07-10 05:34:30',460761978135248896,829,21),(14118,'2018-07-10 05:34:30',185698541052755968,829,14),(14119,'2018-07-10 05:34:31',185698541052755968,829,11),(14120,'2018-07-10 05:34:33',185698541052755968,829,15),(14121,'2018-07-10 05:34:35',185698541052755968,829,8),(14122,'2018-07-10 05:34:36',460761978135248896,829,22),(14123,'2018-07-10 05:34:47',185698541052755968,829,7),(14124,'2018-07-10 05:34:49',185698541052755968,829,10),(14125,'2018-07-10 05:34:52',185698541052755968,829,11),(14126,'2018-07-10 05:34:56',457300954660995114,829,15),(14127,'2018-07-10 05:35:00',457300954660995114,829,20),(14128,'2018-07-10 05:35:03',457300954660995114,829,11),(14129,'2018-07-10 05:35:06',200340393596944384,829,14),(14130,'2018-07-10 05:35:08',457300954660995114,829,18),(14131,'2018-07-10 05:35:11',460761978135248896,829,14),(14132,'2018-07-10 05:35:11',200340393596944384,829,19),(14133,'2018-07-10 05:35:27',457300954660995114,829,13),(14134,'2018-07-10 05:35:37',454823752925052930,829,13),(14135,'2018-07-10 05:35:38',173468649884090368,829,16),(14136,'2018-07-10 05:35:38',454823752925052930,829,16),(14137,'2018-07-10 05:35:39',454823752925052930,829,14),(14138,'2018-07-10 06:46:30',465785309821534248,831,9),(14139,'2018-07-10 06:46:30',465785309821534248,831,7),(14140,'2018-07-10 06:46:30',173468649884090368,831,13),(14141,'2018-07-10 06:46:31',465785309821534248,831,12),(14142,'2018-07-10 06:46:31',465785309821534248,831,12),(14143,'2018-07-10 07:16:26',173468649884090368,832,17),(14144,'2018-07-10 07:16:30',173468649884090368,832,19),(14145,'2018-07-10 07:16:33',173468649884090368,832,16),(14146,'2018-07-10 07:16:36',173468649884090368,832,11),(14147,'2018-07-10 07:16:40',173468649884090368,832,10),(14148,'2018-07-10 07:30:15',438094660712267778,833,8),(14149,'2018-07-10 07:30:15',460761978135248896,833,16),(14150,'2018-07-10 07:30:19',438094660712267778,833,12),(14151,'2018-07-10 07:30:24',438094660712267778,833,20),(14152,'2018-07-10 07:30:25',173468649884090368,833,12),(14153,'2018-07-10 07:30:28',438094660712267778,833,15),(14154,'2018-07-10 08:21:54',224083099246395403,834,16),(14155,'2018-07-10 08:21:56',224083099246395403,834,25),(14156,'2018-07-10 08:21:56',163655183438446593,834,12),(14157,'2018-07-10 08:21:58',224083099246395403,834,21),(14158,'2018-07-10 08:21:58',173468649884090368,834,14),(14159,'2018-07-10 08:21:59',163655183438446593,834,13),(14160,'2018-07-10 08:22:01',163655183438446593,834,16),(14161,'2018-07-10 08:22:02',173468649884090368,834,13),(14162,'2018-07-10 08:29:32',224083099246395403,835,27),(14163,'2018-07-10 08:29:32',357981974931046400,835,21),(14164,'2018-07-10 08:29:33',438094660712267778,835,11),(14165,'2018-07-10 08:29:33',357981974931046400,835,29),(14166,'2018-07-10 08:29:33',357981974931046400,835,23),(14167,'2018-07-10 08:29:34',438094660712267778,835,14),(14168,'2018-07-10 08:29:34',357981974931046400,835,21),(14169,'2018-07-10 08:51:33',460761978135248896,836,26),(14170,'2018-07-10 08:51:33',357981974931046400,836,24),(14171,'2018-07-10 08:51:33',334750493085794304,836,14),(14172,'2018-07-10 08:51:33',224083099246395403,836,22),(14173,'2018-07-10 08:51:34',357981974931046400,836,21),(14174,'2018-07-10 08:51:34',457300954660995114,836,20),(14175,'2018-07-10 08:51:34',334750493085794304,836,7),(14176,'2018-07-10 08:51:35',460761978135248896,836,16),(14177,'2018-07-10 08:51:36',334750493085794304,836,8),(14178,'2018-07-10 08:51:36',457300954660995114,836,13),(14179,'2018-07-10 08:51:36',357981974931046400,836,17),(14180,'2018-07-10 08:51:37',334750493085794304,836,11),(14181,'2018-07-10 08:51:37',460761978135248896,836,29),(14182,'2018-07-10 08:51:38',357981974931046400,836,24),(14183,'2018-07-10 08:51:39',334750493085794304,836,6),(14184,'2018-07-10 08:51:39',457300954660995114,836,28),(14185,'2018-07-10 09:29:15',224083099246395403,837,20),(14186,'2018-07-10 09:29:16',457300954660995114,837,21),(14187,'2018-07-10 09:29:16',274301199841361920,837,17),(14188,'2018-07-10 09:29:16',274301199841361920,837,18),(14189,'2018-07-10 09:29:17',274301199841361920,837,20),(14190,'2018-07-10 09:29:17',274301199841361920,837,26),(14191,'2018-07-10 09:29:17',224083099246395403,837,16),(14192,'2018-07-10 09:29:17',274301199841361920,837,21),(14193,'2018-07-10 09:29:18',274301199841361920,837,15),(14194,'2018-07-10 09:29:18',460761978135248896,837,17),(14195,'2018-07-10 09:29:18',457300954660995114,837,22),(14196,'2018-07-10 09:29:18',274301199841361920,837,15),(14197,'2018-07-10 09:29:19',224083099246395403,837,31),(14198,'2018-07-10 09:29:20',460761978135248896,837,16),(14199,'2018-07-10 09:29:20',457300954660995114,837,17),(14200,'2018-07-10 09:29:22',460761978135248896,837,18),(14201,'2018-07-10 09:44:29',457300954660995114,838,27),(14202,'2018-07-10 09:44:29',460761978135248896,838,23),(14203,'2018-07-10 09:44:29',357981974931046400,838,17),(14204,'2018-07-10 09:44:30',357981974931046400,838,24),(14205,'2018-07-10 09:44:30',274301199841361920,838,26),(14206,'2018-07-10 09:44:30',357981974931046400,838,29),(14207,'2018-07-10 09:44:30',274301199841361920,838,24),(14208,'2018-07-10 09:44:31',357981974931046400,838,13),(14209,'2018-07-10 09:44:31',274301199841361920,838,19),(14210,'2018-07-10 09:44:31',457300954660995114,838,21),(14211,'2018-07-10 09:44:31',357981974931046400,838,16),(14212,'2018-07-10 09:44:31',274301199841361920,838,28),(14213,'2018-07-10 10:34:12',224083099246395403,839,16),(14214,'2018-07-10 10:34:14',224083099246395403,839,21),(14215,'2018-07-10 10:34:16',224083099246395403,839,12),(14216,'2018-07-10 10:34:17',224083099246395403,839,14),(14217,'2018-07-10 10:34:21',224083099246395403,839,27),(14218,'2018-07-10 10:34:31',224083099246395403,839,24),(14219,'2018-07-10 10:37:33',325565391478718464,839,20),(14220,'2018-07-10 10:37:34',325565391478718464,839,26),(14221,'2018-07-10 10:37:37',325565391478718464,839,16),(14222,'2018-07-10 10:37:40',325565391478718464,839,36),(14223,'2018-07-10 10:37:46',325565391478718464,839,20),(14224,'2018-07-10 10:37:52',325565391478718464,839,17),(14225,'2018-07-10 10:37:58',224083099246395403,839,16),(14226,'2018-07-10 10:38:02',325565391478718464,839,37),(14227,'2018-07-10 10:38:20',390938926761639936,839,11),(14228,'2018-07-10 10:38:23',390938926761639936,839,18),(14229,'2018-07-10 10:38:27',390938926761639936,839,14),(14230,'2018-07-10 10:38:32',390938926761639936,839,17),(14231,'2018-07-10 10:44:35',278115594879107074,840,16),(14232,'2018-07-10 10:44:36',278115594879107074,840,12),(14233,'2018-07-10 10:44:37',278115594879107074,840,15),(14234,'2018-07-10 10:44:39',278115594879107074,840,19),(14235,'2018-07-10 10:44:40',278115594879107074,840,13),(14236,'2018-07-10 10:44:42',278115594879107074,840,19),(14237,'2018-07-10 10:44:43',278115594879107074,840,14),(14238,'2018-07-10 10:44:44',464723134105255943,840,14),(14239,'2018-07-10 10:44:49',464723134105255943,840,8),(14240,'2018-07-10 10:44:51',464723134105255943,840,11),(14241,'2018-07-10 10:44:58',325565391478718464,840,31),(14242,'2018-07-10 10:44:59',464723134105255943,840,15),(14243,'2018-07-10 10:45:02',464723134105255943,840,11),(14244,'2018-07-10 10:45:09',464723134105255943,840,9),(14245,'2018-07-10 10:46:55',325565391478718464,840,28),(14246,'2018-07-10 10:46:57',325565391478718464,840,24),(14247,'2018-07-10 10:47:06',325565391478718464,840,19),(14248,'2018-07-10 10:47:26',334750493085794304,840,7),(14249,'2018-07-10 10:47:31',464723134105255943,840,7),(14250,'2018-07-10 10:47:33',334750493085794304,840,7),(14251,'2018-07-10 10:47:38',334750493085794304,840,15),(14252,'2018-07-10 11:14:41',274301199841361920,841,12),(14253,'2018-07-10 11:14:43',274301199841361920,841,23),(14254,'2018-07-10 11:14:44',274301199841361920,841,28),(14255,'2018-07-10 11:14:46',274301199841361920,841,21),(14256,'2018-07-10 11:14:49',118124619117887488,841,20),(14257,'2018-07-10 11:14:52',118124619117887488,841,18),(14258,'2018-07-10 11:15:04',390618369545601028,841,22),(14259,'2018-07-10 11:15:07',390618369545601028,841,27),(14260,'2018-07-10 11:15:18',390938926761639936,841,17),(14261,'2018-07-10 11:15:22',390618369545601028,841,19),(14262,'2018-07-10 11:16:41',390938926761639936,841,19),(14263,'2018-07-10 11:17:36',466180576357908480,841,13),(14264,'2018-07-10 11:17:45',466180576357908480,841,6),(14265,'2018-07-10 11:17:58',466180576357908480,841,14),(14266,'2018-07-10 11:19:38',185698541052755968,841,8),(14267,'2018-07-10 11:19:40',185698541052755968,841,15),(14268,'2018-07-10 11:19:48',185698541052755968,841,13),(14269,'2018-07-10 11:19:50',185698541052755968,841,12),(14270,'2018-07-10 11:19:52',185698541052755968,841,15),(14271,'2018-07-10 11:35:54',390938926761639936,842,25),(14272,'2018-07-10 11:35:56',390938926761639936,842,18),(14273,'2018-07-10 11:35:59',390938926761639936,842,22),(14274,'2018-07-10 12:06:01',390938926761639936,843,23),(14275,'2018-07-10 12:06:04',390938926761639936,843,18),(14276,'2018-07-10 12:06:06',390938926761639936,843,23),(14277,'2018-07-10 12:31:31',390938926761639936,844,18),(14278,'2018-07-10 12:31:32',390618369545601028,844,11),(14279,'2018-07-10 12:31:34',390938926761639936,844,23),(14280,'2018-07-10 12:31:34',390618369545601028,844,18),(14281,'2018-07-10 12:31:36',390938926761639936,844,23),(14282,'2018-07-10 12:31:39',390938926761639936,844,22),(14283,'2018-07-10 12:31:43',390938926761639936,844,25),(14284,'2018-07-10 13:20:07',224083099246395403,845,19),(14285,'2018-07-10 13:20:07',390618369545601028,845,26),(14286,'2018-07-10 13:20:07',150649616772235264,845,18),(14287,'2018-07-10 13:20:07',390618369545601028,845,16),(14288,'2018-07-10 13:20:07',150649616772235264,845,13),(14289,'2018-07-10 13:20:08',438094660712267778,845,17),(14290,'2018-07-10 13:20:08',390618369545601028,845,16),(14291,'2018-07-10 13:34:53',274301199841361920,846,17),(14292,'2018-07-10 13:34:53',224083099246395403,846,20),(14293,'2018-07-10 13:34:54',274301199841361920,846,19),(14294,'2018-07-10 13:34:54',274301199841361920,846,17),(14295,'2018-07-10 13:34:54',224083099246395403,846,19),(14296,'2018-07-10 13:34:54',274301199841361920,846,18),(14297,'2018-07-10 13:34:55',224083099246395403,846,32),(14298,'2018-07-10 13:34:55',274301199841361920,846,13),(14299,'2018-07-10 13:34:55',274301199841361920,846,15),(14300,'2018-07-10 13:34:56',224083099246395403,846,32),(14301,'2018-07-10 14:44:39',150649616772235264,848,8),(14302,'2018-07-10 14:44:40',224083099246395403,848,22),(14303,'2018-07-10 14:44:40',150649616772235264,848,14),(14304,'2018-07-10 15:03:25',150649616772235264,849,13),(14305,'2018-07-10 15:03:26',150649616772235264,849,18),(14306,'2018-07-10 15:03:28',150649616772235264,849,13),(14307,'2018-07-10 15:03:29',150649616772235264,849,18),(14308,'2018-07-10 15:03:30',150649616772235264,849,14),(14309,'2018-07-10 15:34:36',150649616772235264,850,12),(14310,'2018-07-10 15:34:36',390938926761639936,850,22),(14311,'2018-07-10 15:34:36',285930195125403650,850,10),(14312,'2018-07-10 15:34:38',150649616772235264,850,9),(14313,'2018-07-10 15:34:38',285930195125403650,850,11),(14314,'2018-07-10 15:34:38',390938926761639936,850,19),(14315,'2018-07-10 15:34:38',224083099246395403,850,29),(14316,'2018-07-10 16:36:37',150649616772235264,851,8),(14317,'2018-07-10 16:36:37',173468649884090368,851,10),(14318,'2018-07-10 16:36:37',150649616772235264,851,11),(14319,'2018-07-10 16:36:38',390938926761639936,851,15),(14320,'2018-07-10 16:36:38',173468649884090368,851,17),(14321,'2018-07-10 16:36:38',173468649884090368,851,19),(14322,'2018-07-10 16:36:38',150649616772235264,851,13),(14323,'2018-07-10 16:36:38',173468649884090368,851,18),(14324,'2018-07-10 16:36:38',173468649884090368,851,20),(14325,'2018-07-10 16:49:40',173468649884090368,852,8),(14326,'2018-07-10 16:49:40',224083099246395403,852,22),(14327,'2018-07-10 16:49:40',173468649884090368,852,20),(14328,'2018-07-10 16:49:41',173468649884090368,852,12),(14329,'2018-07-10 16:49:41',390938926761639936,852,14),(14330,'2018-07-10 16:49:41',224083099246395403,852,32),(14331,'2018-07-10 16:49:41',173468649884090368,852,12),(14332,'2018-07-10 16:49:42',224083099246395403,852,14),(14333,'2018-07-10 16:59:29',150649616772235264,853,18),(14334,'2018-07-10 16:59:29',390938926761639936,853,23),(14335,'2018-07-10 16:59:29',173468649884090368,853,10),(14336,'2018-07-10 16:59:30',390938926761639936,853,14),(14337,'2018-07-10 16:59:30',150649616772235264,853,9),(14338,'2018-07-10 16:59:30',173468649884090368,853,11),(14339,'2018-07-10 16:59:30',173468649884090368,853,15),(14340,'2018-07-10 16:59:30',150649616772235264,853,16),(14341,'2018-07-10 16:59:31',390938926761639936,853,12),(14342,'2018-07-10 16:59:31',150649616772235264,853,10),(14343,'2018-07-10 16:59:32',390938926761639936,853,14),(14344,'2018-07-10 16:59:32',150649616772235264,853,14),(14345,'2018-07-10 16:59:33',150649616772235264,853,20),(14346,'2018-07-10 16:59:34',173468649884090368,853,14),(14347,'2018-07-10 16:59:36',390938926761639936,853,15),(14348,'2018-07-10 16:59:42',173468649884090368,853,14),(14349,'2018-07-10 17:00:27',150649616772235264,853,16),(14350,'2018-07-10 17:00:43',224083099246395403,853,17),(14351,'2018-07-10 17:00:47',224083099246395403,853,18),(14352,'2018-07-10 17:00:52',224083099246395403,853,29),(14353,'2018-07-10 17:22:11',224083099246395403,854,19),(14354,'2018-07-10 17:22:13',224083099246395403,854,25),(14355,'2018-07-10 17:22:14',224083099246395403,854,13),(14356,'2018-07-10 17:22:16',224083099246395403,854,21),(14357,'2018-07-10 17:22:18',224083099246395403,854,24),(14358,'2018-07-10 17:22:33',224083099246395403,854,28),(14359,'2018-07-10 17:25:29',173468649884090368,854,13),(14360,'2018-07-10 17:25:37',173468649884090368,854,17),(14361,'2018-07-10 17:25:41',173468649884090368,854,13),(14362,'2018-07-10 17:25:43',173468649884090368,854,19),(14363,'2018-07-10 17:25:53',173468649884090368,854,15),(14364,'2018-07-10 17:36:33',390938926761639936,855,23),(14365,'2018-07-10 17:36:33',173468649884090368,855,14),(14366,'2018-07-10 17:36:38',173468649884090368,855,17),(14367,'2018-07-10 18:17:13',201102155896193024,856,28),(14368,'2018-07-10 18:17:13',390938926761639936,856,18),(14369,'2018-07-10 18:17:15',201102155896193024,856,27),(14370,'2018-07-10 18:17:17',390938926761639936,856,12),(14371,'2018-07-10 18:17:18',201102155896193024,856,21),(14372,'2018-07-10 18:35:07',457289865516548098,857,6),(14373,'2018-07-10 18:35:13',457289865516548098,857,11),(14374,'2018-07-10 18:35:26',173468649884090368,857,21),(14375,'2018-07-10 18:35:29',457289865516548098,857,14),(14376,'2018-07-10 18:35:31',457289865516548098,857,11),(14377,'2018-07-10 18:35:42',173468649884090368,857,15),(14378,'2018-07-10 18:36:20',173468649884090368,857,10),(14379,'2018-07-10 18:36:24',173468649884090368,857,18),(14380,'2018-07-10 18:36:26',173468649884090368,857,21),(14381,'2018-07-10 18:50:52',191198987490033664,858,8),(14382,'2018-07-10 18:50:58',191198987490033664,858,9),(14383,'2018-07-10 18:51:06',191198987490033664,858,14),(14384,'2018-07-10 18:51:29',173468649884090368,858,11),(14385,'2018-07-10 18:51:38',173468649884090368,858,9),(14386,'2018-07-10 18:51:41',191198987490033664,858,10),(14387,'2018-07-10 18:51:42',173468649884090368,858,20),(14388,'2018-07-10 18:51:48',191198987490033664,858,8),(14389,'2018-07-10 18:51:51',274301199841361920,858,27),(14390,'2018-07-10 18:51:52',173468649884090368,858,18),(14391,'2018-07-10 18:51:55',173468649884090368,858,17),(14392,'2018-07-10 18:52:08',274301199841361920,858,23),(14393,'2018-07-10 19:31:21',457289865516548098,859,7),(14394,'2018-07-10 19:31:24',173468649884090368,859,10),(14395,'2018-07-10 19:31:28',457289865516548098,859,11),(14396,'2018-07-10 19:31:33',457289865516548098,859,15),(14397,'2018-07-10 19:31:36',457289865516548098,859,10),(14398,'2018-07-10 19:31:49',460761978135248896,859,15),(14399,'2018-07-10 19:31:55',173468649884090368,859,15),(14400,'2018-07-10 19:32:01',173468649884090368,859,17),(14401,'2018-07-10 19:32:07',173468649884090368,859,19),(14402,'2018-07-10 19:32:08',390938926761639936,859,25),(14403,'2018-07-10 19:32:11',390938926761639936,859,22),(14404,'2018-07-10 19:32:11',457289865516548098,859,14),(14405,'2018-07-10 19:48:14',142612779377885185,860,11),(14406,'2018-07-10 19:48:16',142612779377885185,860,11),(14407,'2018-07-10 19:48:18',142612779377885185,860,9),(14408,'2018-07-10 19:48:19',142612779377885185,860,15),(14409,'2018-07-10 19:48:19',191198987490033664,860,18),(14410,'2018-07-10 19:48:21',142612779377885185,860,10),(14411,'2018-07-10 19:48:23',191198987490033664,860,13),(14412,'2018-07-10 19:48:25',142612779377885185,860,20),(14413,'2018-07-10 19:48:27',142612779377885185,860,13),(14414,'2018-07-10 19:48:29',173468649884090368,860,21),(14415,'2018-07-10 19:48:29',142612779377885185,860,13),(14416,'2018-07-10 19:48:29',191198987490033664,860,19),(14417,'2018-07-10 19:48:31',142612779377885185,860,21),(14418,'2018-07-10 19:48:37',191198987490033664,860,8),(14419,'2018-07-10 20:34:27',150649616772235264,861,18),(14420,'2018-07-10 20:34:27',390938926761639936,861,11),(14421,'2018-07-10 20:34:27',150649616772235264,861,19),(14422,'2018-07-10 20:34:29',150649616772235264,861,14),(14423,'2018-07-10 20:34:30',150649616772235264,861,15),(14424,'2018-07-10 20:34:30',390938926761639936,861,26),(14425,'2018-07-10 20:34:31',150649616772235264,861,21),(14426,'2018-07-10 20:34:33',390938926761639936,861,23),(14427,'2018-07-10 20:34:33',150649616772235264,861,19),(14428,'2018-07-10 20:34:34',118124619117887488,861,24),(14429,'2018-07-10 20:34:35',390938926761639936,861,18),(14430,'2018-07-10 21:03:02',274301199841361920,862,21),(14431,'2018-07-10 21:03:02',150649616772235264,862,20),(14432,'2018-07-10 21:03:03',274301199841361920,862,12),(14433,'2018-07-10 21:03:03',150649616772235264,862,15),(14434,'2018-07-10 21:03:04',274301199841361920,862,16),(14435,'2018-07-10 21:03:05',274301199841361920,862,28),(14436,'2018-07-10 21:03:05',150649616772235264,862,15),(14437,'2018-07-10 21:03:06',118124619117887488,862,17),(14438,'2018-07-10 21:03:06',150649616772235264,862,18),(14439,'2018-07-10 21:03:08',150649616772235264,862,12),(14440,'2018-07-10 21:03:09',460761978135248896,862,28),(14441,'2018-07-10 21:03:10',390938926761639936,862,16),(14442,'2018-07-10 21:03:10',150649616772235264,862,20),(14443,'2018-07-10 21:03:11',274301199841361920,862,22),(14444,'2018-07-10 21:32:02',150649616772235264,863,17),(14445,'2018-07-10 21:32:02',274301199841361920,863,26),(14446,'2018-07-10 21:32:03',457300954660995114,863,13),(14447,'2018-07-10 21:32:03',150649616772235264,863,15),(14448,'2018-07-10 21:32:03',274301199841361920,863,19),(14449,'2018-07-10 21:32:03',460761978135248896,863,19),(14450,'2018-07-10 21:32:03',390938926761639936,863,18),(14451,'2018-07-10 21:32:04',274301199841361920,863,14),(14452,'2018-07-10 21:32:04',150649616772235264,863,8),(14453,'2018-07-10 21:32:04',274301199841361920,863,20),(14454,'2018-07-10 21:32:05',457300954660995114,863,12),(14455,'2018-07-10 21:32:05',460761978135248896,863,19),(14456,'2018-07-10 21:32:05',274301199841361920,863,13),(14457,'2018-07-10 21:32:05',150649616772235264,863,20),(14458,'2018-07-10 21:32:06',118124619117887488,863,21),(14459,'2018-07-10 21:32:07',150649616772235264,863,15),(14460,'2018-07-10 21:32:07',457300954660995114,863,22),(14461,'2018-07-10 21:32:08',460761978135248896,863,25),(14462,'2018-07-10 21:32:08',390938926761639936,863,23),(14463,'2018-07-10 21:32:08',118124619117887488,863,11),(14464,'2018-07-10 21:32:08',150649616772235264,863,16),(14465,'2018-07-10 21:32:09',457300954660995114,863,11),(14466,'2018-07-10 21:32:10',460761978135248896,863,19),(14467,'2018-07-10 21:47:33',173468649884090368,864,12),(14468,'2018-07-10 21:47:34',274301199841361920,864,24),(14469,'2018-07-10 21:47:35',460761978135248896,864,25),(14470,'2018-07-10 21:47:35',118124619117887488,864,17),(14471,'2018-07-10 21:47:37',173468649884090368,864,15),(14472,'2018-07-10 21:47:39',460761978135248896,864,19),(14473,'2018-07-10 21:47:39',218498162745278474,864,21),(14474,'2018-07-10 21:47:44',460761978135248896,864,20),(14475,'2018-07-10 21:47:50',173468649884090368,864,9),(14476,'2018-07-10 21:47:50',118124619117887488,864,25),(14477,'2018-07-10 21:47:50',460761978135248896,864,26),(14478,'2018-07-10 21:47:55',218498162745278474,864,24),(14479,'2018-07-10 21:47:58',218498162745278474,864,20),(14480,'2018-07-10 21:47:59',457300954660995114,864,26),(14481,'2018-07-10 21:48:00',460761978135248896,864,16),(14482,'2018-07-10 21:48:03',218498162745278474,864,15),(14483,'2018-07-10 21:48:04',457300954660995114,864,14),(14484,'2018-07-10 21:48:09',218498162745278474,864,11),(14485,'2018-07-10 21:48:20',218498162745278474,864,20),(14486,'2018-07-10 21:48:29',244191245390315520,864,13),(14487,'2018-07-10 21:48:31',457300954660995114,864,21),(14488,'2018-07-10 21:48:32',278241670540034048,864,17),(14489,'2018-07-10 21:48:35',278241670540034048,864,23),(14490,'2018-07-10 21:48:39',278241670540034048,864,23),(14491,'2018-07-10 22:06:14',201102155896193024,865,22),(14492,'2018-07-10 22:06:16',201102155896193024,865,31),(14493,'2018-07-10 22:06:18',201102155896193024,865,12),(14494,'2018-07-10 22:06:24',201102155896193024,865,14),(14495,'2018-07-10 22:06:25',201102155896193024,865,22),(14496,'2018-07-10 22:06:31',201102155896193024,865,18),(14497,'2018-07-10 22:06:34',459876383431327746,865,23),(14498,'2018-07-10 22:06:35',459876383431327746,865,16),(14499,'2018-07-10 22:06:36',459876383431327746,865,11),(14500,'2018-07-10 22:06:41',459876383431327746,865,14),(14501,'2018-07-10 22:06:41',459876383431327746,865,12),(14502,'2018-07-10 22:06:44',173468649884090368,865,14),(14503,'2018-07-10 22:06:55',459879057295671296,865,8),(14504,'2018-07-10 22:06:56',459879057295671296,865,19),(14505,'2018-07-10 22:06:56',459879057295671296,865,11),(14506,'2018-07-10 22:07:01',459879057295671296,865,12),(14507,'2018-07-10 22:07:10',459873273308643328,865,24),(14508,'2018-07-10 22:07:10',459873273308643328,865,17),(14509,'2018-07-10 22:07:11',459873273308643328,865,24),(14510,'2018-07-10 22:07:55',459881667104997376,865,12),(14511,'2018-07-10 22:07:56',285930195125403650,865,10),(14512,'2018-07-10 22:07:56',459881667104997376,865,15),(14513,'2018-07-10 22:07:57',459881667104997376,865,18),(14514,'2018-07-10 22:07:59',459881667104997376,865,19),(14515,'2018-07-10 22:08:01',285930195125403650,865,13),(14516,'2018-07-10 22:08:03',285930195125403650,865,13),(14517,'2018-07-10 22:08:06',285930195125403650,865,8),(14518,'2018-07-10 22:46:02',211232684209340426,866,26),(14519,'2018-07-10 22:46:03',211232684209340426,866,16),(14520,'2018-07-10 22:46:04',211232684209340426,866,26),(14521,'2018-07-10 22:46:06',211232684209340426,866,29),(14522,'2018-07-10 22:46:07',211232684209340426,866,11),(14523,'2018-07-10 22:46:14',118124619117887488,866,17),(14524,'2018-07-10 22:46:14',185698541052755968,866,15),(14525,'2018-07-10 22:46:16',185698541052755968,866,11),(14526,'2018-07-10 22:46:18',185698541052755968,866,8),(14527,'2018-07-10 22:46:20',185698541052755968,866,10),(14528,'2018-07-10 22:46:22',185698541052755968,866,15),(14529,'2018-07-10 22:46:24',185698541052755968,866,11),(14530,'2018-07-10 22:46:26',185698541052755968,866,7),(14531,'2018-07-10 22:46:28',185698541052755968,866,15),(14532,'2018-07-10 22:47:12',274301199841361920,866,16),(14533,'2018-07-10 22:47:26',211232684209340426,866,19),(14534,'2018-07-10 22:47:28',211232684209340426,866,18),(14535,'2018-07-10 22:47:31',211232684209340426,866,17),(14536,'2018-07-10 22:47:41',211232684209340426,866,19),(14537,'2018-07-10 22:49:14',211232684209340426,866,14),(14538,'2018-07-10 22:49:16',211232684209340426,866,23),(14539,'2018-07-10 22:49:24',457300954660995114,866,14),(14540,'2018-07-10 22:49:26',211232684209340426,866,26),(14541,'2018-07-10 22:49:29',457300954660995114,866,15),(14542,'2018-07-10 22:49:32',201102155896193024,866,21),(14543,'2018-07-10 22:49:34',201102155896193024,866,29),(14544,'2018-07-10 23:14:18',285930195125403650,867,13),(14545,'2018-07-10 23:14:24',285930195125403650,867,19),(14546,'2018-07-10 23:14:27',285930195125403650,867,13),(14547,'2018-07-10 23:14:28',460761978135248896,867,18),(14548,'2018-07-10 23:14:36',460761978135248896,867,18),(14549,'2018-07-10 23:14:41',460761978135248896,867,11),(14550,'2018-07-10 23:14:46',460761978135248896,867,13),(14551,'2018-07-10 23:14:52',285930195125403650,867,15),(14552,'2018-07-10 23:15:02',460761978135248896,867,18),(14553,'2018-07-10 23:15:22',285930195125403650,867,17),(14554,'2018-07-10 23:15:26',285930195125403650,867,17),(14555,'2018-07-10 23:18:04',118124619117887488,867,24),(14556,'2018-07-10 23:50:26',465785309821534248,868,8),(14557,'2018-07-10 23:50:27',465785309821534248,868,6),(14558,'2018-07-10 23:50:27',118124619117887488,868,20),(14559,'2018-07-11 00:30:17',370495051815714816,869,10),(14560,'2018-07-11 00:30:17',370495051815714816,869,13),(14561,'2018-07-11 00:30:18',370495051815714816,869,15),(14562,'2018-07-11 00:30:19',370495051815714816,869,11),(14563,'2018-07-11 00:30:20',118124619117887488,869,9),(14564,'2018-07-11 00:30:20',370495051815714816,869,17),(14565,'2018-07-11 00:30:21',370495051815714816,869,11),(14566,'2018-07-11 00:30:21',118124619117887488,869,11),(14567,'2018-07-11 01:14:11',211232684209340426,870,23),(14568,'2018-07-11 01:14:12',370495051815714816,870,18),(14569,'2018-07-11 01:14:12',211232684209340426,870,29),(14570,'2018-07-11 01:14:12',438094660712267778,870,20),(14571,'2018-07-11 01:14:12',211232684209340426,870,29),(14572,'2018-07-11 01:14:12',211232684209340426,870,12),(14573,'2018-07-11 01:14:12',370495051815714816,870,18),(14574,'2018-07-11 01:29:01',438094660712267778,871,17),(14575,'2018-07-11 01:29:02',438094660712267778,871,12),(14576,'2018-07-11 01:29:02',200340393596944384,871,10),(14577,'2018-07-11 01:29:02',200340393596944384,871,11),(14578,'2018-07-11 01:29:03',200340393596944384,871,19),(14579,'2018-07-11 01:29:03',438094660712267778,871,13),(14580,'2018-07-11 01:29:04',200340393596944384,871,23),(14581,'2018-07-11 01:29:04',457289865516548098,871,12),(14582,'2018-07-11 01:29:04',438094660712267778,871,18),(14583,'2018-07-11 01:29:04',200340393596944384,871,18),(14584,'2018-07-11 01:47:33',454823752925052930,872,13),(14585,'2018-07-11 01:47:34',457300954660995114,872,15),(14586,'2018-07-11 01:47:34',459873273308643328,872,13),(14587,'2018-07-11 01:47:34',370495051815714816,872,10),(14588,'2018-07-11 01:47:34',454823752925052930,872,13),(14589,'2018-07-11 01:47:34',459873273308643328,872,15),(14590,'2018-07-11 01:47:34',454823752925052930,872,9),(14591,'2018-07-11 01:47:35',459873273308643328,872,12),(14592,'2018-07-11 01:47:35',370495051815714816,872,16),(14593,'2018-07-11 01:47:35',454823752925052930,872,16),(14594,'2018-07-11 01:47:35',459873273308643328,872,18),(14595,'2018-07-11 02:16:16',433759248800022532,873,16),(14596,'2018-07-11 02:16:16',370495051815714816,873,11),(14597,'2018-07-11 02:16:17',433759248800022532,873,18),(14598,'2018-07-11 02:16:17',370495051815714816,873,16),(14599,'2018-07-11 02:16:17',457300954660995114,873,22),(14600,'2018-07-11 02:16:18',460761978135248896,873,24),(14601,'2018-07-11 02:16:18',370495051815714816,873,13),(14602,'2018-07-11 02:16:18',433759248800022532,873,13),(14603,'2018-07-11 02:16:19',370495051815714816,873,12),(14604,'2018-07-11 02:16:19',433759248800022532,873,22),(14605,'2018-07-11 02:16:19',457300954660995114,873,18),(14606,'2018-07-11 02:16:19',370495051815714816,873,9),(14607,'2018-07-11 02:16:19',433759248800022532,873,14),(14608,'2018-07-11 02:16:20',460761978135248896,873,20),(14609,'2018-07-11 02:16:20',370495051815714816,873,19),(14610,'2018-07-11 02:16:20',433759248800022532,873,15),(14611,'2018-07-11 02:16:20',433759248800022532,873,13),(14612,'2018-07-11 02:16:21',433759248800022532,873,19),(14613,'2018-07-11 02:16:21',370495051815714816,873,13),(14614,'2018-07-11 02:31:08',457300954660995114,874,19),(14615,'2018-07-11 02:31:08',370495051815714816,874,16),(14616,'2018-07-11 02:31:08',200340393596944384,874,26),(14617,'2018-07-11 02:31:08',460761978135248896,874,28),(14618,'2018-07-11 02:31:08',200340393596944384,874,23),(14619,'2018-07-11 02:31:09',200340393596944384,874,14),(14620,'2018-07-11 02:31:09',200340393596944384,874,24),(14621,'2018-07-11 02:31:09',200340393596944384,874,22),(14622,'2018-07-11 02:31:10',460761978135248896,874,15),(14623,'2018-07-11 02:31:10',370495051815714816,874,16),(14624,'2018-07-11 02:31:10',200340393596944384,874,15),(14625,'2018-07-11 02:31:10',200340393596944384,874,16),(14626,'2018-07-11 02:31:11',200340393596944384,874,18),(14627,'2018-07-11 02:31:12',370495051815714816,874,17),(14628,'2018-07-11 02:31:12',460761978135248896,874,17),(14629,'2018-07-11 02:48:02',454823752925052930,875,13),(14630,'2018-07-11 02:48:05',454823752925052930,875,19),(14631,'2018-07-11 02:48:05',218498162745278474,875,20),(14632,'2018-07-11 02:48:05',218498162745278474,875,20),(14633,'2018-07-11 02:48:06',454823752925052930,875,19),(14634,'2018-07-11 02:48:06',218498162745278474,875,14),(14635,'2018-07-11 02:48:07',218498162745278474,875,18),(14636,'2018-07-11 02:48:07',454823752925052930,875,12),(14637,'2018-07-11 02:48:07',218498162745278474,875,18),(14638,'2018-07-11 02:48:07',218498162745278474,875,22),(14639,'2018-07-11 02:48:08',454823752925052930,875,21),(14640,'2018-07-11 02:48:08',454823752925052930,875,20),(14641,'2018-07-11 02:48:09',454823752925052930,875,14),(14642,'2018-07-11 02:48:15',438094660712267778,875,19),(14643,'2018-07-11 02:48:17',433759248800022532,875,22),(14644,'2018-07-11 02:48:18',433759248800022532,875,10),(14645,'2018-07-11 02:48:19',433759248800022532,875,13),(14646,'2018-07-11 02:48:19',218498162745278474,875,20),(14647,'2018-07-11 02:48:20',433759248800022532,875,14),(14648,'2018-07-11 03:02:10',457300954660995114,876,18),(14649,'2018-07-11 03:02:10',460761978135248896,876,24),(14650,'2018-07-11 03:02:10',438094660712267778,876,9),(14651,'2018-07-11 03:02:11',218498162745278474,876,28),(14652,'2018-07-11 03:02:11',438094660712267778,876,14),(14653,'2018-07-11 03:02:12',460761978135248896,876,20),(14654,'2018-07-11 03:02:12',438094660712267778,876,18),(14655,'2018-07-11 03:02:12',218498162745278474,876,21),(14656,'2018-07-11 03:02:14',438094660712267778,876,9),(14657,'2018-07-11 03:02:15',460761978135248896,876,16),(14658,'2018-07-11 03:02:15',438094660712267778,876,8),(14659,'2018-07-11 03:02:17',460761978135248896,876,20),(14660,'2018-07-11 03:02:17',438094660712267778,876,8),(14661,'2018-07-11 03:02:19',460761978135248896,876,23),(14662,'2018-07-11 03:02:21',457300954660995114,876,25),(14663,'2018-07-11 03:02:23',460761978135248896,876,22),(14664,'2018-07-11 03:19:14',457300954660995114,877,24),(14665,'2018-07-11 03:19:14',460761978135248896,877,27),(14666,'2018-07-11 03:19:16',457300954660995114,877,13),(14667,'2018-07-11 03:19:18',460761978135248896,877,26),(14668,'2018-07-11 03:19:21',457300954660995114,877,29),(14669,'2018-07-11 03:19:22',460761978135248896,877,12),(14670,'2018-07-11 03:19:26',457300954660995114,877,13),(14671,'2018-07-11 03:19:28',460761978135248896,877,21),(14672,'2018-07-11 03:19:36',457300954660995114,877,13),(14673,'2018-07-11 03:19:45',460761978135248896,877,19),(14674,'2018-07-11 03:19:50',460761978135248896,877,27),(14675,'2018-07-11 03:19:55',457300954660995114,877,18),(14676,'2018-07-11 03:20:09',457300954660995114,877,18),(14677,'2018-07-11 03:20:14',457300954660995114,877,25),(14678,'2018-07-11 03:20:32',457300954660995114,877,19),(14679,'2018-07-11 03:23:16',218458041790496768,877,9),(14680,'2018-07-11 03:23:19',218458041790496768,877,7),(14681,'2018-07-11 03:23:22',218458041790496768,877,12),(14682,'2018-07-11 03:23:25',218458041790496768,877,15),(14683,'2018-07-11 03:23:28',218458041790496768,877,15),(14684,'2018-07-11 03:23:37',218458041790496768,877,10),(14685,'2018-07-11 03:23:41',218458041790496768,877,15),(14686,'2018-07-11 03:24:44',460761978135248896,877,16),(14687,'2018-07-11 03:24:47',457300954660995114,877,22),(14688,'2018-07-11 04:17:50',325565391478718464,878,18),(14689,'2018-07-11 04:17:54',325565391478718464,878,23),(14690,'2018-07-11 04:17:59',325565391478718464,878,32),(14691,'2018-07-11 04:18:05',325565391478718464,878,26),(14692,'2018-07-11 04:18:10',460761978135248896,878,20),(14693,'2018-07-11 04:18:16',325565391478718464,878,38),(14694,'2018-07-11 04:18:20',325565391478718464,878,26),(14695,'2018-07-11 04:18:44',325565391478718464,878,23),(14696,'2018-07-11 04:32:31',218498162745278474,879,15),(14697,'2018-07-11 04:32:32',218498162745278474,879,21),(14698,'2018-07-11 04:32:32',218498162745278474,879,24),(14699,'2018-07-11 05:20:38',465785309821534248,880,14),(14700,'2018-07-11 05:20:38',460761978135248896,880,27),(14701,'2018-07-11 05:20:38',465785309821534248,880,10),(14702,'2018-07-11 05:20:39',465785309821534248,880,16),(14703,'2018-07-11 05:30:33',460761978135248896,881,18),(14704,'2018-07-11 05:30:34',173468649884090368,881,15),(14705,'2018-07-11 05:30:35',460761978135248896,881,13),(14706,'2018-07-11 05:30:36',173468649884090368,881,16),(14707,'2018-07-11 05:30:37',460761978135248896,881,14),(14708,'2018-07-11 05:30:39',173468649884090368,881,11),(14709,'2018-07-11 05:30:40',460761978135248896,881,20),(14710,'2018-07-11 05:30:40',173468649884090368,881,22),(14711,'2018-07-11 05:30:43',173468649884090368,881,17),(14712,'2018-07-11 06:29:59',224083099246395403,882,27),(14713,'2018-07-11 06:29:59',224083099246395403,882,13),(14714,'2018-07-11 06:30:00',173468649884090368,882,12),(14715,'2018-07-11 06:30:00',224083099246395403,882,17),(14716,'2018-07-11 06:30:04',224083099246395403,882,12),(14717,'2018-07-11 06:30:08',173468649884090368,882,13),(14718,'2018-07-11 06:30:10',224083099246395403,882,12),(14719,'2018-07-11 06:30:14',173468649884090368,882,8),(14720,'2018-07-11 06:30:20',173468649884090368,882,20),(14721,'2018-07-11 06:30:26',173468649884090368,882,16),(14722,'2018-07-11 06:30:29',460761978135248896,882,25),(14723,'2018-07-11 06:30:31',457300954660995114,882,26),(14724,'2018-07-11 07:02:21',278115594879107074,883,8),(14725,'2018-07-11 07:02:21',224083099246395403,883,12),(14726,'2018-07-11 07:02:21',457300954660995114,883,15),(14727,'2018-07-11 07:02:21',173468649884090368,883,10),(14728,'2018-07-11 07:02:22',278115594879107074,883,15),(14729,'2018-07-11 07:02:22',460761978135248896,883,14),(14730,'2018-07-11 07:02:22',224083099246395403,883,31),(14731,'2018-07-11 07:02:22',278115594879107074,883,16),(14732,'2018-07-11 07:02:23',457300954660995114,883,26),(14733,'2018-07-11 07:02:23',278115594879107074,883,19),(14734,'2018-07-11 07:02:23',224083099246395403,883,21),(14735,'2018-07-11 07:02:24',460761978135248896,883,16),(14736,'2018-07-11 07:02:24',278115594879107074,883,10),(14737,'2018-07-11 07:02:25',224083099246395403,883,12),(14738,'2018-07-11 07:02:26',460761978135248896,883,16),(14739,'2018-07-11 07:02:26',224083099246395403,883,34),(14740,'2018-07-11 07:16:15',224083099246395403,884,15),(14741,'2018-07-11 07:16:15',460761978135248896,884,28),(14742,'2018-07-11 07:16:17',173468649884090368,884,17),(14743,'2018-07-11 07:16:18',224083099246395403,884,14),(14744,'2018-07-11 07:16:19',460761978135248896,884,26),(14745,'2018-07-11 07:16:22',173468649884090368,884,15),(14746,'2018-07-11 07:16:24',224083099246395403,884,13),(14747,'2018-07-11 07:16:25',460761978135248896,884,19),(14748,'2018-07-11 07:16:26',224083099246395403,884,14),(14749,'2018-07-11 07:16:28',173468649884090368,884,18),(14750,'2018-07-11 07:16:29',460761978135248896,884,20),(14751,'2018-07-11 07:16:31',224083099246395403,884,23),(14752,'2018-07-11 07:16:36',173468649884090368,884,15),(14753,'2018-07-11 07:16:42',460761978135248896,884,21),(14754,'2018-07-11 07:16:42',173468649884090368,884,10),(14755,'2018-07-11 07:16:47',460761978135248896,884,28),(14756,'2018-07-11 07:35:33',325565391478718464,885,32),(14757,'2018-07-11 07:35:34',325565391478718464,885,32),(14758,'2018-07-11 07:35:35',457300954660995114,885,13),(14759,'2018-07-11 07:35:35',325565391478718464,885,15),(14760,'2018-07-11 07:35:35',460761978135248896,885,24),(14761,'2018-07-11 07:35:36',325565391478718464,885,23),(14762,'2018-07-11 07:35:37',325565391478718464,885,18),(14763,'2018-07-11 07:35:37',457300954660995114,885,15),(14764,'2018-07-11 07:35:37',460761978135248896,885,20),(14765,'2018-07-11 07:35:38',325565391478718464,885,29),(14766,'2018-07-11 07:35:39',457300954660995114,885,18),(14767,'2018-07-11 07:35:40',460761978135248896,885,23),(14768,'2018-07-11 08:49:21',457300954660995114,886,16),(14769,'2018-07-11 08:49:21',274301199841361920,886,21),(14770,'2018-07-11 08:49:21',357981974931046400,886,35),(14771,'2018-07-11 08:49:22',274301199841361920,886,18),(14772,'2018-07-11 08:49:22',274301199841361920,886,29),(14773,'2018-07-11 08:49:22',274301199841361920,886,21),(14774,'2018-07-11 08:49:22',274301199841361920,886,24),(14775,'2018-07-11 08:49:23',274301199841361920,886,20),(14776,'2018-07-11 08:49:23',274301199841361920,886,20),(14777,'2018-07-11 08:49:24',457300954660995114,886,19),(14778,'2018-07-11 08:49:24',224083099246395403,886,21),(14779,'2018-07-11 08:49:25',224083099246395403,886,18),(14780,'2018-07-11 08:49:26',457300954660995114,886,12),(14781,'2018-07-11 08:49:28',457300954660995114,886,25),(14782,'2018-07-11 08:49:29',460761978135248896,886,26),(14783,'2018-07-11 09:03:34',390618369545601028,887,12),(14784,'2018-07-11 09:03:34',457300954660995114,887,21),(14785,'2018-07-11 09:03:34',357981974931046400,887,20),(14786,'2018-07-11 09:03:34',390618369545601028,887,24),(14787,'2018-07-11 09:03:35',460761978135248896,887,20),(14788,'2018-07-11 09:03:35',274301199841361920,887,27),(14789,'2018-07-11 09:03:35',390618369545601028,887,19),(14790,'2018-07-11 09:03:35',274301199841361920,887,14),(14791,'2018-07-11 09:03:36',457300954660995114,887,28),(14792,'2018-07-11 09:03:36',390618369545601028,887,25),(14793,'2018-07-11 09:03:36',438094660712267778,887,9),(14794,'2018-07-11 09:03:36',390618369545601028,887,24),(14795,'2018-07-11 09:03:37',460761978135248896,887,14),(14796,'2018-07-11 09:03:37',390618369545601028,887,19),(14797,'2018-07-11 09:03:38',457300954660995114,887,27),(14798,'2018-07-11 09:03:38',438094660712267778,887,21),(14799,'2018-07-11 09:18:21',457300954660995114,888,11),(14800,'2018-07-11 09:18:22',460761978135248896,888,16),(14801,'2018-07-11 09:18:22',438094660712267778,888,21),(14802,'2018-07-11 09:18:24',460761978135248896,888,12),(14803,'2018-07-11 09:18:25',457300954660995114,888,11),(14804,'2018-07-11 09:18:25',460761978135248896,888,25),(14805,'2018-07-11 09:18:27',460761978135248896,888,21),(14806,'2018-07-11 09:18:29',438094660712267778,888,8),(14807,'2018-07-11 09:18:29',460761978135248896,888,11),(14808,'2018-07-11 09:18:31',438094660712267778,888,22),(14809,'2018-07-11 09:18:32',460761978135248896,888,27),(14810,'2018-07-11 09:18:33',438094660712267778,888,15),(14811,'2018-07-11 09:18:35',438094660712267778,888,15),(14812,'2018-07-11 09:18:37',460761978135248896,888,13),(14813,'2018-07-11 09:18:42',460761978135248896,888,17),(14814,'2018-07-11 09:18:46',438094660712267778,888,20),(14815,'2018-07-11 09:18:48',438094660712267778,888,19),(14816,'2018-07-11 09:18:53',457300954660995114,888,13),(14817,'2018-07-11 09:19:31',224083099246395403,888,29),(14818,'2018-07-11 09:20:41',224083099246395403,888,33),(14819,'2018-07-11 09:20:44',224083099246395403,888,21),(14820,'2018-07-11 09:20:56',224083099246395403,888,23),(14821,'2018-07-11 09:21:16',460761978135248896,888,29),(14822,'2018-07-11 09:21:21',460761978135248896,888,11),(14823,'2018-07-11 09:21:24',457300954660995114,888,25),(14824,'2018-07-11 09:34:03',357981974931046400,889,18),(14825,'2018-07-11 09:34:07',150649616772235264,889,9),(14826,'2018-07-11 09:34:13',224083099246395403,889,27),(14827,'2018-07-11 09:34:20',460761978135248896,889,16),(14828,'2018-07-11 09:34:24',357981974931046400,889,33),(14829,'2018-07-11 09:34:29',357981974931046400,889,29),(14830,'2018-07-11 09:34:33',460761978135248896,889,18),(14831,'2018-07-11 09:35:07',357981974931046400,889,15),(14832,'2018-07-11 09:35:12',357981974931046400,889,19),(14833,'2018-07-11 09:35:16',357981974931046400,889,34),(14834,'2018-07-11 09:35:20',357981974931046400,889,27),(14835,'2018-07-11 09:35:24',357981974931046400,889,29),(14836,'2018-07-11 09:38:25',357981974931046400,889,25),(14837,'2018-07-11 09:38:28',357981974931046400,889,27),(14838,'2018-07-11 09:39:01',325565391478718464,889,37),(14839,'2018-07-11 09:39:04',325565391478718464,889,26),(14840,'2018-07-11 09:39:23',325565391478718464,889,15),(14841,'2018-07-11 09:39:26',325565391478718464,889,16),(14842,'2018-07-11 09:39:32',191198987490033664,889,9),(14843,'2018-07-11 09:39:35',191198987490033664,889,17),(14844,'2018-07-11 09:39:44',191198987490033664,889,11),(14845,'2018-07-11 10:01:49',357981974931046400,890,17),(14846,'2018-07-11 10:01:49',460761978135248896,890,15),(14847,'2018-07-11 10:01:51',460761978135248896,890,21),(14848,'2018-07-11 10:17:50',150649616772235264,891,12),(14849,'2018-07-11 10:17:50',224083099246395403,891,25),(14850,'2018-07-11 10:17:51',224083099246395403,891,29),(14851,'2018-07-11 10:17:52',224083099246395403,891,34),(14852,'2018-07-11 11:04:34',357981974931046400,892,14),(14853,'2018-07-11 11:04:34',224083099246395403,892,28),(14854,'2018-07-11 11:04:35',150649616772235264,892,15),(14855,'2018-07-11 11:04:35',224083099246395403,892,24),(14856,'2018-07-11 11:04:36',224083099246395403,892,34),(14857,'2018-07-11 12:06:27',224083099246395403,893,25),(14858,'2018-07-11 12:06:28',357981974931046400,893,23),(14859,'2018-07-11 12:06:28',224083099246395403,893,23),(14860,'2018-07-11 12:06:30',118124619117887488,893,17),(14861,'2018-07-11 12:06:31',224083099246395403,893,20),(14862,'2018-07-11 12:06:31',457289865516548098,893,12),(14863,'2018-07-11 12:06:31',118124619117887488,893,18),(14864,'2018-07-11 13:04:14',150649616772235264,894,10),(14865,'2018-07-11 13:04:14',224083099246395403,894,32),(14866,'2018-07-11 13:04:14',357981974931046400,894,28),(14867,'2018-07-11 13:04:15',224083099246395403,894,14),(14868,'2018-07-11 13:04:15',150649616772235264,894,18),(14869,'2018-07-11 13:04:16',224083099246395403,894,35),(14870,'2018-07-11 13:04:17',150649616772235264,894,21),(14871,'2018-07-11 13:04:17',357981974931046400,894,21),(14872,'2018-07-11 13:17:54',274301199841361920,895,20),(14873,'2018-07-11 13:17:54',357981974931046400,895,18),(14874,'2018-07-11 13:17:54',274301199841361920,895,13),(14875,'2018-07-11 13:17:54',150649616772235264,895,11),(14876,'2018-07-11 13:17:55',274301199841361920,895,19),(14877,'2018-07-11 13:17:55',274301199841361920,895,13),(14878,'2018-07-11 13:17:55',274301199841361920,895,11),(14879,'2018-07-11 13:17:56',274301199841361920,895,27),(14880,'2018-07-11 13:17:56',274301199841361920,895,19),(14881,'2018-07-11 13:17:56',357981974931046400,895,25),(14882,'2018-07-11 13:17:56',150649616772235264,895,12),(14883,'2018-07-11 13:17:58',118124619117887488,895,25),(14884,'2018-07-11 14:51:44',357981974931046400,897,23),(14885,'2018-07-11 14:51:44',173468649884090368,897,9),(14886,'2018-07-11 14:51:44',224083099246395403,897,25),(14887,'2018-07-11 15:30:33',173468649884090368,898,21),(14888,'2018-07-11 15:30:33',200340393596944384,898,20),(14889,'2018-07-11 15:30:33',201102155896193024,898,21),(14890,'2018-07-11 15:30:33',224083099246395403,898,22),(14891,'2018-07-11 16:19:44',118124619117887488,899,16),(14892,'2018-07-11 16:19:45',200340393596944384,899,10),(14893,'2018-07-11 16:19:45',224083099246395403,899,29),(14894,'2018-07-11 16:19:46',200340393596944384,899,22),(14895,'2018-07-11 16:19:46',118124619117887488,899,19),(14896,'2018-07-11 16:19:47',200340393596944384,899,15),(14897,'2018-07-11 16:51:21',201102155896193024,900,34),(14898,'2018-07-11 16:51:21',201102155896193024,900,15),(14899,'2018-07-11 16:51:22',201102155896193024,900,13),(14900,'2018-07-11 16:51:22',201102155896193024,900,28),(14901,'2018-07-11 16:51:22',150649616772235264,900,11),(14902,'2018-07-11 16:51:23',201102155896193024,900,29),(14903,'2018-07-11 16:51:23',150649616772235264,900,12),(14904,'2018-07-11 16:51:24',201102155896193024,900,25),(14905,'2018-07-11 16:51:24',150649616772235264,900,17),(14906,'2018-07-11 16:51:25',150649616772235264,900,10),(14907,'2018-07-11 17:34:20',224083099246395403,901,20),(14908,'2018-07-11 17:34:20',357981974931046400,901,21),(14909,'2018-07-11 17:34:20',150649616772235264,901,21),(14910,'2018-07-11 17:34:20',390938926761639936,901,25),(14911,'2018-07-11 17:34:21',224083099246395403,901,22),(14912,'2018-07-11 17:34:21',224083099246395403,901,34),(14913,'2018-07-11 17:34:21',150649616772235264,901,13),(14914,'2018-07-11 17:34:21',224083099246395403,901,15),(14915,'2018-07-11 17:34:22',357981974931046400,901,25),(14916,'2018-07-11 17:34:22',390938926761639936,901,20),(14917,'2018-07-11 17:34:22',150649616772235264,901,19),(14918,'2018-07-11 18:04:29',224083099246395403,902,35),(14919,'2018-07-11 18:04:29',118124619117887488,902,18),(14920,'2018-07-11 18:04:29',454823752925052930,902,16),(14921,'2018-07-11 18:04:29',454823752925052930,902,20),(14922,'2018-07-11 18:04:30',390938926761639936,902,19),(14923,'2018-07-11 18:04:30',224083099246395403,902,18),(14924,'2018-07-11 18:04:30',454823752925052930,902,21),(14925,'2018-07-11 18:04:30',118124619117887488,902,23),(14926,'2018-07-11 18:04:30',454823752925052930,902,12),(14927,'2018-07-11 18:04:30',224083099246395403,902,35),(14928,'2018-07-11 18:14:11',433759248800022532,903,17),(14929,'2018-07-11 18:14:11',357981974931046400,903,36),(14930,'2018-07-11 18:14:11',224083099246395403,903,31),(14931,'2018-07-11 18:14:11',118124619117887488,903,22),(14932,'2018-07-11 18:14:11',457300954660995114,903,13),(14933,'2018-07-11 18:14:11',433759248800022532,903,20),(14934,'2018-07-11 18:14:11',224083099246395403,903,30),(14935,'2018-07-11 18:14:12',390938926761639936,903,15),(14936,'2018-07-11 18:14:12',118124619117887488,903,24),(14937,'2018-07-11 19:20:32',173468649884090368,904,17),(14938,'2018-07-11 19:20:32',285930195125403650,904,16),(14939,'2018-07-11 19:20:32',224083099246395403,904,27),(14940,'2018-07-11 19:20:33',173468649884090368,904,14),(14941,'2018-07-11 19:20:33',118124619117887488,904,13),(14942,'2018-07-11 19:20:33',173468649884090368,904,15),(14943,'2018-07-11 19:20:33',460761978135248896,904,20),(14944,'2018-07-11 19:20:33',457300954660995114,904,20),(14945,'2018-07-11 19:20:33',150649616772235264,904,10),(14946,'2018-07-11 19:20:33',224083099246395403,904,23),(14947,'2018-07-11 19:20:33',118124619117887488,904,19),(14948,'2018-07-11 19:20:33',200340393596944384,904,18),(14949,'2018-07-11 19:20:34',224083099246395403,904,14),(14950,'2018-07-11 19:20:34',200340393596944384,904,20),(14951,'2018-07-11 19:20:34',200340393596944384,904,24),(14952,'2018-07-11 19:20:34',224083099246395403,904,33),(14953,'2018-07-11 19:20:34',150649616772235264,904,18),(14954,'2018-07-11 19:20:34',200340393596944384,904,14),(14955,'2018-07-11 19:20:35',173468649884090368,904,21),(14956,'2018-07-11 19:33:03',118124619117887488,905,22),(14957,'2018-07-11 19:33:03',433759248800022532,905,8),(14958,'2018-07-11 19:33:03',357981974931046400,905,18),(14959,'2018-07-11 19:33:03',118124619117887488,905,14),(14960,'2018-07-11 19:33:04',457300954660995114,905,21),(14961,'2018-07-11 19:33:04',274301199841361920,905,21),(14962,'2018-07-11 19:33:04',433759248800022532,905,12),(14963,'2018-07-11 19:33:04',173468649884090368,905,11),(14964,'2018-07-11 19:33:04',118124619117887488,905,25),(14965,'2018-07-11 19:33:04',173468649884090368,905,8),(14966,'2018-07-11 19:33:04',433759248800022532,905,20),(14967,'2018-07-11 19:33:04',460761978135248896,905,13),(14968,'2018-07-11 19:33:04',274301199841361920,905,23),(14969,'2018-07-11 19:33:04',173468649884090368,905,16),(14970,'2018-07-11 19:33:05',433759248800022532,905,14),(14971,'2018-07-11 19:33:05',118124619117887488,905,13),(14972,'2018-07-11 19:33:05',173468649884090368,905,17),(14973,'2018-07-11 20:16:55',211232684209340426,906,28),(14974,'2018-07-11 20:16:55',274301199841361920,906,22),(14975,'2018-07-11 20:16:55',274301199841361920,906,15),(14976,'2018-07-11 20:16:55',200340393596944384,906,13),(14977,'2018-07-11 20:16:55',457300954660995114,906,14),(14978,'2018-07-11 20:16:56',224083099246395403,906,36),(14979,'2018-07-11 20:16:56',211232684209340426,906,29),(14980,'2018-07-11 20:16:56',200340393596944384,906,14),(14981,'2018-07-11 20:16:56',211232684209340426,906,19),(14982,'2018-07-11 20:16:56',200340393596944384,906,13),(14983,'2018-07-11 20:16:56',211232684209340426,906,12),(14984,'2018-07-11 20:16:56',274301199841361920,906,21),(14985,'2018-07-11 20:16:56',224083099246395403,906,20),(14986,'2018-07-11 20:16:57',200340393596944384,906,19),(14987,'2018-07-11 20:16:57',200340393596944384,906,13),(14988,'2018-07-11 20:16:57',457300954660995114,906,16),(14989,'2018-07-11 20:59:20',201102155896193024,907,31),(14990,'2018-07-11 20:59:21',150649616772235264,907,19),(14991,'2018-07-11 20:59:21',285930195125403650,907,14),(14992,'2018-07-11 20:59:21',201102155896193024,907,23),(14993,'2018-07-11 20:59:21',274301199841361920,907,16),(14994,'2018-07-11 20:59:21',201102155896193024,907,14),(14995,'2018-07-11 20:59:22',274301199841361920,907,23),(14996,'2018-07-11 20:59:22',201102155896193024,907,19),(14997,'2018-07-11 20:59:22',163655183438446593,907,7),(14998,'2018-07-11 20:59:22',201102155896193024,907,16),(14999,'2018-07-11 20:59:22',274301199841361920,907,29),(15000,'2018-07-11 20:59:23',457300954660995114,907,23),(15001,'2018-07-11 20:59:24',163655183438446593,907,14),(15002,'2018-07-11 20:59:25',285930195125403650,907,10),(15003,'2018-07-11 20:59:25',457300954660995114,907,29),(15004,'2018-07-11 20:59:25',285930195125403650,907,17),(15005,'2018-07-11 20:59:26',285930195125403650,907,8),(15006,'2018-07-11 20:59:27',459873273308643328,907,13),(15007,'2018-07-11 20:59:27',459873273308643328,907,10),(15008,'2018-07-11 20:59:27',285930195125403650,907,15),(15009,'2018-07-11 21:20:18',201102155896193024,908,15),(15010,'2018-07-11 21:20:18',163655183438446593,908,7),(15011,'2018-07-11 21:20:18',150649616772235264,908,15),(15012,'2018-07-11 21:20:18',201102155896193024,908,26),(15013,'2018-07-11 21:20:18',457300954660995114,908,20),(15014,'2018-07-11 21:20:19',460761978135248896,908,13),(15015,'2018-07-11 21:20:19',163655183438446593,908,17),(15016,'2018-07-11 21:20:19',201102155896193024,908,21),(15017,'2018-07-11 21:20:19',163655183438446593,908,7),(15018,'2018-07-11 21:20:19',150649616772235264,908,15),(15019,'2018-07-11 21:20:20',163655183438446593,908,7),(15020,'2018-07-11 21:20:20',459881667104997376,908,22),(15021,'2018-07-11 21:20:20',150649616772235264,908,10),(15022,'2018-07-11 21:20:20',460761978135248896,908,27),(15023,'2018-07-11 21:20:20',457300954660995114,908,20),(15024,'2018-07-11 21:20:20',459881667104997376,908,11),(15025,'2018-07-11 21:20:21',459881667104997376,908,13),(15026,'2018-07-11 21:20:21',459881667104997376,908,15),(15027,'2018-07-11 21:20:22',459881667104997376,908,21),(15028,'2018-07-11 21:20:22',150649616772235264,908,11),(15029,'2018-07-11 21:20:22',460761978135248896,908,27),(15030,'2018-07-11 21:20:22',457300954660995114,908,18),(15031,'2018-07-11 21:20:24',460761978135248896,908,21),(15032,'2018-07-11 21:20:24',297748308523483138,908,11),(15033,'2018-07-11 21:20:24',457300954660995114,908,23),(15034,'2018-07-11 21:20:25',200340393596944384,908,17),(15035,'2018-07-11 21:37:07',224083099246395403,909,33),(15036,'2018-07-11 21:37:07',459873273308643328,909,10),(15037,'2018-07-11 21:37:07',224083099246395403,909,27),(15038,'2018-07-11 21:37:08',459873273308643328,909,17),(15039,'2018-07-11 21:37:08',438094660712267778,909,10),(15040,'2018-07-11 21:37:08',459873273308643328,909,16),(15041,'2018-07-11 21:37:08',438094660712267778,909,15),(15042,'2018-07-11 21:37:08',459873273308643328,909,12),(15043,'2018-07-11 21:37:09',438094660712267778,909,14),(15044,'2018-07-11 21:37:09',150649616772235264,909,16),(15045,'2018-07-11 21:37:10',438094660712267778,909,10),(15046,'2018-07-11 21:37:11',438094660712267778,909,9),(15047,'2018-07-11 21:37:12',150649616772235264,909,14),(15048,'2018-07-11 21:37:15',438094660712267778,909,17),(15049,'2018-07-11 21:37:17',438094660712267778,909,13),(15050,'2018-07-11 21:37:19',438094660712267778,909,19),(15051,'2018-07-11 21:37:20',224083099246395403,909,32),(15052,'2018-07-11 21:37:25',457300954660995114,909,16),(15053,'2018-07-11 21:37:28',457300954660995114,909,24),(15054,'2018-07-11 21:37:31',150649616772235264,909,12),(15055,'2018-07-11 21:37:34',150649616772235264,909,21),(15056,'2018-07-11 21:59:58',459879057295671296,910,17),(15057,'2018-07-11 21:59:59',459879057295671296,910,12),(15058,'2018-07-11 21:59:59',460761978135248896,910,29),(15059,'2018-07-11 22:00:00',459879057295671296,910,13),(15060,'2018-07-11 22:00:03',150649616772235264,910,12),(15061,'2018-07-11 22:00:04',460761978135248896,910,12),(15062,'2018-07-11 22:00:06',459879057295671296,910,15),(15063,'2018-07-11 22:00:06',459879057295671296,910,12),(15064,'2018-07-11 22:00:07',191198987490033664,910,19),(15065,'2018-07-11 22:00:07',459879057295671296,910,15),(15066,'2018-07-11 22:00:08',274301199841361920,910,12),(15067,'2018-07-11 22:00:11',460761978135248896,910,12),(15068,'2018-07-11 22:00:12',459884642192064512,910,23),(15069,'2018-07-11 22:00:13',191198987490033664,910,20),(15070,'2018-07-11 22:00:13',459884642192064512,910,10),(15071,'2018-07-11 22:00:14',459884642192064512,910,24),(15072,'2018-07-11 22:00:17',460761978135248896,910,23),(15073,'2018-07-11 22:00:21',191198987490033664,910,22),(15074,'2018-07-11 22:00:31',150649616772235264,910,16),(15075,'2018-07-11 22:00:32',460761978135248896,910,24),(15076,'2018-07-11 22:00:35',150649616772235264,910,21),(15077,'2018-07-11 22:00:38',191198987490033664,910,9),(15078,'2018-07-11 22:00:39',460761978135248896,910,15),(15079,'2018-07-11 22:00:45',191198987490033664,910,19),(15080,'2018-07-11 22:00:47',459834182961463299,910,10),(15081,'2018-07-11 22:00:48',459834182961463299,910,15),(15082,'2018-07-11 22:00:49',459834182961463299,910,12),(15083,'2018-07-11 22:18:47',150649616772235264,911,16),(15084,'2018-07-11 22:19:17',459876383431327746,911,9),(15085,'2018-07-11 22:19:17',459876383431327746,911,12),(15086,'2018-07-11 22:19:28',459876383431327746,911,16),(15087,'2018-07-11 22:19:44',459834182961463299,911,15),(15088,'2018-07-11 22:20:05',459883167160205313,911,11),(15089,'2018-07-11 22:20:07',459883167160205313,911,24),(15090,'2018-07-11 22:49:42',460761978135248896,912,15),(15091,'2018-07-11 22:49:45',460761978135248896,912,20),(15092,'2018-07-11 22:49:45',274301199841361920,912,14),(15093,'2018-07-11 23:14:46',460761978135248896,913,20),(15094,'2018-07-11 23:14:48',460761978135248896,913,22),(15095,'2018-07-11 23:14:50',460761978135248896,913,17),(15096,'2018-07-11 23:14:53',460761978135248896,913,18),(15097,'2018-07-12 00:03:29',457300954660995114,914,28),(15098,'2018-07-12 00:03:29',201102155896193024,914,13),(15099,'2018-07-12 00:03:29',460761978135248896,914,29),(15100,'2018-07-12 00:03:29',285930195125403650,914,15),(15101,'2018-07-12 00:03:29',201102155896193024,914,33),(15102,'2018-07-12 00:33:55',457300954660995114,915,18),(15103,'2018-07-12 00:33:55',201102155896193024,915,30),(15104,'2018-07-12 00:33:55',201102155896193024,915,33),(15105,'2018-07-12 00:33:56',201102155896193024,915,23),(15106,'2018-07-12 00:33:56',201102155896193024,915,32),(15107,'2018-07-12 00:33:56',457300954660995114,915,16),(15108,'2018-07-12 00:59:53',218498162745278474,916,16),(15109,'2018-07-12 00:59:53',457300954660995114,916,14),(15110,'2018-07-12 00:59:53',218498162745278474,916,13),(15111,'2018-07-12 00:59:54',218498162745278474,916,18),(15112,'2018-07-12 00:59:54',218498162745278474,916,22),(15113,'2018-07-12 00:59:55',218498162745278474,916,18),(15114,'2018-07-12 00:59:55',457300954660995114,916,21),(15115,'2018-07-12 00:59:57',457300954660995114,916,11),(15116,'2018-07-12 00:59:58',218498162745278474,916,20),(15117,'2018-07-12 00:59:59',218498162745278474,916,27),(15118,'2018-07-12 01:00:00',457300954660995114,916,28),(15119,'2018-07-12 01:15:45',433759248800022532,917,9),(15120,'2018-07-12 01:15:45',218498162745278474,917,18),(15121,'2018-07-12 01:15:45',433759248800022532,917,21),(15122,'2018-07-12 01:15:45',460761978135248896,917,23),(15123,'2018-07-12 01:15:45',433759248800022532,917,21),(15124,'2018-07-12 01:15:46',218498162745278474,917,12),(15125,'2018-07-12 01:15:46',433759248800022532,917,14),(15126,'2018-07-12 01:15:46',218498162745278474,917,21),(15127,'2018-07-12 01:15:46',433759248800022532,917,21),(15128,'2018-07-12 01:15:46',433759248800022532,917,12),(15129,'2018-07-12 01:48:17',454823752925052930,918,15),(15130,'2018-07-12 01:48:18',201102155896193024,918,21),(15131,'2018-07-12 01:48:18',218498162745278474,918,15),(15132,'2018-07-12 01:48:18',454823752925052930,918,10),(15133,'2018-07-12 01:48:18',201102155896193024,918,13),(15134,'2018-07-12 01:48:18',454823752925052930,918,15),(15135,'2018-07-12 01:48:18',201102155896193024,918,27),(15136,'2018-07-12 01:48:19',454823752925052930,918,24),(15137,'2018-07-12 01:48:19',201102155896193024,918,20),(15138,'2018-07-12 01:48:19',454823752925052930,918,12),(15139,'2018-07-12 01:48:19',201102155896193024,918,33),(15140,'2018-07-12 01:48:19',454823752925052930,918,19),(15141,'2018-07-12 01:48:20',218498162745278474,918,18),(15142,'2018-07-12 01:48:20',454823752925052930,918,17),(15143,'2018-07-12 01:48:21',454823752925052930,918,14),(15144,'2018-07-12 01:48:21',218498162745278474,918,27),(15145,'2018-07-12 01:48:21',218498162745278474,918,14),(15146,'2018-07-12 01:48:21',218498162745278474,918,17),(15147,'2018-07-12 02:32:10',433759248800022532,919,10),(15148,'2018-07-12 02:32:10',457300954660995114,919,22),(15149,'2018-07-12 02:32:11',433759248800022532,919,15),(15150,'2018-07-12 02:32:12',433759248800022532,919,9),(15151,'2018-07-12 02:32:12',457300954660995114,919,19),(15152,'2018-07-12 02:32:12',433759248800022532,919,19),(15153,'2018-07-12 02:32:13',433759248800022532,919,15),(15154,'2018-07-12 02:32:14',433759248800022532,919,19),(15155,'2018-07-12 02:32:14',457300954660995114,919,28),(15156,'2018-07-12 02:32:15',433759248800022532,919,12),(15157,'2018-07-12 02:32:15',433759248800022532,919,22),(15158,'2018-07-12 02:32:16',457300954660995114,919,26),(15159,'2018-07-12 02:32:18',457300954660995114,919,20),(15160,'2018-07-12 02:32:21',465785309821534248,919,12),(15161,'2018-07-12 02:32:22',457300954660995114,919,19),(15162,'2018-07-12 02:32:23',465785309821534248,919,12),(15163,'2018-07-12 02:32:25',465785309821534248,919,17),(15164,'2018-07-12 02:32:30',465785309821534248,919,8),(15165,'2018-07-12 02:32:33',465785309821534248,919,13),(15166,'2018-07-12 02:32:39',457300954660995114,919,24),(15167,'2018-07-12 02:32:42',457300954660995114,919,14),(15168,'2018-07-12 02:50:17',460761978135248896,920,24),(15169,'2018-07-12 02:50:20',460761978135248896,920,29),(15170,'2018-07-12 02:50:21',200340393596944384,920,21),(15171,'2018-07-12 02:50:22',460761978135248896,920,11),(15172,'2018-07-12 02:50:22',200340393596944384,920,18),(15173,'2018-07-12 02:50:23',200340393596944384,920,24),(15174,'2018-07-12 02:50:24',457300954660995114,920,20),(15175,'2018-07-12 02:50:24',200340393596944384,920,22),(15176,'2018-07-12 02:50:24',460761978135248896,920,23),(15177,'2018-07-12 02:50:25',200340393596944384,920,16),(15178,'2018-07-12 02:50:27',460761978135248896,920,21),(15179,'2018-07-12 02:50:30',200340393596944384,920,20),(15180,'2018-07-12 02:50:31',200340393596944384,920,19),(15181,'2018-07-12 02:50:32',200340393596944384,920,13),(15182,'2018-07-12 02:50:32',460761978135248896,920,16),(15183,'2018-07-12 02:50:35',460761978135248896,920,25),(15184,'2018-07-12 02:50:38',460761978135248896,920,18),(15185,'2018-07-12 03:01:55',200340393596944384,921,15),(15186,'2018-07-12 03:01:57',200340393596944384,921,19),(15187,'2018-07-12 03:01:58',200340393596944384,921,23),(15188,'2018-07-12 03:02:02',200340393596944384,921,19),(15189,'2018-07-12 03:02:03',460761978135248896,921,22),(15190,'2018-07-12 03:02:10',454823752925052930,921,17),(15191,'2018-07-12 03:02:21',454823752925052930,921,12),(15192,'2018-07-12 03:02:22',454823752925052930,921,12),(15193,'2018-07-12 03:02:24',454823752925052930,921,16),(15194,'2018-07-12 03:02:33',454823752925052930,921,15),(15195,'2018-07-12 03:02:34',454823752925052930,921,17),(15196,'2018-07-12 03:02:36',454823752925052930,921,25),(15197,'2018-07-12 03:02:46',429615167492325376,921,14),(15198,'2018-07-12 03:02:47',433759248800022532,921,15),(15199,'2018-07-12 03:02:49',433759248800022532,921,16),(15200,'2018-07-12 03:02:51',429615167492325376,921,9),(15201,'2018-07-12 03:02:52',433759248800022532,921,20),(15202,'2018-07-12 03:02:57',429615167492325376,921,15),(15203,'2018-07-12 03:02:58',433759248800022532,921,21),(15204,'2018-07-12 03:02:59',433759248800022532,921,21),(15205,'2018-07-12 03:03:02',457300954660995114,921,18),(15206,'2018-07-12 03:03:04',429615167492325376,921,13),(15207,'2018-07-12 03:03:05',457300954660995114,921,11),(15208,'2018-07-12 03:03:08',433759248800022532,921,17),(15209,'2018-07-12 03:03:23',457300954660995114,921,14),(15210,'2018-07-12 03:03:27',429615167492325376,921,14),(15211,'2018-07-12 03:04:12',465785309821534248,921,17),(15212,'2018-07-12 03:04:17',200340393596944384,921,12),(15213,'2018-07-12 03:51:31',457300954660995114,923,25),(15214,'2018-07-12 03:51:32',460761978135248896,923,17),(15215,'2018-07-12 03:51:34',457300954660995114,923,18),(15216,'2018-07-12 04:16:12',460761978135248896,924,23),(15217,'2018-07-12 04:16:12',457300954660995114,924,25),(15218,'2018-07-12 04:16:12',224083099246395403,924,29),(15219,'2018-07-12 04:16:13',224083099246395403,924,25),(15220,'2018-07-12 04:49:01',224083099246395403,925,20),(15221,'2018-07-12 04:49:02',224083099246395403,925,28),(15222,'2018-07-12 04:49:02',460761978135248896,925,15),(15223,'2018-07-12 04:49:02',224083099246395403,925,22),(15224,'2018-07-12 04:49:03',224083099246395403,925,18),(15225,'2018-07-12 04:49:04',460761978135248896,925,12),(15226,'2018-07-12 04:49:05',457289865516548098,925,15),(15227,'2018-07-12 04:49:06',224083099246395403,925,33),(15228,'2018-07-12 05:16:33',454823752925052930,926,14),(15229,'2018-07-12 05:16:34',224083099246395403,926,24),(15230,'2018-07-12 05:16:34',454823752925052930,926,16),(15231,'2018-07-12 05:16:34',457300954660995114,926,20),(15232,'2018-07-12 05:16:34',460761978135248896,926,21),(15233,'2018-07-12 05:16:34',224083099246395403,926,29),(15234,'2018-07-12 05:16:34',454823752925052930,926,13),(15235,'2018-07-12 05:45:02',224083099246395403,927,20),(15236,'2018-07-12 05:45:02',454823752925052930,927,18),(15237,'2018-07-12 05:45:02',454823752925052930,927,22),(15238,'2018-07-12 05:45:03',224083099246395403,927,26),(15239,'2018-07-12 05:45:03',460761978135248896,927,26),(15240,'2018-07-12 05:45:03',454823752925052930,927,16),(15241,'2018-07-12 05:45:03',224083099246395403,927,23),(15242,'2018-07-12 05:45:03',454823752925052930,927,16),(15243,'2018-07-12 06:00:20',224083099246395403,928,27),(15244,'2018-07-12 06:00:20',433759248800022532,928,20),(15245,'2018-07-12 06:00:20',457300954660995114,928,15),(15246,'2018-07-12 06:00:21',460761978135248896,928,19),(15247,'2018-07-12 06:00:21',224083099246395403,928,28),(15248,'2018-07-12 06:00:21',433759248800022532,928,16),(15249,'2018-07-12 06:00:21',433759248800022532,928,9),(15250,'2018-07-12 06:00:21',224083099246395403,928,26),(15251,'2018-07-12 06:00:21',433759248800022532,928,20),(15252,'2018-07-12 06:00:21',433759248800022532,928,9),(15253,'2018-07-12 06:00:21',224083099246395403,928,29),(15254,'2018-07-12 06:49:08',224083099246395403,929,15),(15255,'2018-07-12 06:49:09',460761978135248896,929,15),(15256,'2018-07-12 06:49:09',224083099246395403,929,28),(15257,'2018-07-12 06:49:09',457300954660995114,929,20),(15258,'2018-07-12 06:49:09',224083099246395403,929,31),(15259,'2018-07-12 06:49:10',224083099246395403,929,27),(15260,'2018-07-12 06:49:10',224083099246395403,929,35),(15261,'2018-07-12 06:49:11',457300954660995114,929,12),(15262,'2018-07-12 06:49:11',460761978135248896,929,26),(15263,'2018-07-12 06:49:13',457300954660995114,929,19),(15264,'2018-07-12 06:49:13',460761978135248896,929,23),(15265,'2018-07-12 06:49:15',460761978135248896,929,21),(15266,'2018-07-12 06:49:16',457300954660995114,929,20),(15267,'2018-07-12 07:32:21',173468649884090368,930,17),(15268,'2018-07-12 07:32:21',224083099246395403,930,16),(15269,'2018-07-12 07:32:22',173468649884090368,930,14),(15270,'2018-07-12 07:32:22',278115594879107074,930,15),(15271,'2018-07-12 07:32:22',457300954660995114,930,13),(15272,'2018-07-12 07:32:22',460761978135248896,930,15),(15273,'2018-07-12 07:32:22',173468649884090368,930,13),(15274,'2018-07-12 07:32:22',173468649884090368,930,20),(15275,'2018-07-12 07:32:23',173468649884090368,930,20),(15276,'2018-07-12 07:32:23',278115594879107074,930,15),(15277,'2018-07-12 07:32:24',457300954660995114,930,21),(15278,'2018-07-12 07:32:24',460761978135248896,930,18),(15279,'2018-07-12 07:32:26',457300954660995114,930,17),(15280,'2018-07-12 07:32:26',460761978135248896,930,12),(15281,'2018-07-12 07:32:28',457300954660995114,930,18),(15282,'2018-07-12 07:32:28',460761978135248896,930,18),(15283,'2018-07-12 07:32:30',457300954660995114,930,23),(15284,'2018-07-12 07:32:30',224083099246395403,930,30),(15285,'2018-07-12 07:32:31',460761978135248896,930,21),(15286,'2018-07-12 07:48:35',224083099246395403,931,26),(15287,'2018-07-12 07:48:35',457300954660995114,931,13),(15288,'2018-07-12 07:48:35',466821403027701760,931,13),(15289,'2018-07-12 07:48:37',466821403027701760,931,6),(15290,'2018-07-12 07:48:37',460761978135248896,931,27),(15291,'2018-07-12 07:48:37',457300954660995114,931,20),(15292,'2018-07-12 07:48:37',466821403027701760,931,10),(15293,'2018-07-12 07:48:39',457300954660995114,931,14),(15294,'2018-07-12 07:48:41',460761978135248896,931,15),(15295,'2018-07-12 07:48:42',457300954660995114,931,27),(15296,'2018-07-12 07:48:44',460761978135248896,931,24),(15297,'2018-07-12 07:48:46',457300954660995114,931,25),(15298,'2018-07-12 07:48:50',457300954660995114,931,15),(15299,'2018-07-12 08:06:57',460761978135248896,932,18),(15300,'2018-07-12 08:06:58',163655183438446593,932,11),(15301,'2018-07-12 08:07:00',466821403027701760,932,14),(15302,'2018-07-12 08:07:01',163655183438446593,932,11),(15303,'2018-07-12 08:07:14',460761978135248896,932,11),(15304,'2018-07-12 08:07:16',286105785052954626,932,17),(15305,'2018-07-12 08:07:20',286105785052954626,932,23),(15306,'2018-07-12 08:07:25',286105785052954626,932,17),(15307,'2018-07-12 08:07:28',460761978135248896,932,11),(15308,'2018-07-12 08:07:44',139861211746402304,932,14),(15309,'2018-07-12 08:07:49',139861211746402304,932,10),(15310,'2018-07-12 08:08:05',286105785052954626,932,12),(15311,'2018-07-12 08:08:29',139861211746402304,932,17),(15312,'2018-07-12 08:10:07',325565391478718464,932,40),(15313,'2018-07-12 08:10:10',325565391478718464,932,14),(15314,'2018-07-12 08:10:26',325565391478718464,932,32),(15315,'2018-07-12 08:31:58',357981974931046400,933,27),(15316,'2018-07-12 08:32:00',224083099246395403,933,37),(15317,'2018-07-12 09:29:09',224083099246395403,934,28),(15318,'2018-07-12 09:29:10',224083099246395403,934,22),(15319,'2018-07-12 09:29:10',460761978135248896,934,11),(15320,'2018-07-12 09:29:10',457300954660995114,934,17),(15321,'2018-07-12 09:29:10',224083099246395403,934,35),(15322,'2018-07-12 09:46:11',211232684209340426,935,19),(15323,'2018-07-12 09:46:11',224083099246395403,935,22),(15324,'2018-07-12 09:46:11',457300954660995114,935,24),(15325,'2018-07-12 09:46:12',224083099246395403,935,27),(15326,'2018-07-12 09:46:12',224083099246395403,935,19),(15327,'2018-07-12 09:46:12',211232684209340426,935,23),(15328,'2018-07-12 09:59:10',457300954660995114,936,27),(15329,'2018-07-12 09:59:12',457300954660995114,936,20),(15330,'2018-07-12 09:59:14',457300954660995114,936,16),(15331,'2018-07-12 09:59:15',163655183438446593,936,17),(15332,'2018-07-12 09:59:16',457300954660995114,936,26),(15333,'2018-07-12 09:59:21',163655183438446593,936,9),(15334,'2018-07-12 10:19:13',224083099246395403,937,34),(15335,'2018-07-12 10:19:13',224083099246395403,937,22),(15336,'2018-07-12 10:19:13',457300954660995114,937,19),(15337,'2018-07-12 10:19:14',224083099246395403,937,24),(15338,'2018-07-12 10:19:15',224083099246395403,937,37),(15339,'2018-07-12 10:19:15',457300954660995114,937,27),(15340,'2018-07-12 10:45:39',224083099246395403,938,16),(15341,'2018-07-12 10:45:58',224083099246395403,938,16),(15342,'2018-07-12 10:45:59',224083099246395403,938,15),(15343,'2018-07-12 10:46:01',224083099246395403,938,36),(15344,'2018-07-12 10:46:05',224083099246395403,938,33),(15345,'2018-07-12 10:46:22',224083099246395403,938,27),(15346,'2018-07-12 10:48:05',466180576357908480,938,11),(15347,'2018-07-12 10:48:05',466180576357908480,938,13),(15348,'2018-07-12 10:48:05',466180576357908480,938,10),(15349,'2018-07-12 11:29:42',274301199841361920,939,16),(15350,'2018-07-12 11:29:42',274301199841361920,939,29),(15351,'2018-07-12 11:29:43',274301199841361920,939,15),(15352,'2018-07-12 11:29:43',274301199841361920,939,21),(15353,'2018-07-12 11:29:44',274301199841361920,939,11),(15354,'2018-07-12 11:29:44',274301199841361920,939,24),(15355,'2018-07-12 11:29:45',274301199841361920,939,23),(15356,'2018-07-12 11:29:55',173468649884090368,939,20),(15357,'2018-07-12 11:30:00',173468649884090368,939,10),(15358,'2018-07-12 11:30:02',173468649884090368,939,11),(15359,'2018-07-12 11:30:06',173468649884090368,939,12),(15360,'2018-07-12 11:30:08',173468649884090368,939,9),(15361,'2018-07-12 11:30:18',224083099246395403,939,30),(15362,'2018-07-12 11:30:22',274301199841361920,939,18),(15363,'2018-07-12 11:30:31',224083099246395403,939,22),(15364,'2018-07-12 11:30:35',173468649884090368,939,22),(15365,'2018-07-12 11:30:42',466180576357908480,939,13),(15366,'2018-07-12 11:30:45',466180576357908480,939,12),(15367,'2018-07-12 12:01:34',274301199841361920,940,19),(15368,'2018-07-12 12:01:34',224083099246395403,940,36),(15369,'2018-07-12 12:01:34',185698541052755968,940,13),(15370,'2018-07-12 12:01:34',274301199841361920,940,15),(15371,'2018-07-12 12:01:35',185698541052755968,940,7),(15372,'2018-07-12 12:01:35',274301199841361920,940,21),(15373,'2018-07-12 12:01:35',265907268942299136,940,16),(15374,'2018-07-12 12:01:35',185698541052755968,940,11),(15375,'2018-07-12 12:01:35',274301199841361920,940,12),(15376,'2018-07-12 12:01:35',185698541052755968,940,7),(15377,'2018-07-12 12:01:35',265907268942299136,940,13),(15378,'2018-07-12 12:01:36',185698541052755968,940,9),(15379,'2018-07-12 12:01:36',274301199841361920,940,26),(15380,'2018-07-12 12:01:36',265907268942299136,940,10),(15381,'2018-07-12 12:01:36',185698541052755968,940,11),(15382,'2018-07-12 12:01:36',265907268942299136,940,12),(15383,'2018-07-12 12:01:36',185698541052755968,940,11),(15384,'2018-07-12 12:01:37',185698541052755968,940,12),(15385,'2018-07-12 12:01:38',185698541052755968,940,10),(15386,'2018-07-12 12:01:38',185698541052755968,940,9),(15387,'2018-07-12 12:01:39',265907268942299136,940,14),(15388,'2018-07-12 12:01:41',274301199841361920,940,11),(15389,'2018-07-12 12:02:40',224083099246395403,940,27),(15390,'2018-07-12 12:02:44',224083099246395403,940,17),(15391,'2018-07-12 12:02:45',163655183438446593,940,10),(15392,'2018-07-12 12:02:47',257137018897694721,940,16),(15393,'2018-07-12 12:02:53',257137018897694721,940,19),(15394,'2018-07-12 12:02:53',224083099246395403,940,23),(15395,'2018-07-12 12:18:48',224083099246395403,941,30),(15396,'2018-07-12 12:18:50',224083099246395403,941,31),(15397,'2018-07-12 12:20:09',325565391478718464,941,27),(15398,'2018-07-12 12:20:11',325565391478718464,941,32),(15399,'2018-07-12 12:20:28',325565391478718464,941,16),(15400,'2018-07-12 12:23:00',325565391478718464,941,25),(15401,'2018-07-12 12:23:51',466180576357908480,941,13),(15402,'2018-07-12 12:23:51',466180576357908480,941,10),(15403,'2018-07-12 12:23:52',466180576357908480,941,12),(15404,'2018-07-12 12:49:56',173468649884090368,942,21),(15405,'2018-07-12 12:49:57',224083099246395403,942,21),(15406,'2018-07-12 12:49:57',163655183438446593,942,16),(15407,'2018-07-12 13:48:34',224083099246395403,943,19),(15408,'2018-07-12 13:48:34',357981974931046400,943,17),(15409,'2018-07-12 13:48:34',173468649884090368,943,8),(15410,'2018-07-12 13:48:34',224083099246395403,943,22),(15411,'2018-07-12 13:48:34',173468649884090368,943,14),(15412,'2018-07-12 13:48:34',173468649884090368,943,17),(15413,'2018-07-12 13:48:35',173468649884090368,943,21),(15414,'2018-07-12 14:30:12',357981974931046400,944,13),(15415,'2018-07-12 14:30:12',224083099246395403,944,30),(15416,'2018-07-12 14:30:13',224083099246395403,944,33),(15417,'2018-07-12 14:30:13',224083099246395403,944,23),(15418,'2018-07-12 14:30:16',163655183438446593,944,13),(15419,'2018-07-12 14:30:17',163655183438446593,944,16),(15420,'2018-07-12 14:30:17',357981974931046400,944,37),(15421,'2018-07-12 14:44:34',357981974931046400,945,22),(15422,'2018-07-12 14:44:35',357981974931046400,945,27),(15423,'2018-07-12 14:44:37',163655183438446593,945,7),(15424,'2018-07-12 14:44:38',163655183438446593,945,14),(15425,'2018-07-12 14:44:39',163655183438446593,945,12),(15426,'2018-07-12 14:44:40',163655183438446593,945,8),(15427,'2018-07-12 14:44:43',163655183438446593,945,12),(15428,'2018-07-12 14:44:46',357981974931046400,945,19),(15429,'2018-07-12 15:04:01',285930195125403650,946,12),(15430,'2018-07-12 15:04:01',173468649884090368,946,13),(15431,'2018-07-12 15:04:02',173468649884090368,946,15),(15432,'2018-07-12 15:04:02',357981974931046400,946,33),(15433,'2018-07-12 15:04:02',173468649884090368,946,21),(15434,'2018-07-12 15:04:02',285930195125403650,946,16),(15435,'2018-07-12 15:04:02',357981974931046400,946,23),(15436,'2018-07-12 15:04:02',173468649884090368,946,17),(15437,'2018-07-12 15:04:03',173468649884090368,946,10),(15438,'2018-07-12 15:04:03',285930195125403650,946,14),(15439,'2018-07-12 15:04:03',285930195125403650,946,8),(15440,'2018-07-12 15:04:04',118124619117887488,946,12),(15441,'2018-07-12 15:04:04',357981974931046400,946,32),(15442,'2018-07-12 15:04:04',285930195125403650,946,10),(15443,'2018-07-12 15:14:20',224083099246395403,947,15),(15444,'2018-07-12 15:14:20',224083099246395403,947,33),(15445,'2018-07-12 15:14:21',224083099246395403,947,31),(15446,'2018-07-12 15:14:21',357981974931046400,947,28),(15447,'2018-07-12 15:14:22',357981974931046400,947,36),(15448,'2018-07-12 15:14:23',357981974931046400,947,26),(15449,'2018-07-12 15:14:23',224083099246395403,947,19),(15450,'2018-07-12 15:14:24',163655183438446593,947,15),(15451,'2018-07-12 15:14:24',118124619117887488,947,17),(15452,'2018-07-12 15:14:25',163655183438446593,947,8),(15453,'2018-07-12 15:14:26',118124619117887488,947,24),(15454,'2018-07-12 15:31:46',274301199841361920,948,15),(15455,'2018-07-12 15:31:46',224083099246395403,948,21),(15456,'2018-07-12 15:31:46',173468649884090368,948,16),(15457,'2018-07-12 15:31:46',274301199841361920,948,17),(15458,'2018-07-12 15:31:47',173468649884090368,948,20),(15459,'2018-07-12 15:31:47',274301199841361920,948,16),(15460,'2018-07-12 15:31:47',173468649884090368,948,11),(15461,'2018-07-12 15:31:47',274301199841361920,948,22),(15462,'2018-07-12 15:31:47',173468649884090368,948,21),(15463,'2018-07-12 15:31:47',274301199841361920,948,12),(15464,'2018-07-12 15:31:48',173468649884090368,948,15),(15465,'2018-07-12 16:32:10',173468649884090368,949,13),(15466,'2018-07-12 16:32:10',201102155896193024,949,29),(15467,'2018-07-12 16:32:10',224083099246395403,949,17),(15468,'2018-07-12 16:32:10',201102155896193024,949,33),(15469,'2018-07-12 16:32:10',201102155896193024,949,20),(15470,'2018-07-12 16:32:10',224083099246395403,949,28),(15471,'2018-07-12 16:32:11',201102155896193024,949,23),(15472,'2018-07-12 16:32:11',224083099246395403,949,18),(15473,'2018-07-12 16:32:11',173468649884090368,949,11),(15474,'2018-07-12 16:32:11',201102155896193024,949,28),(15475,'2018-07-12 16:32:11',173468649884090368,949,18),(15476,'2018-07-12 16:32:11',201102155896193024,949,13),(15477,'2018-07-12 16:32:11',173468649884090368,949,14),(15478,'2018-07-12 17:37:05',150649616772235264,950,16),(15479,'2018-07-12 17:37:06',457300954660995114,950,21),(15480,'2018-07-12 17:37:06',438094660712267778,950,16),(15481,'2018-07-12 17:37:06',150649616772235264,950,19),(15482,'2018-07-12 17:37:07',388505302292627456,950,10),(15483,'2018-07-12 17:37:08',438094660712267778,950,21),(15484,'2018-07-12 17:37:08',150649616772235264,950,11),(15485,'2018-07-12 17:37:09',457300954660995114,950,23),(15486,'2018-07-12 17:37:09',388505302292627456,950,9),(15487,'2018-07-12 17:37:09',118124619117887488,950,25),(15488,'2018-07-12 17:37:10',438094660712267778,950,22),(15489,'2018-07-12 17:37:10',150649616772235264,950,9),(15490,'2018-07-12 17:37:12',457300954660995114,950,25),(15491,'2018-07-12 17:37:12',201102155896193024,950,32),(15492,'2018-07-12 17:37:12',150649616772235264,950,11),(15493,'2018-07-12 17:37:12',118124619117887488,950,23),(15494,'2018-07-12 17:37:12',201102155896193024,950,13),(15495,'2018-07-12 17:37:12',388505302292627456,950,17),(15496,'2018-07-12 17:37:12',150649616772235264,950,18),(15497,'2018-07-12 17:37:13',201102155896193024,950,32),(15498,'2018-07-12 17:37:13',201102155896193024,950,35),(15499,'2018-07-12 17:45:51',224083099246395403,951,30),(15500,'2018-07-12 17:45:51',433759248800022532,951,10),(15501,'2018-07-12 17:45:51',150649616772235264,951,23),(15502,'2018-07-12 17:45:51',224083099246395403,951,21),(15503,'2018-07-12 17:45:51',457300954660995114,951,25),(15504,'2018-07-12 17:45:51',433759248800022532,951,22),(15505,'2018-07-12 17:45:51',224083099246395403,951,35),(15506,'2018-07-12 17:45:52',433759248800022532,951,13),(15507,'2018-07-12 17:45:52',224083099246395403,951,15),(15508,'2018-07-12 17:45:52',150649616772235264,951,13),(15509,'2018-07-12 17:45:52',433759248800022532,951,21),(15510,'2018-07-12 17:45:52',433759248800022532,951,8),(15511,'2018-07-12 17:45:53',150649616772235264,951,14),(15512,'2018-07-12 17:45:53',433759248800022532,951,11),(15513,'2018-07-12 17:45:53',457300954660995114,951,16),(15514,'2018-07-12 17:45:53',173468649884090368,951,10),(15515,'2018-07-12 17:45:53',433759248800022532,951,22),(15516,'2018-07-12 17:45:54',224083099246395403,951,38),(15517,'2018-07-12 18:03:57',163655183438446593,952,12),(15518,'2018-07-12 18:04:01',357981974931046400,952,23),(15519,'2018-07-12 18:04:18',465785309821534248,952,14),(15520,'2018-07-12 18:04:20',465785309821534248,952,9),(15521,'2018-07-12 18:04:21',465785309821534248,952,15),(15522,'2018-07-12 18:04:22',357981974931046400,952,34),(15523,'2018-07-12 18:04:22',465785309821534248,952,14),(15524,'2018-07-12 18:04:24',465785309821534248,952,12),(15525,'2018-07-12 18:04:27',357981974931046400,952,19),(15526,'2018-07-12 18:04:32',163655183438446593,952,12),(15527,'2018-07-12 18:04:42',200340393596944384,952,21),(15528,'2018-07-12 18:05:13',357981974931046400,952,23),(15529,'2018-07-12 18:05:13',163655183438446593,952,16),(15530,'2018-07-12 18:05:13',200340393596944384,952,15),(15531,'2018-07-12 18:05:19',200340393596944384,952,23),(15532,'2018-07-12 18:05:22',357981974931046400,952,16),(15533,'2018-07-12 18:05:28',163655183438446593,952,16),(15534,'2018-07-12 18:05:28',200340393596944384,952,10),(15535,'2018-07-12 18:05:30',200340393596944384,952,10),(15536,'2018-07-12 18:05:30',163655183438446593,952,7),(15537,'2018-07-12 18:17:28',118124619117887488,953,26),(15538,'2018-07-12 18:17:28',325565391478718464,953,28),(15539,'2018-07-12 18:17:28',150649616772235264,953,20),(15540,'2018-07-12 18:17:28',325565391478718464,953,19),(15541,'2018-07-12 18:17:29',118124619117887488,953,18),(15542,'2018-07-12 18:17:29',325565391478718464,953,35),(15543,'2018-07-12 18:17:29',150649616772235264,953,17),(15544,'2018-07-12 18:17:31',200340393596944384,953,11),(15545,'2018-07-12 18:17:31',163655183438446593,953,17),(15546,'2018-07-12 18:17:31',150649616772235264,953,14),(15547,'2018-07-12 18:17:31',200340393596944384,953,26),(15548,'2018-07-12 18:17:32',457300954660995114,953,19),(15549,'2018-07-12 18:17:32',200340393596944384,953,13),(15550,'2018-07-12 18:17:32',218498162745278474,953,19),(15551,'2018-07-12 18:17:33',163655183438446593,953,11),(15552,'2018-07-12 18:17:33',200340393596944384,953,13),(15553,'2018-07-12 18:17:33',200340393596944384,953,20),(15554,'2018-07-12 18:17:34',218498162745278474,953,15),(15555,'2018-07-12 18:17:35',457300954660995114,953,27),(15556,'2018-07-12 18:17:35',218498162745278474,953,15),(15557,'2018-07-12 18:17:36',457300954660995114,953,11),(15558,'2018-07-12 18:17:37',218498162745278474,953,29),(15559,'2018-07-12 18:17:38',218498162745278474,953,17),(15560,'2018-07-12 18:17:39',457300954660995114,953,25),(15561,'2018-07-12 18:17:40',200340393596944384,953,22),(15562,'2018-07-12 18:17:42',218498162745278474,953,29),(15563,'2018-07-12 18:17:42',200340393596944384,953,20),(15564,'2018-07-12 18:17:44',173468649884090368,953,11),(15565,'2018-07-12 18:17:47',150649616772235264,953,15),(15566,'2018-07-12 18:17:48',200340393596944384,953,19),(15567,'2018-07-12 18:45:05',201102155896193024,954,33),(15568,'2018-07-12 18:45:06',201102155896193024,954,29),(15569,'2018-07-12 18:45:09',201102155896193024,954,27),(15570,'2018-07-12 18:45:09',357981974931046400,954,22),(15571,'2018-07-12 18:45:10',201102155896193024,954,32),(15572,'2018-07-12 18:45:11',173468649884090368,954,14),(15573,'2018-07-12 18:45:12',150649616772235264,954,14),(15574,'2018-07-12 18:45:14',274301199841361920,954,28),(15575,'2018-07-12 18:45:15',274301199841361920,954,14),(15576,'2018-07-12 18:45:16',274301199841361920,954,20),(15577,'2018-07-12 18:45:18',201102155896193024,954,24),(15578,'2018-07-12 18:45:18',173468649884090368,954,9),(15579,'2018-07-12 18:45:21',173468649884090368,954,20),(15580,'2018-07-12 18:45:22',201102155896193024,954,21),(15581,'2018-07-12 18:45:23',274301199841361920,954,12),(15582,'2018-07-12 18:45:24',274301199841361920,954,28),(15583,'2018-07-12 18:45:27',173468649884090368,954,10),(15584,'2018-07-12 18:45:30',459879057295671296,954,23),(15585,'2018-07-12 18:45:31',459879057295671296,954,16),(15586,'2018-07-12 18:45:32',459879057295671296,954,15),(15587,'2018-07-12 18:45:33',274301199841361920,954,25),(15588,'2018-07-12 18:45:37',459881667104997376,954,13),(15589,'2018-07-12 18:45:37',459881667104997376,954,12),(15590,'2018-07-12 18:45:37',459881667104997376,954,8),(15591,'2018-07-12 18:45:40',173468649884090368,954,18),(15592,'2018-07-12 19:30:11',111973500121579520,956,10),(15593,'2018-07-12 19:30:12',274301199841361920,956,22),(15594,'2018-07-12 20:36:33',390938926761639936,958,21),(15595,'2018-07-12 20:36:34',285930195125403650,958,14),(15596,'2018-07-12 21:21:45',457300954660995114,959,26),(15597,'2018-07-12 21:21:47',390938926761639936,959,28),(15598,'2018-07-12 21:35:37',150649616772235264,960,13),(15599,'2018-07-12 21:35:43',150649616772235264,960,19),(15600,'2018-07-12 21:36:03',150649616772235264,960,21),(15601,'2018-07-12 21:36:04',150649616772235264,960,13),(15602,'2018-07-12 21:36:06',150649616772235264,960,23),(15603,'2018-07-12 21:36:09',150649616772235264,960,21),(15604,'2018-07-12 21:36:17',457300954660995114,960,14),(15605,'2018-07-12 21:36:20',457300954660995114,960,20),(15606,'2018-07-12 21:45:13',357981974931046400,961,18),(15607,'2018-07-12 21:45:18',357981974931046400,961,30),(15608,'2018-07-12 21:45:32',357981974931046400,961,15),(15609,'2018-07-12 21:45:34',357981974931046400,961,20),(15610,'2018-07-12 21:45:34',150649616772235264,961,15),(15611,'2018-07-12 21:45:39',150649616772235264,961,14),(15612,'2018-07-12 21:45:45',357981974931046400,961,25),(15613,'2018-07-12 21:45:58',357981974931046400,961,31),(15614,'2018-07-12 22:04:20',457300954660995114,962,24),(15615,'2018-07-12 22:04:22',457300954660995114,962,19),(15616,'2018-07-12 22:04:23',274301199841361920,962,27),(15617,'2018-07-12 22:04:24',274301199841361920,962,17),(15618,'2018-07-12 22:04:24',457300954660995114,962,11),(15619,'2018-07-12 22:04:26',274301199841361920,962,18),(15620,'2018-07-12 22:04:26',457300954660995114,962,11),(15621,'2018-07-12 22:04:27',274301199841361920,962,28),(15622,'2018-07-12 22:04:28',457300954660995114,962,24),(15623,'2018-07-12 22:04:30',274301199841361920,962,19),(15624,'2018-07-12 22:04:30',457300954660995114,962,21),(15625,'2018-07-12 22:04:33',274301199841361920,962,20),(15626,'2018-07-12 22:46:07',433759248800022532,963,15),(15627,'2018-07-12 22:46:07',150649616772235264,963,16),(15628,'2018-07-12 22:46:07',460761978135248896,963,21),(15629,'2018-07-12 22:46:07',433759248800022532,963,14),(15630,'2018-07-12 22:46:08',457300954660995114,963,15),(15631,'2018-07-12 22:46:08',433759248800022532,963,19),(15632,'2018-07-12 22:46:08',274301199841361920,963,29),(15633,'2018-07-12 22:46:08',433759248800022532,963,14),(15634,'2018-07-12 22:46:09',274301199841361920,963,13),(15635,'2018-07-12 22:46:09',150649616772235264,963,20),(15636,'2018-07-12 22:46:09',433759248800022532,963,10),(15637,'2018-07-12 22:46:09',274301199841361920,963,29),(15638,'2018-07-12 22:46:09',460761978135248896,963,16),(15639,'2018-07-12 22:46:09',274301199841361920,963,29),(15640,'2018-07-12 22:59:30',460761978135248896,964,25),(15641,'2018-07-12 22:59:30',274301199841361920,964,28),(15642,'2018-07-12 22:59:31',274301199841361920,964,11),(15643,'2018-07-12 22:59:31',274301199841361920,964,29),(15644,'2018-07-12 22:59:32',274301199841361920,964,26),(15645,'2018-07-12 22:59:32',460761978135248896,964,18),(15646,'2018-07-12 22:59:32',274301199841361920,964,25),(15647,'2018-07-12 22:59:33',274301199841361920,964,24),(15648,'2018-07-12 22:59:34',460761978135248896,964,22),(15649,'2018-07-12 22:59:35',457300954660995114,964,19),(15650,'2018-07-12 23:30:13',457300954660995114,965,22),(15651,'2018-07-12 23:30:14',460761978135248896,965,14),(15652,'2018-07-12 23:30:15',457300954660995114,965,26),(15653,'2018-07-12 23:30:17',457300954660995114,965,11),(15654,'2018-07-12 23:30:19',460761978135248896,965,15),(15655,'2018-07-12 23:30:20',457300954660995114,965,18),(15656,'2018-07-12 23:30:22',457300954660995114,965,19),(15657,'2018-07-12 23:30:22',460761978135248896,965,27),(15658,'2018-07-12 23:30:23',466996164789796884,965,14),(15659,'2018-07-12 23:30:25',457300954660995114,965,26),(15660,'2018-07-12 23:30:26',460761978135248896,965,12),(15661,'2018-07-12 23:30:29',457300954660995114,965,25),(15662,'2018-07-12 23:30:30',460761978135248896,965,23),(15663,'2018-07-12 23:30:35',466996164789796884,965,11),(15664,'2018-07-12 23:30:39',460761978135248896,965,27),(15665,'2018-07-12 23:30:42',460761978135248896,965,29),(15666,'2018-07-12 23:30:46',466996164789796884,965,6),(15667,'2018-07-12 23:30:47',460761978135248896,965,16),(15668,'2018-07-12 23:30:47',457300954660995114,965,15),(15669,'2018-07-12 23:30:50',457300954660995114,965,20),(15670,'2018-07-12 23:30:54',457300954660995114,965,14),(15671,'2018-07-12 23:30:56',466996164789796884,965,11),(15672,'2018-07-12 23:46:07',460761978135248896,966,14),(15673,'2018-07-12 23:46:09',457300954660995114,966,12),(15674,'2018-07-12 23:46:12',457300954660995114,966,16),(15675,'2018-07-12 23:46:13',460761978135248896,966,12),(15676,'2018-07-12 23:46:18',460761978135248896,966,13),(15677,'2018-07-12 23:46:22',457300954660995114,966,16),(15678,'2018-07-12 23:46:31',460761978135248896,966,25),(15679,'2018-07-12 23:46:38',460761978135248896,966,22),(15680,'2018-07-12 23:46:45',460761978135248896,966,22),(15681,'2018-07-12 23:46:59',460761978135248896,966,17),(15682,'2018-07-12 23:47:09',460761978135248896,966,26),(15683,'2018-07-12 23:47:16',460761978135248896,966,25),(15684,'2018-07-12 23:47:22',457300954660995114,966,17),(15685,'2018-07-12 23:47:31',457300954660995114,966,11),(15686,'2018-07-12 23:47:36',460761978135248896,966,21),(15687,'2018-07-12 23:47:45',466996164789796884,966,7),(15688,'2018-07-12 23:47:57',466996164789796884,966,11),(15689,'2018-07-12 23:48:07',466996164789796884,966,11),(15690,'2018-07-12 23:48:14',457300954660995114,966,20),(15691,'2018-07-12 23:48:25',466996164789796884,966,13),(15692,'2018-07-13 00:29:20',438094660712267778,967,9),(15693,'2018-07-13 00:29:24',438094660712267778,967,18),(15694,'2018-07-13 00:29:26',438094660712267778,967,10),(15695,'2018-07-13 00:29:31',438094660712267778,967,12),(15696,'2018-07-13 00:29:31',460761978135248896,967,24),(15697,'2018-07-13 00:29:33',438094660712267778,967,20),(15698,'2018-07-13 00:29:38',460761978135248896,967,17),(15699,'2018-07-13 00:29:42',460761978135248896,967,27),(15700,'2018-07-13 00:29:46',460761978135248896,967,26),(15701,'2018-07-13 00:29:52',438094660712267778,967,20),(15702,'2018-07-13 00:29:55',438094660712267778,967,12),(15703,'2018-07-13 00:29:58',438094660712267778,967,17),(15704,'2018-07-13 00:30:01',201102155896193024,967,31),(15705,'2018-07-13 00:30:01',201102155896193024,967,27),(15706,'2018-07-13 00:30:02',201102155896193024,967,22),(15707,'2018-07-13 00:30:05',460761978135248896,967,26),(15708,'2018-07-13 00:30:08',201102155896193024,967,29),(15709,'2018-07-13 01:05:37',460761978135248896,968,20),(15710,'2018-07-13 01:14:39',285930195125403650,969,8),(15711,'2018-07-13 01:14:40',460761978135248896,969,27),(15712,'2018-07-13 01:48:03',465785309821534248,970,15),(15713,'2018-07-13 01:48:05',465785309821534248,970,17),(15714,'2018-07-13 01:48:08',465785309821534248,970,9),(15715,'2018-07-13 01:48:10',465785309821534248,970,13),(15716,'2018-07-13 01:48:12',465785309821534248,970,18),(15717,'2018-07-13 01:58:55',201102155896193024,971,24),(15718,'2018-07-13 01:58:56',454823752925052930,971,17),(15719,'2018-07-13 01:58:56',285930195125403650,971,17),(15720,'2018-07-13 01:58:56',201102155896193024,971,28),(15721,'2018-07-13 01:58:56',454823752925052930,971,16),(15722,'2018-07-13 01:58:57',454823752925052930,971,18),(15723,'2018-07-13 01:58:57',454823752925052930,971,21),(15724,'2018-07-13 02:34:45',200340393596944384,972,17),(15725,'2018-07-13 02:34:46',200340393596944384,972,13),(15726,'2018-07-13 02:34:46',460761978135248896,972,19),(15727,'2018-07-13 02:34:46',457300954660995114,972,12),(15728,'2018-07-13 02:34:47',200340393596944384,972,17),(15729,'2018-07-13 02:34:48',200340393596944384,972,26),(15730,'2018-07-13 02:34:48',457300954660995114,972,27),(15731,'2018-07-13 02:34:49',200340393596944384,972,15),(15732,'2018-07-13 02:34:49',200340393596944384,972,18),(15733,'2018-07-13 03:01:48',200340393596944384,973,10),(15734,'2018-07-13 03:01:49',200340393596944384,973,11),(15735,'2018-07-13 03:01:49',460761978135248896,973,24),(15736,'2018-07-13 03:01:50',200340393596944384,973,13),(15737,'2018-07-13 03:01:52',457300954660995114,973,17),(15738,'2018-07-13 03:01:52',200340393596944384,973,14),(15739,'2018-07-13 03:01:52',460761978135248896,973,12),(15740,'2018-07-13 03:01:54',200340393596944384,973,17),(15741,'2018-07-13 03:01:56',460761978135248896,973,27),(15742,'2018-07-13 03:01:56',200340393596944384,973,15),(15743,'2018-07-13 03:01:57',200340393596944384,973,19),(15744,'2018-07-13 03:01:58',200340393596944384,973,26),(15745,'2018-07-13 03:02:00',460761978135248896,973,20),(15746,'2018-07-13 03:30:54',285930195125403650,974,17),(15747,'2018-07-13 03:30:54',200340393596944384,974,21),(15748,'2018-07-13 03:30:54',285930195125403650,974,10),(15749,'2018-07-13 03:30:54',200340393596944384,974,17),(15750,'2018-07-13 03:30:55',200340393596944384,974,18),(15751,'2018-07-13 03:30:55',285930195125403650,974,16),(15752,'2018-07-13 03:30:56',285930195125403650,974,9),(15753,'2018-07-13 03:30:56',200340393596944384,974,18),(15754,'2018-07-13 03:30:56',200340393596944384,974,11),(15755,'2018-07-13 03:30:57',285930195125403650,974,11),(15756,'2018-07-13 03:30:57',200340393596944384,974,14),(15757,'2018-07-13 03:30:58',457300954660995114,974,14),(15758,'2018-07-13 04:04:07',457300954660995114,975,13),(15759,'2018-07-13 04:04:10',457300954660995114,975,18),(15760,'2018-07-13 04:04:14',457300954660995114,975,29),(15761,'2018-07-13 04:04:18',457300954660995114,975,20),(15762,'2018-07-13 04:04:22',457300954660995114,975,26),(15763,'2018-07-13 04:04:26',457300954660995114,975,12),(15764,'2018-07-13 04:04:39',200340393596944384,975,18),(15765,'2018-07-13 04:04:41',200340393596944384,975,25),(15766,'2018-07-13 04:04:41',457300954660995114,975,17),(15767,'2018-07-13 04:04:41',200340393596944384,975,18),(15768,'2018-07-13 04:04:42',200340393596944384,975,24),(15769,'2018-07-13 04:04:43',200340393596944384,975,11),(15770,'2018-07-13 04:04:44',457300954660995114,975,24),(15771,'2018-07-13 04:29:41',457300954660995114,976,21),(15772,'2018-07-13 04:29:51',433759248800022532,976,16),(15773,'2018-07-13 04:29:51',457300954660995114,976,21),(15774,'2018-07-13 04:30:00',457300954660995114,976,25),(15775,'2018-07-13 04:30:12',433759248800022532,976,18),(15776,'2018-07-13 04:30:15',433759248800022532,976,18),(15777,'2018-07-13 04:30:19',433759248800022532,976,12),(15778,'2018-07-13 04:30:19',457300954660995114,976,14),(15779,'2018-07-13 04:30:21',433759248800022532,976,15),(15780,'2018-07-13 04:30:23',457300954660995114,976,27),(15781,'2018-07-13 04:30:25',433759248800022532,976,22),(15782,'2018-07-13 04:30:27',457300954660995114,976,13),(15783,'2018-07-13 04:30:28',433759248800022532,976,10),(15784,'2018-07-13 04:30:31',433759248800022532,976,17),(15785,'2018-07-13 04:30:51',457300954660995114,976,19),(15786,'2018-07-13 04:30:56',457300954660995114,976,21),(15787,'2018-07-13 04:31:04',433759248800022532,976,15),(15788,'2018-07-13 04:31:09',200340393596944384,976,13),(15789,'2018-07-13 04:31:10',200340393596944384,976,18),(15790,'2018-07-13 04:31:10',200340393596944384,976,18),(15791,'2018-07-13 04:31:11',200340393596944384,976,24),(15792,'2018-07-13 04:31:11',200340393596944384,976,23),(15793,'2018-07-13 05:00:00',460761978135248896,977,29),(15794,'2018-07-13 05:00:01',390618369545601028,977,21),(15795,'2018-07-13 05:00:02',390618369545601028,977,24),(15796,'2018-07-13 05:00:03',460761978135248896,977,21),(15797,'2018-07-13 05:00:04',390618369545601028,977,19),(15798,'2018-07-13 05:00:05',460761978135248896,977,23),(15799,'2018-07-13 05:00:08',390618369545601028,977,22),(15800,'2018-07-13 05:00:08',460761978135248896,977,15),(15801,'2018-07-13 05:00:10',457300954660995114,977,12),(15802,'2018-07-13 05:00:10',390618369545601028,977,22),(15803,'2018-07-13 05:00:11',460761978135248896,977,20),(15804,'2018-07-13 05:00:12',457300954660995114,977,16),(15805,'2018-07-13 05:00:13',390618369545601028,977,24),(15806,'2018-07-13 05:00:14',460761978135248896,977,17),(15807,'2018-07-13 05:20:32',457300954660995114,978,13),(15808,'2018-07-13 05:20:33',390938926761639936,978,13),(15809,'2018-07-13 05:20:33',200340393596944384,978,24),(15810,'2018-07-13 05:20:34',200340393596944384,978,19),(15811,'2018-07-13 05:20:34',390938926761639936,978,25),(15812,'2018-07-13 05:20:34',200340393596944384,978,26),(15813,'2018-07-13 05:20:35',457300954660995114,978,20),(15814,'2018-07-13 05:20:35',200340393596944384,978,12),(15815,'2018-07-13 05:20:36',390938926761639936,978,23),(15816,'2018-07-13 05:20:37',390938926761639936,978,16),(15817,'2018-07-13 05:20:39',390618369545601028,978,16),(15818,'2018-07-13 05:20:39',200340393596944384,978,18),(15819,'2018-07-13 05:20:39',390938926761639936,978,18),(15820,'2018-07-13 05:20:39',200340393596944384,978,14),(15821,'2018-07-13 05:20:40',200340393596944384,978,19),(15822,'2018-07-13 05:20:41',390618369545601028,978,19),(15823,'2018-07-13 05:20:41',200340393596944384,978,17),(15824,'2018-07-13 05:20:43',390618369545601028,978,23),(15825,'2018-07-13 05:20:46',390618369545601028,978,24),(15826,'2018-07-13 05:20:48',390618369545601028,978,24),(15827,'2018-07-13 05:20:51',390618369545601028,978,13),(15828,'2018-07-13 05:20:58',457300954660995114,978,19),(15829,'2018-07-13 05:21:03',457300954660995114,978,19),(15830,'2018-07-13 05:21:41',294657701617598464,978,15),(15831,'2018-07-13 05:38:13',201102155896193024,979,35),(15832,'2018-07-13 05:38:14',201102155896193024,979,24),(15833,'2018-07-13 05:38:16',201102155896193024,979,28),(15834,'2018-07-13 05:38:17',201102155896193024,979,32),(15835,'2018-07-13 05:38:20',201102155896193024,979,19),(15836,'2018-07-13 05:38:21',201102155896193024,979,17),(15837,'2018-07-13 05:38:48',454823752925052930,979,22),(15838,'2018-07-13 05:38:48',454823752925052930,979,13),(15839,'2018-07-13 05:38:50',454823752925052930,979,10),(15840,'2018-07-13 05:38:50',454823752925052930,979,18),(15841,'2018-07-13 05:38:51',454823752925052930,979,19),(15842,'2018-07-13 05:38:52',454823752925052930,979,23),(15843,'2018-07-13 05:38:53',454823752925052930,979,16),(15844,'2018-07-13 05:38:54',454823752925052930,979,22),(15845,'2018-07-13 05:39:06',433759248800022532,979,22),(15846,'2018-07-13 05:39:08',433759248800022532,979,13),(15847,'2018-07-13 05:39:09',433759248800022532,979,14),(15848,'2018-07-13 05:39:11',433759248800022532,979,18),(15849,'2018-07-13 05:39:13',433759248800022532,979,17),(15850,'2018-07-13 06:20:09',460761978135248896,980,13),(15851,'2018-07-13 06:21:58',459879057295671296,980,20),(15852,'2018-07-13 06:21:58',459879057295671296,980,11),(15853,'2018-07-13 06:22:01',459879057295671296,980,10),(15854,'2018-07-13 06:22:03',459879057295671296,980,10),(15855,'2018-07-13 06:22:04',459879057295671296,980,22),(15856,'2018-07-13 06:22:06',459879057295671296,980,19),(15857,'2018-07-13 06:22:46',459873273308643328,980,16),(15858,'2018-07-13 06:22:47',459873273308643328,980,21),(15859,'2018-07-13 06:22:48',459873273308643328,980,12),(15860,'2018-07-13 06:22:50',459873273308643328,980,14),(15861,'2018-07-13 06:23:00',459873273308643328,980,28),(15862,'2018-07-13 06:23:07',459873273308643328,980,27),(15863,'2018-07-13 06:23:08',459873273308643328,980,11),(15864,'2018-07-13 06:23:41',459881667104997376,980,14),(15865,'2018-07-13 06:23:42',459881667104997376,980,15),(15866,'2018-07-13 06:23:44',459881667104997376,980,13),(15867,'2018-07-13 06:23:51',459881667104997376,980,10),(15868,'2018-07-13 06:23:52',459881667104997376,980,14),(15869,'2018-07-13 06:24:39',459876383431327746,980,18),(15870,'2018-07-13 06:24:40',459876383431327746,980,16),(15871,'2018-07-13 06:24:42',459876383431327746,980,17),(15872,'2018-07-13 06:24:47',459876383431327746,980,11),(15873,'2018-07-13 06:24:48',459876383431327746,980,20),(15874,'2018-07-13 06:25:04',459879057295671296,980,23),(15875,'2018-07-13 06:25:05',459879057295671296,980,22),(15876,'2018-07-13 06:32:37',460761978135248896,981,16),(15877,'2018-07-13 06:32:39',460761978135248896,981,14),(15878,'2018-07-13 07:32:50',457300954660995114,982,27),(15879,'2018-07-13 07:32:51',224083099246395403,982,28),(15880,'2018-07-13 07:32:51',224083099246395403,982,24),(15881,'2018-07-13 07:32:54',224083099246395403,982,21),(15882,'2018-07-13 07:45:59',224083099246395403,983,32),(15883,'2018-07-13 07:45:59',460761978135248896,983,11),(15884,'2018-07-13 07:45:59',457300954660995114,983,17),(15885,'2018-07-13 07:45:59',224083099246395403,983,40),(15886,'2018-07-13 07:46:00',224083099246395403,983,41),(15887,'2018-07-13 08:30:29',357981974931046400,984,37),(15888,'2018-07-13 08:30:30',224083099246395403,984,22),(15889,'2018-07-13 08:30:30',224083099246395403,984,23),(15890,'2018-07-13 08:30:31',224083099246395403,984,30),(15891,'2018-07-13 08:30:32',224083099246395403,984,23),(15892,'2018-07-13 08:30:33',357981974931046400,984,17),(15893,'2018-07-13 08:30:36',224083099246395403,984,39),(15894,'2018-07-13 08:44:44',357981974931046400,985,16),(15895,'2018-07-13 08:44:44',274301199841361920,985,15),(15896,'2018-07-13 08:44:44',274301199841361920,985,21),(15897,'2018-07-13 08:44:45',357981974931046400,985,19),(15898,'2018-07-13 08:44:45',274301199841361920,985,26),(15899,'2018-07-13 08:44:45',274301199841361920,985,24),(15900,'2018-07-13 08:44:46',457300954660995114,985,14),(15901,'2018-07-13 08:44:46',274301199841361920,985,16),(15902,'2018-07-13 08:44:47',274301199841361920,985,13),(15903,'2018-07-13 08:44:47',274301199841361920,985,16),(15904,'2018-07-13 09:06:12',457300954660995114,986,29),(15905,'2018-07-13 09:06:12',460761978135248896,986,19),(15906,'2018-07-13 09:06:14',163655183438446593,986,10),(15907,'2018-07-13 09:06:14',457300954660995114,986,26),(15908,'2018-07-13 09:06:14',460761978135248896,986,18),(15909,'2018-07-13 09:06:16',460761978135248896,986,21),(15910,'2018-07-13 09:06:16',163655183438446593,986,7),(15911,'2018-07-13 09:06:16',457300954660995114,986,13),(15912,'2018-07-13 09:06:17',357981974931046400,986,34),(15913,'2018-07-13 09:06:18',457300954660995114,986,16),(15914,'2018-07-13 09:06:18',163655183438446593,986,13),(15915,'2018-07-13 09:06:19',460761978135248896,986,15),(15916,'2018-07-13 09:31:37',325565391478718464,987,33),(15917,'2018-07-13 09:31:38',466821403027701760,987,12),(15918,'2018-07-13 09:31:38',457300954660995114,987,15),(15919,'2018-07-13 09:31:38',325565391478718464,987,27),(15920,'2018-07-13 09:31:38',224083099246395403,987,38),(15921,'2018-07-13 09:31:39',325565391478718464,987,34),(15922,'2018-07-13 09:31:39',460761978135248896,987,26),(15923,'2018-07-13 09:31:39',466821403027701760,987,12),(15924,'2018-07-13 09:31:40',325565391478718464,987,22),(15925,'2018-07-13 09:31:40',457300954660995114,987,28),(15926,'2018-07-13 09:31:40',466821403027701760,987,16),(15927,'2018-07-13 09:31:42',325565391478718464,987,19),(15928,'2018-07-13 09:31:42',457300954660995114,987,27),(15929,'2018-07-13 09:31:43',163655183438446593,987,12),(15930,'2018-07-13 09:46:13',325565391478718464,988,38),(15931,'2018-07-13 09:46:14',457300954660995114,988,29),(15932,'2018-07-13 09:46:14',460761978135248896,988,24),(15933,'2018-07-13 09:46:14',173468649884090368,988,11),(15934,'2018-07-13 09:46:14',274301199841361920,988,23),(15935,'2018-07-13 09:46:15',325565391478718464,988,16),(15936,'2018-07-13 09:46:15',224083099246395403,988,19),(15937,'2018-07-13 09:46:15',274301199841361920,988,17),(15938,'2018-07-13 09:46:15',224083099246395403,988,41),(15939,'2018-07-13 09:46:15',274301199841361920,988,20),(15940,'2018-07-13 09:46:15',224083099246395403,988,29),(15941,'2018-07-13 09:46:16',224083099246395403,988,27),(15942,'2018-07-13 10:36:17',466821403027701760,989,17),(15943,'2018-07-13 10:36:18',457300954660995114,989,13),(15944,'2018-07-13 10:36:18',460761978135248896,989,28),(15945,'2018-07-13 10:36:18',274301199841361920,989,17),(15946,'2018-07-13 10:36:18',466821403027701760,989,9),(15947,'2018-07-13 10:36:18',173468649884090368,989,20),(15948,'2018-07-13 10:36:18',173468649884090368,989,10),(15949,'2018-07-13 10:36:18',274301199841361920,989,28),(15950,'2018-07-13 10:36:19',464723134105255943,989,12),(15951,'2018-07-13 10:36:19',173468649884090368,989,14),(15952,'2018-07-13 10:36:19',274301199841361920,989,25),(15953,'2018-07-13 10:36:19',173468649884090368,989,14),(15954,'2018-07-13 10:36:19',464723134105255943,989,19),(15955,'2018-07-13 10:36:19',173468649884090368,989,18),(15956,'2018-07-13 10:36:19',274301199841361920,989,26),(15957,'2018-07-13 10:36:19',457300954660995114,989,23),(15958,'2018-07-13 10:36:20',224083099246395403,989,34),(15959,'2018-07-13 10:47:25',224083099246395403,990,38),(15960,'2018-07-13 10:47:37',224083099246395403,990,21),(15961,'2018-07-13 10:47:59',163655183438446593,990,7),(15962,'2018-07-13 10:48:14',224083099246395403,990,28),(15963,'2018-07-13 10:48:16',224083099246395403,990,41),(15964,'2018-07-13 10:48:26',224083099246395403,990,26),(15965,'2018-07-13 10:48:51',118124619117887488,990,19),(15966,'2018-07-13 10:48:53',118124619117887488,990,26),(15967,'2018-07-13 10:49:00',118124619117887488,990,25),(15968,'2018-07-13 10:49:12',118124619117887488,990,14),(15969,'2018-07-13 10:49:13',118124619117887488,990,23),(15970,'2018-07-13 10:49:16',118124619117887488,990,11),(15971,'2018-07-13 10:49:36',325565391478718464,990,25),(15972,'2018-07-13 10:49:39',325565391478718464,990,22),(15973,'2018-07-13 10:49:41',325565391478718464,990,34),(15974,'2018-07-13 10:49:42',163655183438446593,990,8),(15975,'2018-07-13 10:49:44',163655183438446593,990,13),(15976,'2018-07-13 10:49:53',325565391478718464,990,37),(15977,'2018-07-13 10:49:55',325565391478718464,990,27),(15978,'2018-07-13 10:50:19',466821403027701760,990,17),(15979,'2018-07-13 10:50:20',466821403027701760,990,17),(15980,'2018-07-13 10:50:22',466821403027701760,990,13),(15981,'2018-07-13 11:21:30',173468649884090368,991,15),(15982,'2018-07-13 11:21:31',357981974931046400,991,33),(15983,'2018-07-13 11:21:32',357981974931046400,991,20),(15984,'2018-07-13 11:21:33',211232684209340426,991,29),(15985,'2018-07-13 11:21:33',173468649884090368,991,20),(15986,'2018-07-13 11:21:33',466821403027701760,991,15),(15987,'2018-07-13 11:21:33',211232684209340426,991,13),(15988,'2018-07-13 11:21:34',211232684209340426,991,29),(15989,'2018-07-13 11:21:35',211232684209340426,991,26),(15990,'2018-07-13 11:21:35',357981974931046400,991,24),(15991,'2018-07-13 11:21:41',173468649884090368,991,9),(15992,'2018-07-13 11:21:43',211232684209340426,991,20),(15993,'2018-07-13 11:21:46',211232684209340426,991,20),(15994,'2018-07-13 11:21:50',357981974931046400,991,25),(15995,'2018-07-13 11:21:58',466821403027701760,991,14),(15996,'2018-07-13 11:22:01',466821403027701760,991,14),(15997,'2018-07-13 11:22:03',466821403027701760,991,17),(15998,'2018-07-13 11:22:19',211232684209340426,991,26),(15999,'2018-07-13 11:22:20',211232684209340426,991,28),(16000,'2018-07-13 11:22:22',211232684209340426,991,13),(16001,'2018-07-13 11:22:23',211232684209340426,991,29),(16002,'2018-07-13 11:22:29',357981974931046400,991,16),(16003,'2018-07-13 11:22:32',211232684209340426,991,21),(16004,'2018-07-13 11:30:48',357981974931046400,992,36),(16005,'2018-07-13 11:30:59',118124619117887488,992,19),(16006,'2018-07-13 11:31:12',173468649884090368,992,17),(16007,'2018-07-13 11:32:53',224083099246395403,992,25),(16008,'2018-07-13 11:32:59',224083099246395403,992,19),(16009,'2018-07-13 11:33:02',224083099246395403,992,34),(16010,'2018-07-13 11:33:15',224083099246395403,992,35),(16011,'2018-07-13 11:33:18',224083099246395403,992,32),(16012,'2018-07-13 11:33:56',357981974931046400,992,24),(16013,'2018-07-13 11:34:02',357981974931046400,992,26),(16014,'2018-07-13 11:34:15',357981974931046400,992,25),(16015,'2018-07-13 11:34:42',357981974931046400,992,32),(16016,'2018-07-13 11:35:00',357981974931046400,992,25),(16017,'2018-07-13 11:35:03',357981974931046400,992,25),(16018,'2018-07-13 12:00:50',274301199841361920,993,18),(16019,'2018-07-13 12:00:52',274301199841361920,993,13),(16020,'2018-07-13 12:00:53',274301199841361920,993,20),(16021,'2018-07-13 12:00:53',163655183438446593,993,15),(16022,'2018-07-13 12:00:54',274301199841361920,993,21),(16023,'2018-07-13 12:00:56',274301199841361920,993,28),(16024,'2018-07-13 12:00:57',274301199841361920,993,16),(16025,'2018-07-13 12:00:59',163655183438446593,993,15),(16026,'2018-07-13 12:01:04',274301199841361920,993,19),(16027,'2018-07-13 12:34:20',466821403027701760,994,14),(16028,'2018-07-13 12:34:20',224083099246395403,994,28),(16029,'2018-07-13 12:44:05',466821403027701760,995,22),(16030,'2018-07-13 12:44:06',224083099246395403,995,23),(16031,'2018-07-13 12:44:06',274301199841361920,995,18),(16032,'2018-07-13 12:44:07',163655183438446593,995,14),(16033,'2018-07-13 13:00:33',274301199841361920,996,25),(16034,'2018-07-13 13:00:34',150649616772235264,996,17),(16035,'2018-07-13 13:00:34',466821403027701760,996,20),(16036,'2018-07-13 13:00:34',466821403027701760,996,19),(16037,'2018-07-13 13:00:34',274301199841361920,996,22),(16038,'2018-07-13 13:00:35',224083099246395403,996,22),(16039,'2018-07-13 13:00:35',150649616772235264,996,19),(16040,'2018-07-13 13:18:42',466821403027701760,997,19),(16041,'2018-07-13 13:18:42',150649616772235264,997,16),(16042,'2018-07-13 13:18:42',224083099246395403,997,21),(16043,'2018-07-13 13:18:43',150649616772235264,997,15),(16044,'2018-07-13 13:18:45',466821403027701760,997,19),(16045,'2018-07-13 13:18:45',150649616772235264,997,16),(16046,'2018-07-13 13:18:48',466821403027701760,997,18),(16047,'2018-07-13 13:18:51',466821403027701760,997,12),(16048,'2018-07-13 13:18:52',173468649884090368,997,11),(16049,'2018-07-13 13:18:54',466821403027701760,997,16),(16050,'2018-07-13 13:18:55',173468649884090368,997,21),(16051,'2018-07-13 13:18:58',224083099246395403,997,23),(16052,'2018-07-13 13:36:13',466821403027701760,998,17),(16053,'2018-07-13 13:36:13',224083099246395403,998,18),(16054,'2018-07-13 13:36:14',274301199841361920,998,18),(16055,'2018-07-13 13:36:15',466821403027701760,998,13),(16056,'2018-07-13 13:36:15',274301199841361920,998,26),(16057,'2018-07-13 13:36:16',150649616772235264,998,25),(16058,'2018-07-13 13:36:17',274301199841361920,998,26),(16059,'2018-07-13 13:36:21',150649616772235264,998,15),(16060,'2018-07-13 13:36:22',274301199841361920,998,27),(16061,'2018-07-13 14:04:59',201102155896193024,999,16),(16062,'2018-07-13 14:04:59',224083099246395403,999,42),(16063,'2018-07-13 14:05:00',201102155896193024,999,31),(16064,'2018-07-13 14:05:00',224083099246395403,999,33),(16065,'2018-07-13 14:05:00',201102155896193024,999,28),(16066,'2018-07-13 14:05:00',173468649884090368,999,20),(16067,'2018-07-13 14:05:00',173468649884090368,999,8),(16068,'2018-07-13 14:05:01',173468649884090368,999,15),(16069,'2018-07-13 14:16:04',224083099246395403,1000,25),(16070,'2018-07-13 14:16:06',325565391478718464,1000,16),(16071,'2018-07-13 14:16:08',325565391478718464,1000,36),(16072,'2018-07-13 14:16:10',325565391478718464,1000,39),(16073,'2018-07-13 14:16:11',224083099246395403,1000,32),(16074,'2018-07-13 14:16:12',325565391478718464,1000,14),(16075,'2018-07-13 14:16:12',224083099246395403,1000,33),(16076,'2018-07-13 14:49:55',201102155896193024,1001,16),(16077,'2018-07-13 14:49:56',466821403027701760,1001,22),(16078,'2018-07-13 14:49:56',466821403027701760,1001,19),(16079,'2018-07-13 14:49:57',466821403027701760,1001,14),(16080,'2018-07-13 14:49:57',201102155896193024,1001,17),(16081,'2018-07-13 14:49:57',466821403027701760,1001,14),(16082,'2018-07-13 14:49:57',201102155896193024,1001,17),(16083,'2018-07-13 14:49:58',201102155896193024,1001,22),(16084,'2018-07-13 14:50:04',466821403027701760,1001,16),(16085,'2018-07-13 14:50:05',118124619117887488,1001,16),(16086,'2018-07-13 14:50:07',118124619117887488,1001,18),(16087,'2018-07-13 14:50:10',201102155896193024,1001,35),(16088,'2018-07-13 14:50:10',201102155896193024,1001,32),(16089,'2018-07-13 14:50:11',173468649884090368,1001,20),(16090,'2018-07-13 14:50:14',173468649884090368,1001,14),(16091,'2018-07-13 15:29:53',201102155896193024,1002,33),(16092,'2018-07-13 15:29:53',224083099246395403,1002,43),(16093,'2018-07-13 15:29:53',274301199841361920,1002,24),(16094,'2018-07-13 15:29:53',438094660712267778,1002,19),(16095,'2018-07-13 15:29:54',150649616772235264,1002,13),(16096,'2018-07-13 15:29:54',357981974931046400,1002,14),(16097,'2018-07-13 15:29:54',285930195125403650,1002,10),(16098,'2018-07-13 15:29:54',224083099246395403,1002,38),(16099,'2018-07-13 15:29:54',274301199841361920,1002,24),(16100,'2018-07-13 15:29:54',357981974931046400,1002,17),(16101,'2018-07-13 15:29:54',274301199841361920,1002,11),(16102,'2018-07-13 15:29:54',285930195125403650,1002,20),(16103,'2018-07-13 15:29:55',274301199841361920,1002,24),(16104,'2018-07-13 15:29:55',150649616772235264,1002,10),(16105,'2018-07-13 15:29:55',438094660712267778,1002,12),(16106,'2018-07-13 15:29:55',274301199841361920,1002,18),(16107,'2018-07-13 15:29:55',285930195125403650,1002,18),(16108,'2018-07-13 15:29:55',274301199841361920,1002,15),(16109,'2018-07-13 15:29:55',150649616772235264,1002,9),(16110,'2018-07-13 15:29:56',274301199841361920,1002,29),(16111,'2018-07-13 15:29:56',201102155896193024,1002,29),(16112,'2018-07-13 15:51:14',459879057295671296,1003,13),(16113,'2018-07-13 15:51:14',150649616772235264,1003,23),(16114,'2018-07-13 15:51:14',388505302292627456,1003,8),(16115,'2018-07-13 15:51:15',357981974931046400,1003,35),(16116,'2018-07-13 15:51:15',459879057295671296,1003,14),(16117,'2018-07-13 15:51:15',118124619117887488,1003,23),(16118,'2018-07-13 15:51:15',274301199841361920,1003,13),(16119,'2018-07-13 15:51:15',285930195125403650,1003,14),(16120,'2018-07-13 15:51:15',118124619117887488,1003,15),(16121,'2018-07-13 15:51:15',459879057295671296,1003,12),(16122,'2018-07-13 15:51:15',150649616772235264,1003,25),(16123,'2018-07-13 15:51:15',274301199841361920,1003,20),(16124,'2018-07-13 15:51:15',357981974931046400,1003,22),(16125,'2018-07-13 15:51:16',118124619117887488,1003,11),(16126,'2018-07-13 15:51:16',459879057295671296,1003,13),(16127,'2018-07-13 15:51:16',285930195125403650,1003,19),(16128,'2018-07-13 15:51:16',118124619117887488,1003,21),(16129,'2018-07-13 15:51:16',357981974931046400,1003,36),(16130,'2018-07-13 15:51:16',118124619117887488,1003,26),(16131,'2018-07-13 15:51:16',459879057295671296,1003,13),(16132,'2018-07-13 15:51:16',285930195125403650,1003,20),(16133,'2018-07-13 15:51:16',388505302292627456,1003,8),(16134,'2018-07-13 15:51:17',118124619117887488,1003,10),(16135,'2018-07-13 15:51:17',459879057295671296,1003,18),(16136,'2018-07-13 15:51:17',285930195125403650,1003,10),(16137,'2018-07-13 15:51:17',150649616772235264,1003,17),(16138,'2018-07-13 16:33:40',201102155896193024,1004,18),(16139,'2018-07-13 16:33:40',201102155896193024,1004,17),(16140,'2018-07-13 16:33:42',459876383431327746,1004,17),(16141,'2018-07-13 16:33:42',357981974931046400,1004,30),(16142,'2018-07-13 16:33:42',459876383431327746,1004,16),(16143,'2018-07-13 16:33:43',459876383431327746,1004,10),(16144,'2018-07-13 16:33:43',459876383431327746,1004,17),(16145,'2018-07-13 16:33:44',459876383431327746,1004,17),(16146,'2018-07-13 16:33:45',357981974931046400,1004,24),(16147,'2018-07-13 16:33:45',224083099246395403,1004,17),(16148,'2018-07-13 16:33:47',459881667104997376,1004,9),(16149,'2018-07-13 16:33:48',459881667104997376,1004,10),(16150,'2018-07-13 16:33:49',459881667104997376,1004,17),(16151,'2018-07-13 16:33:50',459881667104997376,1004,15),(16152,'2018-07-13 16:33:55',357981974931046400,1004,27),(16153,'2018-07-13 16:33:57',459881667104997376,1004,20),(16154,'2018-07-13 16:33:59',357981974931046400,1004,25),(16155,'2018-07-13 16:34:10',224083099246395403,1004,18),(16156,'2018-07-13 16:34:13',224083099246395403,1004,16),(16157,'2018-07-13 16:34:19',459879057295671296,1004,11),(16158,'2018-07-13 16:34:20',459879057295671296,1004,17),(16159,'2018-07-13 16:34:21',459879057295671296,1004,13),(16160,'2018-07-13 16:34:21',459879057295671296,1004,9),(16161,'2018-07-13 16:34:22',224083099246395403,1004,22),(16162,'2018-07-13 16:34:30',224083099246395403,1004,29),(16163,'2018-07-13 16:59:49',466821403027701760,1005,12),(16164,'2018-07-13 16:59:57',466821403027701760,1005,9),(16165,'2018-07-13 17:00:28',224083099246395403,1005,36),(16166,'2018-07-13 17:00:31',224083099246395403,1005,16),(16167,'2018-07-13 17:00:33',459873273308643328,1005,21),(16168,'2018-07-13 17:00:34',224083099246395403,1005,17),(16169,'2018-07-13 17:00:34',459873273308643328,1005,10),(16170,'2018-07-13 17:00:35',459873273308643328,1005,23),(16171,'2018-07-13 17:00:36',459873273308643328,1005,15),(16172,'2018-07-13 17:00:41',459873273308643328,1005,23),(16173,'2018-07-13 17:00:42',459873273308643328,1005,28),(16174,'2018-07-13 17:00:44',459873273308643328,1005,12),(16175,'2018-07-13 17:00:59',201102155896193024,1005,23),(16176,'2018-07-13 17:01:14',466821403027701760,1005,24),(16177,'2018-07-13 17:01:19',459881667104997376,1005,17),(16178,'2018-07-13 17:01:19',459881667104997376,1005,13),(16179,'2018-07-13 17:01:21',459881667104997376,1005,11),(16180,'2018-07-13 17:01:22',211232684209340426,1005,16),(16181,'2018-07-13 17:01:23',211232684209340426,1005,11),(16182,'2018-07-13 17:01:23',211232684209340426,1005,13),(16183,'2018-07-13 17:01:24',211232684209340426,1005,29),(16184,'2018-07-13 17:01:30',466821403027701760,1005,11),(16185,'2018-07-13 17:01:33',211232684209340426,1005,27),(16186,'2018-07-13 17:01:34',466821403027701760,1005,17),(16187,'2018-07-13 17:16:19',201102155896193024,1006,25),(16188,'2018-07-13 17:16:20',466821403027701760,1006,25),(16189,'2018-07-13 17:16:21',201102155896193024,1006,31),(16190,'2018-07-13 17:16:23',466821403027701760,1006,15),(16191,'2018-07-13 17:16:31',459873273308643328,1006,11),(16192,'2018-07-13 17:16:33',459873273308643328,1006,17),(16193,'2018-07-13 17:16:34',459873273308643328,1006,22),(16194,'2018-07-13 17:16:35',459873273308643328,1006,24),(16195,'2018-07-13 17:16:35',466821403027701760,1006,12),(16196,'2018-07-13 17:16:36',459873273308643328,1006,19),(16197,'2018-07-13 17:16:37',466821403027701760,1006,15),(16198,'2018-07-13 17:16:43',459873273308643328,1006,13),(16199,'2018-07-13 17:16:44',459873273308643328,1006,26),(16200,'2018-07-13 17:16:58',459884642192064512,1006,22),(16201,'2018-07-13 17:16:59',459884642192064512,1006,18),(16202,'2018-07-13 17:17:01',459884642192064512,1006,18),(16203,'2018-07-13 17:17:02',459884642192064512,1006,10),(16204,'2018-07-13 17:17:04',459884642192064512,1006,10),(16205,'2018-07-13 17:44:00',438094660712267778,1007,18),(16206,'2018-07-13 17:44:03',257137018897694721,1007,15),(16207,'2018-07-13 17:44:04',438094660712267778,1007,18),(16208,'2018-07-13 17:44:05',200340393596944384,1007,25),(16209,'2018-07-13 17:44:06',200340393596944384,1007,21),(16210,'2018-07-13 17:44:06',257137018897694721,1007,14),(16211,'2018-07-13 17:44:06',438094660712267778,1007,15),(16212,'2018-07-13 17:44:07',200340393596944384,1007,18),(16213,'2018-07-13 17:44:07',150649616772235264,1007,15),(16214,'2018-07-13 17:44:08',200340393596944384,1007,24),(16215,'2018-07-13 17:44:09',257137018897694721,1007,19),(16216,'2018-07-13 17:44:09',200340393596944384,1007,26),(16217,'2018-07-13 17:44:09',173468649884090368,1007,13),(16218,'2018-07-13 17:44:09',438094660712267778,1007,12),(16219,'2018-07-13 17:44:10',200340393596944384,1007,24),(16220,'2018-07-13 17:44:11',257137018897694721,1007,17),(16221,'2018-07-13 17:44:13',466821403027701760,1007,17),(16222,'2018-07-13 17:44:16',357981974931046400,1007,13),(16223,'2018-07-13 17:44:17',150649616772235264,1007,17),(16224,'2018-07-13 17:44:18',466821403027701760,1007,20),(16225,'2018-07-13 17:44:18',200340393596944384,1007,19),(16226,'2018-07-13 17:44:19',200340393596944384,1007,23),(16227,'2018-07-13 17:44:21',173468649884090368,1007,21),(16228,'2018-07-13 17:44:22',438094660712267778,1007,13),(16229,'2018-07-13 17:44:22',457300954660995114,1007,27),(16230,'2018-07-13 17:44:25',457300954660995114,1007,25),(16231,'2018-07-13 17:44:25',173468649884090368,1007,11),(16232,'2018-07-13 17:44:27',200340393596944384,1007,18),(16233,'2018-07-13 17:44:28',457300954660995114,1007,26),(16234,'2018-07-13 17:44:28',466821403027701760,1007,11),(16235,'2018-07-13 17:44:28',150649616772235264,1007,9),(16236,'2018-07-13 17:44:30',173468649884090368,1007,12),(16237,'2018-07-13 17:44:31',457300954660995114,1007,29),(16238,'2018-07-13 17:44:32',150649616772235264,1007,17),(16239,'2018-07-13 17:44:33',173468649884090368,1007,13),(16240,'2018-07-13 17:44:35',438094660712267778,1007,17),(16241,'2018-07-13 18:30:40',201102155896193024,1008,20),(16242,'2018-07-13 18:30:40',201102155896193024,1008,22),(16243,'2018-07-13 18:30:40',460761978135248896,1008,21),(16244,'2018-07-13 18:30:41',201102155896193024,1008,34),(16245,'2018-07-13 18:30:41',201102155896193024,1008,18),(16246,'2018-07-13 18:30:42',460761978135248896,1008,19),(16247,'2018-07-13 18:30:43',459883167160205313,1008,10),(16248,'2018-07-13 18:30:44',459883167160205313,1008,11),(16249,'2018-07-13 18:30:44',459883167160205313,1008,17),(16250,'2018-07-13 18:30:45',459883167160205313,1008,12),(16251,'2018-07-13 18:30:46',460761978135248896,1008,24),(16252,'2018-07-13 18:30:46',390938926761639936,1008,25),(16253,'2018-07-13 18:30:47',433759248800022532,1008,10),(16254,'2018-07-13 18:30:48',433759248800022532,1008,13),(16255,'2018-07-13 18:30:48',459834182961463299,1008,17),(16256,'2018-07-13 18:30:48',433759248800022532,1008,17),(16257,'2018-07-13 18:30:49',390938926761639936,1008,22),(16258,'2018-07-13 18:30:49',459834182961463299,1008,8),(16259,'2018-07-13 18:30:50',459834182961463299,1008,16),(16260,'2018-07-13 18:30:51',390938926761639936,1008,14),(16261,'2018-07-13 18:30:51',466821403027701760,1008,15),(16262,'2018-07-13 18:30:53',460761978135248896,1008,24),(16263,'2018-07-13 18:30:53',390938926761639936,1008,12),(16264,'2018-07-13 18:30:55',433759248800022532,1008,17),(16265,'2018-07-13 18:30:56',433759248800022532,1008,14),(16266,'2018-07-13 18:30:56',390938926761639936,1008,23),(16267,'2018-07-13 19:20:51',459873273308643328,1009,16),(16268,'2018-07-13 19:20:52',274301199841361920,1009,20),(16269,'2018-07-13 19:20:53',274301199841361920,1009,26),(16270,'2018-07-13 19:20:56',459873273308643328,1009,28),(16271,'2018-07-13 19:20:56',460761978135248896,1009,14),(16272,'2018-07-13 19:20:59',173468649884090368,1009,20),(16273,'2018-07-13 19:21:04',460761978135248896,1009,24),(16274,'2018-07-13 19:21:11',459873273308643328,1009,19),(16275,'2018-07-13 19:21:13',459873273308643328,1009,18),(16276,'2018-07-13 19:21:17',460761978135248896,1009,19),(16277,'2018-07-13 19:21:22',173468649884090368,1009,20),(16278,'2018-07-13 19:21:25',454823752925052930,1009,12),(16279,'2018-07-13 19:21:26',454823752925052930,1009,17),(16280,'2018-07-13 19:21:28',454823752925052930,1009,18),(16281,'2018-07-13 19:21:29',454823752925052930,1009,21),(16282,'2018-07-13 19:21:31',173468649884090368,1009,14),(16283,'2018-07-13 19:21:32',459876383431327746,1009,23),(16284,'2018-07-13 19:21:33',459876383431327746,1009,25),(16285,'2018-07-13 19:21:35',460761978135248896,1009,14),(16286,'2018-07-13 19:21:35',459876383431327746,1009,24),(16287,'2018-07-13 19:21:35',173468649884090368,1009,11),(16288,'2018-07-13 19:21:37',459876383431327746,1009,15),(16289,'2018-07-13 19:21:38',465785309821534248,1009,16),(16290,'2018-07-13 19:21:40',465785309821534248,1009,11),(16291,'2018-07-13 19:21:44',459883167160205313,1009,20),(16292,'2018-07-13 19:21:44',460761978135248896,1009,27),(16293,'2018-07-13 19:21:45',459883167160205313,1009,13),(16294,'2018-07-13 19:21:49',173468649884090368,1009,22),(16295,'2018-07-13 19:21:51',459883167160205313,1009,20),(16296,'2018-07-13 19:21:51',466180576357908480,1009,8),(16297,'2018-07-13 19:21:56',466180576357908480,1009,6),(16298,'2018-07-13 19:21:57',200340393596944384,1009,23),(16299,'2018-07-13 19:22:00',466180576357908480,1009,12),(16300,'2018-07-13 19:22:03',200340393596944384,1009,22),(16301,'2018-07-13 19:22:04',466180576357908480,1009,10),(16302,'2018-07-13 19:22:16',457300954660995114,1009,27),(16303,'2018-07-13 19:22:18',457300954660995114,1009,20),(16304,'2018-07-13 19:22:20',457300954660995114,1009,16),(16305,'2018-07-13 19:22:23',457300954660995114,1009,28),(16306,'2018-07-13 19:22:25',457300954660995114,1009,14),(16307,'2018-07-13 19:22:27',173468649884090368,1009,17),(16308,'2018-07-13 20:00:42',285930195125403650,1010,20),(16309,'2018-07-13 20:00:42',457300954660995114,1010,13),(16310,'2018-07-13 20:00:43',467413488961060875,1010,10),(16311,'2018-07-13 20:00:43',150649616772235264,1010,17),(16312,'2018-07-13 20:00:43',285930195125403650,1010,20),(16313,'2018-07-13 20:00:44',285930195125403650,1010,17),(16314,'2018-07-13 20:00:44',285930195125403650,1010,20),(16315,'2018-07-13 20:00:44',467413488961060875,1010,10),(16316,'2018-07-13 20:00:45',285930195125403650,1010,14),(16317,'2018-07-13 20:00:46',150649616772235264,1010,25),(16318,'2018-07-13 20:00:48',150649616772235264,1010,11),(16319,'2018-07-13 20:00:54',150649616772235264,1010,22),(16320,'2018-07-13 20:00:55',150649616772235264,1010,17),(16321,'2018-07-13 20:00:57',433759248800022532,1010,22),(16322,'2018-07-13 20:00:58',433759248800022532,1010,15),(16323,'2018-07-13 20:00:59',433759248800022532,1010,18),(16324,'2018-07-13 20:01:03',467413488961060875,1010,13),(16325,'2018-07-13 20:01:12',454823752925052930,1010,15),(16326,'2018-07-13 20:01:16',457300954660995114,1010,15),(16327,'2018-07-13 20:01:19',467413488961060875,1010,13),(16328,'2018-07-13 20:01:24',465785309821534248,1010,9),(16329,'2018-07-13 20:01:24',459883167160205313,1010,23),(16330,'2018-07-13 20:01:26',459883167160205313,1010,12),(16331,'2018-07-13 20:01:26',465785309821534248,1010,15),(16332,'2018-07-13 20:01:35',457300954660995114,1010,28),(16333,'2018-07-13 20:01:38',460761978135248896,1010,22),(16334,'2018-07-13 20:01:41',467413488961060875,1010,17),(16335,'2018-07-13 20:01:45',460761978135248896,1010,18),(16336,'2018-07-13 20:29:10',467413488961060875,1011,17),(16337,'2018-07-13 20:29:18',467413488961060875,1011,17),(16338,'2018-07-13 20:29:22',467413488961060875,1011,7),(16339,'2018-07-13 20:29:23',173468649884090368,1011,19),(16340,'2018-07-13 20:29:24',274301199841361920,1011,22),(16341,'2018-07-13 20:29:27',173468649884090368,1011,14),(16342,'2018-07-13 20:29:47',173468649884090368,1011,13),(16343,'2018-07-13 20:29:49',467413488961060875,1011,13),(16344,'2018-07-13 20:29:52',173468649884090368,1011,21),(16345,'2018-07-13 20:30:05',467413488961060875,1011,13),(16346,'2018-07-13 20:30:06',173468649884090368,1011,17),(16347,'2018-07-13 20:30:26',467413488961060875,1011,13),(16348,'2018-07-13 21:06:54',465785309821534248,1012,18),(16349,'2018-07-13 21:06:55',465785309821534248,1012,20),(16350,'2018-07-13 21:06:57',465785309821534248,1012,8),(16351,'2018-07-13 21:06:58',465785309821534248,1012,12),(16352,'2018-07-13 22:15:56',457300954660995114,1014,17),(16353,'2018-07-13 22:15:56',459873273308643328,1014,11),(16354,'2018-07-13 22:15:56',459873273308643328,1014,14),(16355,'2018-07-13 22:37:01',460761978135248896,1015,22),(16356,'2018-07-13 22:37:02',465785309821534248,1015,14),(16357,'2018-07-13 22:37:05',457300954660995114,1015,14),(16358,'2018-07-13 22:37:05',460761978135248896,1015,20),(16359,'2018-07-13 22:37:06',465785309821534248,1015,8),(16360,'2018-07-13 23:00:51',274301199841361920,1016,22),(16361,'2018-07-13 23:00:51',460761978135248896,1016,14),(16362,'2018-07-13 23:00:51',274301199841361920,1016,22),(16363,'2018-07-13 23:00:52',274301199841361920,1016,27),(16364,'2018-07-13 23:00:52',274301199841361920,1016,22),(16365,'2018-07-13 23:17:42',460761978135248896,1017,23),(16366,'2018-07-13 23:17:42',200340393596944384,1017,24),(16367,'2018-07-13 23:17:42',118124619117887488,1017,15),(16368,'2018-07-13 23:17:43',118124619117887488,1017,17),(16369,'2018-07-13 23:17:43',118124619117887488,1017,19),(16370,'2018-07-13 23:17:44',200340393596944384,1017,12),(16371,'2018-07-13 23:17:44',118124619117887488,1017,16),(16372,'2018-07-13 23:17:45',118124619117887488,1017,26),(16373,'2018-07-13 23:17:45',200340393596944384,1017,26),(16374,'2018-07-13 23:34:22',118124619117887488,1018,21),(16375,'2018-07-13 23:34:22',460761978135248896,1018,16),(16376,'2018-07-13 23:34:23',118124619117887488,1018,22),(16377,'2018-07-13 23:34:23',118124619117887488,1018,12),(16378,'2018-07-13 23:34:25',460761978135248896,1018,15),(16379,'2018-07-13 23:34:28',457300954660995114,1018,16),(16380,'2018-07-13 23:34:28',460761978135248896,1018,20),(16381,'2018-07-13 23:34:29',118124619117887488,1018,19),(16382,'2018-07-13 23:34:31',457300954660995114,1018,19),(16383,'2018-07-13 23:34:32',118124619117887488,1018,19),(16384,'2018-07-13 23:34:34',118124619117887488,1018,27),(16385,'2018-07-13 23:45:48',460761978135248896,1019,12),(16386,'2018-07-13 23:45:51',460761978135248896,1019,12),(16387,'2018-07-13 23:45:53',118124619117887488,1019,24),(16388,'2018-07-13 23:45:54',460761978135248896,1019,21),(16389,'2018-07-13 23:45:57',460761978135248896,1019,22),(16390,'2018-07-13 23:46:00',118124619117887488,1019,16),(16391,'2018-07-13 23:46:01',460761978135248896,1019,17),(16392,'2018-07-13 23:46:02',118124619117887488,1019,24),(16393,'2018-07-13 23:46:03',457300954660995114,1019,13),(16394,'2018-07-13 23:46:04',460761978135248896,1019,24),(16395,'2018-07-13 23:46:06',460761978135248896,1019,14),(16396,'2018-07-14 00:35:00',274301199841361920,1020,14),(16397,'2018-07-14 00:35:01',457300954660995114,1020,29),(16398,'2018-07-14 00:35:01',274301199841361920,1020,23),(16399,'2018-07-14 00:35:01',274301199841361920,1020,16),(16400,'2018-07-14 00:35:02',274301199841361920,1020,18),(16401,'2018-07-14 00:35:02',274301199841361920,1020,20),(16402,'2018-07-14 00:35:02',457300954660995114,1020,26),(16403,'2018-07-14 00:35:03',274301199841361920,1020,12),(16404,'2018-07-14 00:35:04',274301199841361920,1020,20),(16405,'2018-07-14 00:35:04',460761978135248896,1020,23),(16406,'2018-07-14 00:35:04',457300954660995114,1020,24),(16407,'2018-07-14 00:35:06',457300954660995114,1020,14),(16408,'2018-07-14 00:35:08',460761978135248896,1020,13),(16409,'2018-07-14 00:35:09',191198987490033664,1020,11),(16410,'2018-07-14 00:35:09',457300954660995114,1020,11),(16411,'2018-07-14 00:35:11',460761978135248896,1020,13),(16412,'2018-07-14 00:35:11',457300954660995114,1020,11),(16413,'2018-07-14 00:35:13',460761978135248896,1020,18),(16414,'2018-07-14 00:35:14',191198987490033664,1020,11),(16415,'2018-07-14 00:35:16',460761978135248896,1020,28),(16416,'2018-07-14 01:19:42',460761978135248896,1021,27),(16417,'2018-07-14 01:19:43',433759248800022532,1021,20),(16418,'2018-07-14 01:19:43',457300954660995114,1021,17),(16419,'2018-07-14 01:19:44',433759248800022532,1021,19),(16420,'2018-07-14 01:19:45',457300954660995114,1021,14),(16421,'2018-07-14 01:19:45',460761978135248896,1021,25),(16422,'2018-07-14 01:19:45',433759248800022532,1021,19),(16423,'2018-07-14 01:19:46',457300954660995114,1021,15),(16424,'2018-07-14 01:19:47',433759248800022532,1021,21),(16425,'2018-07-14 01:19:47',460761978135248896,1021,28),(16426,'2018-07-14 01:19:48',433759248800022532,1021,19),(16427,'2018-07-14 01:19:48',457300954660995114,1021,23),(16428,'2018-07-14 01:19:49',433759248800022532,1021,10),(16429,'2018-07-14 01:19:50',457300954660995114,1021,27),(16430,'2018-07-14 01:19:50',460761978135248896,1021,20),(16431,'2018-07-14 01:19:51',433759248800022532,1021,15),(16432,'2018-07-14 01:19:52',457300954660995114,1021,20),(16433,'2018-07-14 01:19:52',433759248800022532,1021,21),(16434,'2018-07-14 01:47:28',457300954660995114,1022,21),(16435,'2018-07-14 01:47:29',460761978135248896,1022,25),(16436,'2018-07-14 01:47:30',118124619117887488,1022,24),(16437,'2018-07-14 01:47:30',457300954660995114,1022,15),(16438,'2018-07-14 01:47:31',118124619117887488,1022,12),(16439,'2018-07-14 01:47:32',460761978135248896,1022,26),(16440,'2018-07-14 01:47:32',457300954660995114,1022,14),(16441,'2018-07-14 01:47:35',118124619117887488,1022,21),(16442,'2018-07-14 01:47:35',457300954660995114,1022,12),(16443,'2018-07-14 01:47:35',460761978135248896,1022,21),(16444,'2018-07-14 01:47:38',457300954660995114,1022,25),(16445,'2018-07-14 01:47:38',460761978135248896,1022,16),(16446,'2018-07-14 01:47:41',460761978135248896,1022,15),(16447,'2018-07-14 01:47:43',118124619117887488,1022,15),(16448,'2018-07-14 01:47:46',460761978135248896,1022,25),(16449,'2018-07-14 01:47:50',460761978135248896,1022,24),(16450,'2018-07-14 01:47:53',460761978135248896,1022,15),(16451,'2018-07-14 01:48:00',457300954660995114,1022,13),(16452,'2018-07-14 01:48:01',118124619117887488,1022,19),(16453,'2018-07-14 01:48:06',457300954660995114,1022,11),(16454,'2018-07-14 01:48:07',118124619117887488,1022,16),(16455,'2018-07-14 01:48:55',457289865516548098,1022,14),(16456,'2018-07-14 01:48:58',457300954660995114,1022,22),(16457,'2018-07-14 01:49:01',457289865516548098,1022,11),(16458,'2018-07-14 01:49:02',457300954660995114,1022,14),(16459,'2018-07-14 03:00:31',460761978135248896,1023,11),(16460,'2018-07-14 03:00:32',118124619117887488,1023,13),(16461,'2018-07-14 03:00:39',457300954660995114,1023,13),(16462,'2018-07-14 03:00:42',460761978135248896,1023,12),(16463,'2018-07-14 03:00:43',457300954660995114,1023,28),(16464,'2018-07-14 03:00:44',118124619117887488,1023,13),(16465,'2018-07-14 03:00:46',457300954660995114,1023,17),(16466,'2018-07-14 03:00:47',460761978135248896,1023,24),(16467,'2018-07-14 03:00:49',457300954660995114,1023,18),(16468,'2018-07-14 03:00:51',457300954660995114,1023,13),(16469,'2018-07-14 03:00:54',460761978135248896,1023,16),(16470,'2018-07-14 03:00:54',457300954660995114,1023,15),(16471,'2018-07-14 03:01:02',200340393596944384,1023,16),(16472,'2018-07-14 03:01:03',460761978135248896,1023,20),(16473,'2018-07-14 03:01:03',200340393596944384,1023,19),(16474,'2018-07-14 03:01:03',200340393596944384,1023,21),(16475,'2018-07-14 03:16:47',454823752925052930,1024,18),(16476,'2018-07-14 03:16:48',454823752925052930,1024,13),(16477,'2018-07-14 03:16:52',454823752925052930,1024,15),(16478,'2018-07-14 03:16:57',460761978135248896,1024,27),(16479,'2018-07-14 03:17:01',454823752925052930,1024,14),(16480,'2018-07-14 03:17:02',454823752925052930,1024,22),(16481,'2018-07-14 03:17:05',460761978135248896,1024,23),(16482,'2018-07-14 03:17:08',454823752925052930,1024,13),(16483,'2018-07-14 03:17:09',454823752925052930,1024,11),(16484,'2018-07-14 03:17:10',454823752925052930,1024,17),(16485,'2018-07-14 03:17:12',200340393596944384,1024,18),(16486,'2018-07-14 03:17:13',200340393596944384,1024,11),(16487,'2018-07-14 03:17:14',200340393596944384,1024,23),(16488,'2018-07-14 03:17:18',460761978135248896,1024,17),(16489,'2018-07-14 03:17:48',200340393596944384,1024,21),(16490,'2018-07-14 03:17:54',200340393596944384,1024,20),(16491,'2018-07-14 03:17:55',200340393596944384,1024,19),(16492,'2018-07-14 03:17:56',200340393596944384,1024,18),(16493,'2018-07-14 03:18:10',433759248800022532,1024,18),(16494,'2018-07-14 03:18:11',433759248800022532,1024,16),(16495,'2018-07-14 03:18:12',433759248800022532,1024,15),(16496,'2018-07-14 03:18:14',433759248800022532,1024,9),(16497,'2018-07-14 03:18:15',433759248800022532,1024,19),(16498,'2018-07-14 03:18:17',433759248800022532,1024,13),(16499,'2018-07-14 03:18:18',433759248800022532,1024,10),(16500,'2018-07-14 03:51:34',185698541052755968,1025,14),(16501,'2018-07-14 03:51:37',185698541052755968,1025,11),(16502,'2018-07-14 03:51:39',185698541052755968,1025,10),(16503,'2018-07-14 03:51:41',185698541052755968,1025,11),(16504,'2018-07-14 03:51:43',185698541052755968,1025,15),(16505,'2018-07-14 03:51:46',185698541052755968,1025,10),(16506,'2018-07-14 03:51:48',185698541052755968,1025,12),(16507,'2018-07-14 03:51:50',185698541052755968,1025,14),(16508,'2018-07-14 03:51:59',118124619117887488,1025,14),(16509,'2018-07-14 03:52:00',433759248800022532,1025,15),(16510,'2018-07-14 03:52:02',433759248800022532,1025,13),(16511,'2018-07-14 03:52:04',185698541052755968,1025,13),(16512,'2018-07-14 03:52:08',433759248800022532,1025,15),(16513,'2018-07-14 03:52:20',465785309821534248,1025,13),(16514,'2018-07-14 03:52:22',465785309821534248,1025,13),(16515,'2018-07-14 03:52:23',465785309821534248,1025,13),(16516,'2018-07-14 03:52:25',465785309821534248,1025,14),(16517,'2018-07-14 03:52:27',465785309821534248,1025,20),(16518,'2018-07-14 03:55:29',467413488961060875,1025,15),(16519,'2018-07-14 03:55:37',467413488961060875,1025,10),(16520,'2018-07-14 03:56:09',467413488961060875,1025,17),(16521,'2018-07-14 03:59:00',454823752925052930,1026,12),(16522,'2018-07-14 03:59:00',467413488961060875,1026,17),(16523,'2018-07-14 04:32:56',460761978135248896,1027,24),(16524,'2018-07-14 04:32:58',460761978135248896,1027,20),(16525,'2018-07-14 04:33:01',460761978135248896,1027,20),(16526,'2018-07-14 04:33:04',460761978135248896,1027,24),(16527,'2018-07-14 05:20:34',460761978135248896,1028,27),(16528,'2018-07-14 05:20:35',457300954660995114,1028,14),(16529,'2018-07-14 05:20:35',467413488961060875,1028,14),(16530,'2018-07-14 05:20:36',467413488961060875,1028,14),(16531,'2018-07-14 05:20:37',457300954660995114,1028,13),(16532,'2018-07-14 05:20:39',467413488961060875,1028,14),(16533,'2018-07-14 05:20:39',457300954660995114,1028,28),(16534,'2018-07-14 05:20:44',457300954660995114,1028,17),(16535,'2018-07-14 05:32:11',467413488961060875,1029,20),(16536,'2018-07-14 05:32:12',218498162745278474,1029,20),(16537,'2018-07-14 05:32:12',467413488961060875,1029,11),(16538,'2018-07-14 05:32:12',218498162745278474,1029,20),(16539,'2018-07-14 05:32:12',185698541052755968,1029,12),(16540,'2018-07-14 05:32:12',467413488961060875,1029,14),(16541,'2018-07-14 05:32:13',218498162745278474,1029,19),(16542,'2018-07-14 05:50:22',467413488961060875,1030,16),(16543,'2018-07-14 05:50:22',457300954660995114,1030,16),(16544,'2018-07-14 05:50:22',460761978135248896,1030,12),(16545,'2018-07-14 05:50:22',467413488961060875,1030,12),(16546,'2018-07-14 05:50:23',467413488961060875,1030,10),(16547,'2018-07-14 05:50:24',457300954660995114,1030,29),(16548,'2018-07-14 05:50:24',467413488961060875,1030,17),(16549,'2018-07-14 05:50:24',460761978135248896,1030,21),(16550,'2018-07-14 05:50:26',460761978135248896,1030,22),(16551,'2018-07-14 05:50:27',457300954660995114,1030,20),(16552,'2018-07-14 05:50:28',460761978135248896,1030,21),(16553,'2018-07-14 05:50:29',457300954660995114,1030,25),(16554,'2018-07-14 05:50:30',185698541052755968,1030,13),(16555,'2018-07-14 05:59:23',467413488961060875,1031,15),(16556,'2018-07-14 05:59:23',460761978135248896,1031,28),(16557,'2018-07-14 05:59:23',457300954660995114,1031,17),(16558,'2018-07-14 05:59:23',467413488961060875,1031,15),(16559,'2018-07-14 05:59:23',467413488961060875,1031,16),(16560,'2018-07-14 05:59:24',467413488961060875,1031,17),(16561,'2018-07-14 05:59:25',457300954660995114,1031,17),(16562,'2018-07-14 05:59:25',460761978135248896,1031,15),(16563,'2018-07-14 05:59:26',467413488961060875,1031,17),(16564,'2018-07-14 05:59:27',457300954660995114,1031,20),(16565,'2018-07-14 05:59:28',460761978135248896,1031,18),(16566,'2018-07-14 05:59:29',457300954660995114,1031,20),(16567,'2018-07-14 05:59:30',457300954660995114,1031,18),(16568,'2018-07-14 05:59:31',460761978135248896,1031,15),(16569,'2018-07-14 05:59:33',457300954660995114,1031,17),(16570,'2018-07-14 05:59:33',460761978135248896,1031,27),(16571,'2018-07-14 06:35:26',467413488961060875,1032,14),(16572,'2018-07-14 06:35:27',457300954660995114,1032,27),(16573,'2018-07-14 06:35:27',460761978135248896,1032,27),(16574,'2018-07-14 06:35:27',429615167492325376,1032,13),(16575,'2018-07-14 06:35:29',460761978135248896,1032,22),(16576,'2018-07-14 06:35:30',467413488961060875,1032,15),(16577,'2018-07-14 06:35:32',460761978135248896,1032,17),(16578,'2018-07-14 06:35:32',429615167492325376,1032,14),(16579,'2018-07-14 06:35:35',460761978135248896,1032,24),(16580,'2018-07-14 06:35:36',429615167492325376,1032,19),(16581,'2018-07-14 06:35:38',460761978135248896,1032,14),(16582,'2018-07-14 06:35:40',457300954660995114,1032,14),(16583,'2018-07-14 06:35:40',429615167492325376,1032,17),(16584,'2018-07-14 06:35:41',467413488961060875,1032,8),(16585,'2018-07-14 06:35:41',467413488961060875,1032,11),(16586,'2018-07-14 06:35:42',460761978135248896,1032,27),(16587,'2018-07-14 06:35:42',467413488961060875,1032,18),(16588,'2018-07-14 06:46:16',457300954660995114,1033,12),(16589,'2018-07-14 06:46:16',460761978135248896,1033,16),(16590,'2018-07-14 06:46:16',185698541052755968,1033,11),(16591,'2018-07-14 06:46:18',457300954660995114,1033,24),(16592,'2018-07-14 06:46:18',185698541052755968,1033,8),(16593,'2018-07-14 06:46:20',460761978135248896,1033,21),(16594,'2018-07-14 06:46:20',457300954660995114,1033,22),(16595,'2018-07-14 06:46:20',185698541052755968,1033,8),(16596,'2018-07-14 06:46:22',185698541052755968,1033,8),(16597,'2018-07-14 06:46:22',457300954660995114,1033,29),(16598,'2018-07-14 06:46:23',460761978135248896,1033,19),(16599,'2018-07-14 06:46:24',185698541052755968,1033,7),(16600,'2018-07-14 06:46:24',457300954660995114,1033,27),(16601,'2018-07-14 06:46:26',185698541052755968,1033,10),(16602,'2018-07-14 06:46:26',460761978135248896,1033,20),(16603,'2018-07-14 06:46:28',185698541052755968,1033,8),(16604,'2018-07-14 06:46:28',457300954660995114,1033,18),(16605,'2018-07-14 06:46:29',185698541052755968,1033,11),(16606,'2018-07-14 07:14:07',457300954660995114,1034,19),(16607,'2018-07-14 07:14:07',460761978135248896,1034,24),(16608,'2018-07-14 07:14:10',457300954660995114,1034,20),(16609,'2018-07-14 07:14:12',460761978135248896,1034,20),(16610,'2018-07-14 07:14:14',457300954660995114,1034,13),(16611,'2018-07-14 07:14:17',457300954660995114,1034,25),(16612,'2018-07-14 07:14:18',460761978135248896,1034,20),(16613,'2018-07-14 07:14:24',460761978135248896,1034,12),(16614,'2018-07-14 07:14:29',460761978135248896,1034,23),(16615,'2018-07-14 07:14:33',457300954660995114,1034,19),(16616,'2018-07-14 07:14:37',457300954660995114,1034,15),(16617,'2018-07-14 07:14:45',460761978135248896,1034,28),(16618,'2018-07-14 07:14:50',460761978135248896,1034,23),(16619,'2018-07-14 07:37:02',460761978135248896,1035,17),(16620,'2018-07-14 07:37:14',460761978135248896,1035,18),(16621,'2018-07-14 07:37:23',460761978135248896,1035,14),(16622,'2018-07-14 08:30:38',460761978135248896,1036,13),(16623,'2018-07-14 08:30:41',460761978135248896,1036,19),(16624,'2018-07-14 08:58:56',224083099246395403,1037,25),(16625,'2018-07-14 08:58:56',357981974931046400,1037,28),(16626,'2018-07-14 08:58:56',224083099246395403,1037,29),(16627,'2018-07-14 10:01:25',224083099246395403,1038,33),(16628,'2018-07-14 10:01:25',460761978135248896,1038,16),(16629,'2018-07-14 10:01:26',390938926761639936,1038,26),(16630,'2018-07-14 10:01:26',224083099246395403,1038,15),(16631,'2018-07-14 10:01:26',357981974931046400,1038,16),(16632,'2018-07-14 10:01:26',224083099246395403,1038,34),(16633,'2018-07-14 10:21:56',460761978135248896,1039,29),(16634,'2018-07-14 10:21:56',357981974931046400,1039,30),(16635,'2018-07-14 10:21:56',390938926761639936,1039,13),(16636,'2018-07-14 10:21:56',357981974931046400,1039,30),(16637,'2018-07-14 10:21:57',390938926761639936,1039,28),(16638,'2018-07-14 11:01:41',150649616772235264,1040,20),(16639,'2018-07-14 11:01:41',460761978135248896,1040,23),(16640,'2018-07-14 11:01:41',118124619117887488,1040,19),(16641,'2018-07-14 11:01:41',390938926761639936,1040,20),(16642,'2018-07-14 11:01:41',118124619117887488,1040,21),(16643,'2018-07-14 11:01:42',150649616772235264,1040,17),(16644,'2018-07-14 11:01:42',118124619117887488,1040,25),(16645,'2018-07-14 11:16:48',390938926761639936,1041,18),(16646,'2018-07-14 11:16:49',173468649884090368,1041,15),(16647,'2018-07-14 11:16:50',173468649884090368,1041,9),(16648,'2018-07-14 11:16:50',173468649884090368,1041,13),(16649,'2018-07-14 11:16:50',390938926761639936,1041,25),(16650,'2018-07-14 11:16:52',390938926761639936,1041,20),(16651,'2018-07-14 11:16:53',173468649884090368,1041,9),(16652,'2018-07-14 11:16:53',390938926761639936,1041,26),(16653,'2018-07-14 11:16:54',173468649884090368,1041,9),(16654,'2018-07-14 11:16:55',390938926761639936,1041,25),(16655,'2018-07-14 11:16:57',118124619117887488,1041,26),(16656,'2018-07-14 11:17:01',118124619117887488,1041,20),(16657,'2018-07-14 11:35:41',185698541052755968,1042,12),(16658,'2018-07-14 11:35:41',390938926761639936,1042,20),(16659,'2018-07-14 11:35:41',142612779377885185,1042,20),(16660,'2018-07-14 12:18:32',224083099246395403,1043,32),(16661,'2018-07-14 12:18:32',274301199841361920,1043,29),(16662,'2018-07-14 12:18:32',224083099246395403,1043,21),(16663,'2018-07-14 12:18:33',224083099246395403,1043,27),(16664,'2018-07-14 13:01:38',274301199841361920,1044,20),(16665,'2018-07-14 13:01:39',357981974931046400,1044,36),(16666,'2018-07-14 13:01:39',118124619117887488,1044,27),(16667,'2018-07-14 13:01:39',274301199841361920,1044,22),(16668,'2018-07-14 14:01:56',224083099246395403,1045,16),(16669,'2018-07-14 14:01:57',173468649884090368,1045,15),(16670,'2018-07-14 14:01:57',173468649884090368,1045,16),(16671,'2018-07-14 14:01:57',274301199841361920,1045,20),(16672,'2018-07-14 14:01:57',173468649884090368,1045,14),(16673,'2018-07-14 14:01:57',118124619117887488,1045,29),(16674,'2018-07-14 14:01:57',274301199841361920,1045,17),(16675,'2018-07-14 14:01:57',173468649884090368,1045,16),(16676,'2018-07-14 14:33:14',357981974931046400,1046,26),(16677,'2018-07-14 14:33:16',357981974931046400,1046,28),(16678,'2018-07-14 14:33:18',163655183438446593,1046,14),(16679,'2018-07-14 14:33:19',357981974931046400,1046,29),(16680,'2018-07-14 14:33:20',118124619117887488,1046,12),(16681,'2018-07-14 14:33:21',163655183438446593,1046,16),(16682,'2018-07-14 14:33:22',357981974931046400,1046,25),(16683,'2018-07-14 14:45:07',224083099246395403,1047,33),(16684,'2018-07-14 14:45:08',224083099246395403,1047,38),(16685,'2018-07-14 14:45:10',224083099246395403,1047,32),(16686,'2018-07-14 14:45:12',224083099246395403,1047,28),(16687,'2018-07-14 14:45:13',224083099246395403,1047,32),(16688,'2018-07-14 14:45:19',163655183438446593,1047,12),(16689,'2018-07-14 14:45:21',163655183438446593,1047,17),(16690,'2018-07-14 14:45:36',163655183438446593,1047,7),(16691,'2018-07-14 14:45:45',163655183438446593,1047,7),(16692,'2018-07-14 14:45:49',163655183438446593,1047,12),(16693,'2018-07-14 14:46:00',118124619117887488,1047,20),(16694,'2018-07-14 14:46:01',118124619117887488,1047,29),(16695,'2018-07-14 14:46:03',163655183438446593,1047,8),(16696,'2018-07-14 14:46:07',118124619117887488,1047,27),(16697,'2018-07-14 15:45:17',390938926761639936,1048,13),(16698,'2018-07-14 15:45:18',390938926761639936,1048,20),(16699,'2018-07-14 15:45:18',390938926761639936,1048,28),(16700,'2018-07-14 15:45:18',224083099246395403,1048,23),(16701,'2018-07-14 15:45:18',390938926761639936,1048,11),(16702,'2018-07-14 15:45:19',390938926761639936,1048,25),(16703,'2018-07-14 15:45:20',224083099246395403,1048,19),(16704,'2018-07-14 15:45:24',118124619117887488,1048,15),(16705,'2018-07-14 15:45:24',224083099246395403,1048,28),(16706,'2018-07-14 15:45:26',118124619117887488,1048,13),(16707,'2018-07-14 15:45:30',118124619117887488,1048,20),(16708,'2018-07-14 15:45:33',467413488961060875,1048,12),(16709,'2018-07-14 15:45:36',467413488961060875,1048,13),(16710,'2018-07-14 15:45:37',118124619117887488,1048,27),(16711,'2018-07-14 15:45:37',467413488961060875,1048,19),(16712,'2018-07-14 15:45:38',467413488961060875,1048,9),(16713,'2018-07-14 15:59:26',467413488961060875,1049,8),(16714,'2018-07-14 15:59:26',467413488961060875,1049,9),(16715,'2018-07-14 15:59:28',390938926761639936,1049,18),(16716,'2018-07-14 15:59:29',467413488961060875,1049,18),(16717,'2018-07-14 15:59:34',466821403027701760,1049,21),(16718,'2018-07-14 15:59:35',466821403027701760,1049,24),(16719,'2018-07-14 15:59:37',466821403027701760,1049,11),(16720,'2018-07-14 15:59:38',390938926761639936,1049,16),(16721,'2018-07-14 15:59:39',466821403027701760,1049,17),(16722,'2018-07-14 15:59:40',466821403027701760,1049,18),(16723,'2018-07-14 15:59:54',467413488961060875,1049,16),(16724,'2018-07-14 16:00:23',224083099246395403,1049,27),(16725,'2018-07-14 16:00:26',224083099246395403,1049,39),(16726,'2018-07-14 16:01:20',390938926761639936,1049,27),(16727,'2018-07-14 16:01:25',224083099246395403,1049,27),(16728,'2018-07-14 16:02:10',466821403027701760,1049,15),(16729,'2018-07-14 16:02:27',466180576357908480,1049,11),(16730,'2018-07-14 16:02:28',466180576357908480,1049,9),(16731,'2018-07-14 16:02:29',466180576357908480,1049,13),(16732,'2018-07-14 16:02:31',466180576357908480,1049,11),(16733,'2018-07-14 16:02:31',466180576357908480,1049,14),(16734,'2018-07-14 16:02:32',390938926761639936,1049,13),(16735,'2018-07-14 16:34:37',390938926761639936,1050,28),(16736,'2018-07-14 16:35:02',390938926761639936,1050,26),(16737,'2018-07-14 16:36:11',224083099246395403,1050,29),(16738,'2018-07-14 16:36:30',467413488961060875,1050,15),(16739,'2018-07-14 16:36:33',467413488961060875,1050,19),(16740,'2018-07-14 16:36:48',466821403027701760,1050,17),(16741,'2018-07-14 16:36:51',466821403027701760,1050,24),(16742,'2018-07-14 16:37:24',466180576357908480,1050,8),(16743,'2018-07-14 16:38:30',173468649884090368,1050,15),(16744,'2018-07-14 16:38:33',173468649884090368,1050,19),(16745,'2018-07-14 16:38:35',173468649884090368,1050,20),(16746,'2018-07-14 16:38:37',173468649884090368,1050,19),(16747,'2018-07-14 16:38:39',173468649884090368,1050,8),(16748,'2018-07-14 17:16:25',118124619117887488,1051,21),(16749,'2018-07-14 17:16:25',390938926761639936,1051,23),(16750,'2018-07-14 17:32:12',390938926761639936,1052,13),(16751,'2018-07-14 17:32:13',390938926761639936,1052,28),(16752,'2018-07-14 17:32:16',390938926761639936,1052,16),(16753,'2018-07-14 18:20:18',274301199841361920,1053,17),(16754,'2018-07-14 18:20:19',390938926761639936,1053,29),(16755,'2018-07-14 18:20:21',274301199841361920,1053,20),(16756,'2018-07-14 18:20:22',390938926761639936,1053,13),(16757,'2018-07-14 18:30:18',390938926761639936,1054,25),(16758,'2018-07-14 18:30:20',390938926761639936,1054,17),(16759,'2018-07-14 18:30:22',457300954660995114,1054,26),(16760,'2018-07-14 18:30:23',211232684209340426,1054,25),(16761,'2018-07-14 18:30:24',211232684209340426,1054,16),(16762,'2018-07-14 18:30:24',390938926761639936,1054,19),(16763,'2018-07-14 18:30:25',457300954660995114,1054,27),(16764,'2018-07-14 18:30:25',211232684209340426,1054,29),(16765,'2018-07-14 19:02:47',390938926761639936,1055,17),(16766,'2018-07-14 19:02:49',390938926761639936,1055,24),(16767,'2018-07-14 19:02:51',390938926761639936,1055,24),(16768,'2018-07-14 19:02:54',390938926761639936,1055,23),(16769,'2018-07-14 19:02:55',118124619117887488,1055,27),(16770,'2018-07-14 19:02:56',390938926761639936,1055,12),(16771,'2018-07-14 19:02:57',118124619117887488,1055,18),(16772,'2018-07-14 19:02:58',118124619117887488,1055,29),(16773,'2018-07-14 19:17:53',390938926761639936,1056,23),(16774,'2018-07-14 19:17:53',150649616772235264,1056,20),(16775,'2018-07-14 19:17:54',150649616772235264,1056,23),(16776,'2018-07-14 19:17:55',390938926761639936,1056,25),(16777,'2018-07-14 19:17:55',150649616772235264,1056,17),(16778,'2018-07-14 19:17:56',150649616772235264,1056,12),(16779,'2018-07-14 19:17:57',390938926761639936,1056,26),(16780,'2018-07-14 19:17:58',150649616772235264,1056,18),(16781,'2018-07-14 19:17:59',150649616772235264,1056,24),(16782,'2018-07-14 19:17:59',390938926761639936,1056,15),(16783,'2018-07-14 19:18:05',460761978135248896,1056,29),(16784,'2018-07-14 19:18:09',460761978135248896,1056,15),(16785,'2018-07-14 19:18:10',457300954660995114,1056,26),(16786,'2018-07-14 19:18:11',460761978135248896,1056,20),(16787,'2018-07-14 19:18:13',457300954660995114,1056,26),(16788,'2018-07-14 19:51:23',173468649884090368,1057,18),(16789,'2018-07-14 19:51:23',173468649884090368,1057,11),(16790,'2018-07-14 19:51:23',150649616772235264,1057,20),(16791,'2018-07-14 19:51:23',457300954660995114,1057,12),(16792,'2018-07-14 19:51:23',460761978135248896,1057,21),(16793,'2018-07-14 19:51:24',150649616772235264,1057,17),(16794,'2018-07-14 19:51:24',173468649884090368,1057,16),(16795,'2018-07-14 19:51:25',457300954660995114,1057,11),(16796,'2018-07-14 19:51:25',150649616772235264,1057,16),(16797,'2018-07-14 19:51:25',173468649884090368,1057,22),(16798,'2018-07-14 19:51:25',150649616772235264,1057,12),(16799,'2018-07-14 19:51:26',173468649884090368,1057,9),(16800,'2018-07-14 19:51:26',390938926761639936,1057,25),(16801,'2018-07-14 19:51:26',150649616772235264,1057,16),(16802,'2018-07-14 19:51:26',457300954660995114,1057,22),(16803,'2018-07-14 20:02:41',200340393596944384,1058,16),(16804,'2018-07-14 20:02:41',457300954660995114,1058,14),(16805,'2018-07-14 20:02:41',357981974931046400,1058,14),(16806,'2018-07-14 20:02:41',460761978135248896,1058,20),(16807,'2018-07-14 20:02:41',390938926761639936,1058,15),(16808,'2018-07-14 20:02:41',150649616772235264,1058,23),(16809,'2018-07-14 20:02:42',118124619117887488,1058,16),(16810,'2018-07-14 20:02:42',357981974931046400,1058,32),(16811,'2018-07-14 20:02:42',200340393596944384,1058,19),(16812,'2018-07-14 20:02:42',150649616772235264,1058,20),(16813,'2018-07-14 20:02:43',200340393596944384,1058,25),(16814,'2018-07-14 20:02:43',457300954660995114,1058,12),(16815,'2018-07-14 20:02:43',200340393596944384,1058,26),(16816,'2018-07-14 20:02:43',357981974931046400,1058,16),(16817,'2018-07-14 20:02:43',118124619117887488,1058,28),(16818,'2018-07-14 20:02:43',460761978135248896,1058,22),(16819,'2018-07-14 20:02:43',150649616772235264,1058,12),(16820,'2018-07-14 20:02:43',118124619117887488,1058,14),(16821,'2018-07-14 20:02:43',200340393596944384,1058,18),(16822,'2018-07-14 20:17:00',274301199841361920,1059,24),(16823,'2018-07-14 20:17:00',200340393596944384,1059,20),(16824,'2018-07-14 20:17:00',118124619117887488,1059,25),(16825,'2018-07-14 20:17:00',457300954660995114,1059,23),(16826,'2018-07-14 20:17:00',460761978135248896,1059,16),(16827,'2018-07-14 20:17:00',274301199841361920,1059,18),(16828,'2018-07-14 20:17:00',200340393596944384,1059,16),(16829,'2018-07-14 20:17:00',150649616772235264,1059,24),(16830,'2018-07-14 20:17:01',274301199841361920,1059,18),(16831,'2018-07-14 20:17:01',118124619117887488,1059,28),(16832,'2018-07-14 20:17:01',200340393596944384,1059,15),(16833,'2018-07-14 20:17:01',357981974931046400,1059,25),(16834,'2018-07-14 20:17:01',274301199841361920,1059,13),(16835,'2018-07-14 20:33:21',200340393596944384,1060,13),(16836,'2018-07-14 20:33:21',200340393596944384,1060,23),(16837,'2018-07-14 20:33:22',200340393596944384,1060,18),(16838,'2018-07-14 20:33:22',357981974931046400,1060,26),(16839,'2018-07-14 20:33:22',200340393596944384,1060,20),(16840,'2018-07-14 20:33:22',200340393596944384,1060,12),(16841,'2018-07-14 20:33:22',357981974931046400,1060,27),(16842,'2018-07-14 20:33:23',200340393596944384,1060,11),(16843,'2018-07-14 20:33:23',357981974931046400,1060,13),(16844,'2018-07-14 20:33:23',200340393596944384,1060,15),(16845,'2018-07-14 20:33:23',118124619117887488,1060,22),(16846,'2018-07-14 20:33:23',150649616772235264,1060,13),(16847,'2018-07-14 20:33:24',200340393596944384,1060,10),(16848,'2018-07-14 20:33:24',173468649884090368,1060,11),(16849,'2018-07-14 20:33:24',173468649884090368,1060,16),(16850,'2018-07-14 20:33:24',150649616772235264,1060,20),(16851,'2018-07-14 20:33:24',118124619117887488,1060,15),(16852,'2018-07-14 20:33:25',173468649884090368,1060,11),(16853,'2018-07-14 20:33:25',390938926761639936,1060,12),(16854,'2018-07-14 20:33:25',173468649884090368,1060,17),(16855,'2018-07-14 20:33:26',118124619117887488,1060,24),(16856,'2018-07-14 20:33:26',150649616772235264,1060,23),(16857,'2018-07-14 20:33:26',173468649884090368,1060,15),(16858,'2018-07-14 20:33:27',118124619117887488,1060,23),(16859,'2018-07-14 20:33:29',460761978135248896,1060,29),(16860,'2018-07-14 20:33:31',118124619117887488,1060,22),(16861,'2018-07-14 20:33:31',118124619117887488,1060,17),(16862,'2018-07-14 20:51:07',200340393596944384,1061,10),(16863,'2018-07-14 20:51:08',274301199841361920,1061,19),(16864,'2018-07-14 20:51:08',150649616772235264,1061,17),(16865,'2018-07-14 20:51:08',457300954660995114,1061,16),(16866,'2018-07-14 20:51:08',200340393596944384,1061,20),(16867,'2018-07-14 20:51:08',274301199841361920,1061,17),(16868,'2018-07-14 20:51:08',460761978135248896,1061,25),(16869,'2018-07-14 20:51:08',357981974931046400,1061,36),(16870,'2018-07-14 20:51:08',200340393596944384,1061,19),(16871,'2018-07-14 20:51:09',150649616772235264,1061,13),(16872,'2018-07-14 20:51:09',274301199841361920,1061,24),(16873,'2018-07-14 20:51:09',200340393596944384,1061,19),(16874,'2018-07-14 20:51:09',357981974931046400,1061,30),(16875,'2018-07-14 20:51:09',200340393596944384,1061,26),(16876,'2018-07-14 20:51:09',274301199841361920,1061,28),(16877,'2018-07-14 20:51:09',357981974931046400,1061,26),(16878,'2018-07-14 20:51:09',457300954660995114,1061,17),(16879,'2018-07-14 20:51:10',274301199841361920,1061,25),(16880,'2018-07-14 20:51:10',200340393596944384,1061,14),(16881,'2018-07-14 20:51:10',150649616772235264,1061,23),(16882,'2018-07-14 20:51:10',274301199841361920,1061,22),(16883,'2018-07-14 20:51:10',200340393596944384,1061,14),(16884,'2018-07-14 21:21:12',200340393596944384,1062,10),(16885,'2018-07-14 21:21:12',457300954660995114,1062,16),(16886,'2018-07-14 21:21:12',357981974931046400,1062,19),(16887,'2018-07-14 21:21:12',274301199841361920,1062,26),(16888,'2018-07-14 21:21:12',200340393596944384,1062,23),(16889,'2018-07-14 21:21:12',390938926761639936,1062,21),(16890,'2018-07-14 21:21:13',150649616772235264,1062,14),(16891,'2018-07-14 21:21:13',274301199841361920,1062,17),(16892,'2018-07-14 21:21:13',200340393596944384,1062,16),(16893,'2018-07-14 21:21:13',357981974931046400,1062,14),(16894,'2018-07-14 21:21:13',274301199841361920,1062,29),(16895,'2018-07-14 21:21:14',357981974931046400,1062,34),(16896,'2018-07-14 21:21:14',457300954660995114,1062,21),(16897,'2018-07-14 21:21:14',274301199841361920,1062,27),(16898,'2018-07-14 21:21:14',274301199841361920,1062,23),(16899,'2018-07-14 21:21:14',150649616772235264,1062,12),(16900,'2018-07-14 21:21:14',118124619117887488,1062,14),(16901,'2018-07-14 21:21:15',433759248800022532,1062,16),(16902,'2018-07-14 21:21:15',433759248800022532,1062,17),(16903,'2018-07-14 21:21:15',457300954660995114,1062,18),(16904,'2018-07-14 21:21:16',433759248800022532,1062,15),(16905,'2018-07-14 21:21:16',390938926761639936,1062,27),(16906,'2018-07-14 21:21:16',433759248800022532,1062,20),(16907,'2018-07-14 21:21:17',433759248800022532,1062,20),(16908,'2018-07-14 21:21:17',457300954660995114,1062,25),(16909,'2018-07-14 21:21:17',150649616772235264,1062,20),(16910,'2018-07-14 21:21:18',433759248800022532,1062,16),(16911,'2018-07-14 21:46:48',118124619117887488,1063,19),(16912,'2018-07-14 21:46:49',200340393596944384,1063,24),(16913,'2018-07-14 21:46:49',460761978135248896,1063,28),(16914,'2018-07-14 21:46:50',200340393596944384,1063,26),(16915,'2018-07-14 21:46:50',173468649884090368,1063,9),(16916,'2018-07-14 21:46:51',460761978135248896,1063,22),(16917,'2018-07-14 21:46:52',433759248800022532,1063,18),(16918,'2018-07-14 21:46:52',357981974931046400,1063,17),(16919,'2018-07-14 21:46:52',173468649884090368,1063,15),(16920,'2018-07-14 21:46:53',433759248800022532,1063,22),(16921,'2018-07-14 21:46:55',454823752925052930,1063,15),(16922,'2018-07-14 21:46:55',454823752925052930,1063,9),(16923,'2018-07-14 21:46:56',454823752925052930,1063,25),(16924,'2018-07-14 21:46:56',460761978135248896,1063,15),(16925,'2018-07-14 21:46:56',454823752925052930,1063,14),(16926,'2018-07-14 21:46:57',173468649884090368,1063,21),(16927,'2018-07-14 21:46:58',460761978135248896,1063,20),(16928,'2018-07-14 21:46:58',150649616772235264,1063,19),(16929,'2018-07-14 21:47:01',118124619117887488,1063,22),(16930,'2018-07-14 21:47:01',460761978135248896,1063,11),(16931,'2018-07-14 21:47:02',357981974931046400,1063,33),(16932,'2018-07-14 21:47:02',457300954660995114,1063,20),(16933,'2018-07-14 21:47:02',173468649884090368,1063,12),(16934,'2018-07-14 21:47:05',460761978135248896,1063,29),(16935,'2018-07-14 21:47:05',457300954660995114,1063,15),(16936,'2018-07-14 21:47:06',433759248800022532,1063,18),(16937,'2018-07-14 21:47:07',457300954660995114,1063,13),(16938,'2018-07-14 21:47:08',433759248800022532,1063,12),(16939,'2018-07-14 21:47:08',460761978135248896,1063,16),(16940,'2018-07-14 21:47:10',457300954660995114,1063,11),(16941,'2018-07-14 21:47:11',150649616772235264,1063,20),(16942,'2018-07-14 21:47:11',460761978135248896,1063,12),(16943,'2018-07-14 21:47:13',433759248800022532,1063,12),(16944,'2018-07-14 22:44:40',274301199841361920,1064,24),(16945,'2018-07-14 22:44:41',390938926761639936,1064,21),(16946,'2018-07-14 22:44:41',274301199841361920,1064,26),(16947,'2018-07-14 22:44:41',460761978135248896,1064,19),(16948,'2018-07-14 22:44:42',274301199841361920,1064,14),(16949,'2018-07-14 22:44:43',274301199841361920,1064,26),(16950,'2018-07-14 22:44:45',460761978135248896,1064,24),(16951,'2018-07-14 22:44:45',390938926761639936,1064,29),(16952,'2018-07-14 22:44:49',460761978135248896,1064,16),(16953,'2018-07-14 22:44:52',460761978135248896,1064,26),(16954,'2018-07-14 22:45:08',460761978135248896,1064,25),(16955,'2018-07-14 22:45:49',200340393596944384,1064,22),(16956,'2018-07-14 22:45:58',457300954660995114,1064,21),(16957,'2018-07-14 22:46:00',454823752925052930,1064,25),(16958,'2018-07-14 22:46:01',457300954660995114,1064,28),(16959,'2018-07-14 22:46:02',454823752925052930,1064,18),(16960,'2018-07-14 22:46:03',454823752925052930,1064,10),(16961,'2018-07-14 22:46:03',454823752925052930,1064,20),(16962,'2018-07-14 22:46:05',457300954660995114,1064,16),(16963,'2018-07-14 22:46:10',454823752925052930,1064,14),(16964,'2018-07-14 22:46:25',433759248800022532,1064,8),(16965,'2018-07-14 22:46:26',433759248800022532,1064,19),(16966,'2018-07-14 22:46:28',433759248800022532,1064,15),(16967,'2018-07-14 22:46:29',433759248800022532,1064,15),(16968,'2018-07-14 22:46:31',433759248800022532,1064,19),(16969,'2018-07-14 22:46:41',465785309821534248,1064,15),(16970,'2018-07-14 22:46:42',465785309821534248,1064,13),(16971,'2018-07-14 22:46:44',465785309821534248,1064,11),(16972,'2018-07-14 23:44:51',218498162745278474,1065,20),(16973,'2018-07-14 23:45:07',211232684209340426,1065,17),(16974,'2018-07-14 23:45:16',211232684209340426,1065,28),(16975,'2018-07-14 23:47:32',211232684209340426,1065,13),(16976,'2018-07-15 00:01:31',465785309821534248,1066,11),(16977,'2018-07-15 00:01:38',465785309821534248,1066,13),(16978,'2018-07-15 00:01:55',465785309821534248,1066,11),(16979,'2018-07-15 00:31:07',460761978135248896,1067,16),(16980,'2018-07-15 00:31:08',465785309821534248,1067,15),(16981,'2018-07-15 00:31:10',460761978135248896,1067,29),(16982,'2018-07-15 00:31:11',465785309821534248,1067,23),(16983,'2018-07-15 00:31:12',460761978135248896,1067,18),(16984,'2018-07-15 01:20:48',460761978135248896,1068,15),(16985,'2018-07-15 01:20:49',457300954660995114,1068,20),(16986,'2018-07-15 01:20:51',457300954660995114,1068,18),(16987,'2018-07-15 01:20:52',460761978135248896,1068,22),(16988,'2018-07-15 01:20:53',457300954660995114,1068,24),(16989,'2018-07-15 01:20:55',460761978135248896,1068,20),(16990,'2018-07-15 01:20:55',457300954660995114,1068,12),(16991,'2018-07-15 01:34:42',457300954660995114,1069,18),(16992,'2018-07-15 01:34:42',460761978135248896,1069,19),(16993,'2018-07-15 01:34:44',457300954660995114,1069,11),(16994,'2018-07-15 01:34:44',460761978135248896,1069,16),(16995,'2018-07-15 01:34:46',457300954660995114,1069,14),(16996,'2018-07-15 01:34:48',460761978135248896,1069,24),(16997,'2018-07-15 01:34:48',457300954660995114,1069,20),(16998,'2018-07-15 01:45:03',185698541052755968,1070,9),(16999,'2018-07-15 01:45:04',185698541052755968,1070,11),(17000,'2018-07-15 01:45:06',185698541052755968,1070,7),(17001,'2018-07-15 01:45:08',185698541052755968,1070,12),(17002,'2018-07-15 01:45:09',185698541052755968,1070,15),(17003,'2018-07-15 01:45:11',185698541052755968,1070,13),(17004,'2018-07-15 01:45:13',185698541052755968,1070,15),(17005,'2018-07-15 01:45:14',185698541052755968,1070,14),(17006,'2018-07-15 01:45:16',185698541052755968,1070,14),(17007,'2018-07-15 01:45:18',185698541052755968,1070,7),(17008,'2018-07-15 01:45:24',460761978135248896,1070,21),(17009,'2018-07-15 01:45:31',457300954660995114,1070,28),(17010,'2018-07-15 02:01:10',433759248800022532,1071,19),(17011,'2018-07-15 02:01:11',185698541052755968,1071,12),(17012,'2018-07-15 02:01:12',185698541052755968,1071,13),(17013,'2018-07-15 02:01:14',185698541052755968,1071,8),(17014,'2018-07-15 02:01:14',460761978135248896,1071,27),(17015,'2018-07-15 02:01:16',185698541052755968,1071,11),(17016,'2018-07-15 02:01:18',185698541052755968,1071,6),(17017,'2018-07-15 02:01:19',185698541052755968,1071,15),(17018,'2018-07-15 02:01:20',460761978135248896,1071,17),(17019,'2018-07-15 02:01:21',185698541052755968,1071,6),(17020,'2018-07-15 02:01:23',185698541052755968,1071,12),(17021,'2018-07-15 02:01:24',433759248800022532,1071,10),(17022,'2018-07-15 02:01:25',460761978135248896,1071,27),(17023,'2018-07-15 02:01:29',460761978135248896,1071,18),(17024,'2018-07-15 02:01:31',433759248800022532,1071,17),(17025,'2018-07-15 02:01:34',460761978135248896,1071,22),(17026,'2018-07-15 02:01:36',433759248800022532,1071,21),(17027,'2018-07-15 02:19:33',201102155896193024,1072,13),(17028,'2018-07-15 02:19:33',460761978135248896,1072,25),(17029,'2018-07-15 02:19:34',457300954660995114,1072,12),(17030,'2018-07-15 02:19:34',201102155896193024,1072,28),(17031,'2018-07-15 02:19:35',201102155896193024,1072,31),(17032,'2018-07-15 02:19:35',201102155896193024,1072,27),(17033,'2018-07-15 02:19:35',460761978135248896,1072,11),(17034,'2018-07-15 02:19:36',457300954660995114,1072,24),(17035,'2018-07-15 02:19:36',201102155896193024,1072,32),(17036,'2018-07-15 02:19:37',460761978135248896,1072,14),(17037,'2018-07-15 02:19:37',457300954660995114,1072,14),(17038,'2018-07-15 02:19:39',457300954660995114,1072,25),(17039,'2018-07-15 02:48:53',457300954660995114,1073,14),(17040,'2018-07-15 02:48:53',460761978135248896,1073,26),(17041,'2018-07-15 02:48:54',200340393596944384,1073,25),(17042,'2018-07-15 02:48:54',200340393596944384,1073,23),(17043,'2018-07-15 02:48:55',200340393596944384,1073,18),(17044,'2018-07-15 02:48:55',457300954660995114,1073,26),(17045,'2018-07-15 02:48:55',200340393596944384,1073,10),(17046,'2018-07-15 02:48:56',200340393596944384,1073,18),(17047,'2018-07-15 02:48:56',460761978135248896,1073,26),(17048,'2018-07-15 02:48:56',200340393596944384,1073,19),(17049,'2018-07-15 02:48:57',200340393596944384,1073,24),(17050,'2018-07-15 03:01:13',454823752925052930,1074,15),(17051,'2018-07-15 03:01:14',454823752925052930,1074,11),(17052,'2018-07-15 03:01:15',454823752925052930,1074,22),(17053,'2018-07-15 03:01:16',454823752925052930,1074,23),(17054,'2018-07-15 03:01:17',185698541052755968,1074,10),(17055,'2018-07-15 03:01:17',454823752925052930,1074,17),(17056,'2018-07-15 03:01:18',454823752925052930,1074,22),(17057,'2018-07-15 03:01:19',454823752925052930,1074,18),(17058,'2018-07-15 03:01:20',185698541052755968,1074,11),(17059,'2018-07-15 03:01:20',454823752925052930,1074,19),(17060,'2018-07-15 03:01:23',185698541052755968,1074,8),(17061,'2018-07-15 03:01:25',185698541052755968,1074,7),(17062,'2018-07-15 03:01:26',185698541052755968,1074,11),(17063,'2018-07-15 03:01:28',185698541052755968,1074,14),(17064,'2018-07-15 03:01:30',185698541052755968,1074,8),(17065,'2018-07-15 03:01:30',200340393596944384,1074,10),(17066,'2018-07-15 03:01:31',200340393596944384,1074,18),(17067,'2018-07-15 03:01:32',200340393596944384,1074,23),(17068,'2018-07-15 03:01:32',200340393596944384,1074,17),(17069,'2018-07-15 03:01:33',185698541052755968,1074,6),(17070,'2018-07-15 03:01:33',200340393596944384,1074,18),(17071,'2018-07-15 03:01:34',460761978135248896,1074,21),(17072,'2018-07-15 03:01:35',185698541052755968,1074,10),(17073,'2018-07-15 03:01:36',460761978135248896,1074,24),(17074,'2018-07-15 03:01:37',457300954660995114,1074,16),(17075,'2018-07-15 03:01:39',460761978135248896,1074,12),(17076,'2018-07-15 03:01:39',200340393596944384,1074,23),(17077,'2018-07-15 03:45:10',185698541052755968,1075,10),(17078,'2018-07-15 03:45:11',457300954660995114,1075,19),(17079,'2018-07-15 03:45:12',185698541052755968,1075,9),(17080,'2018-07-15 03:45:13',185698541052755968,1075,15),(17081,'2018-07-15 03:45:14',457300954660995114,1075,29),(17082,'2018-07-15 03:45:15',185698541052755968,1075,12),(17083,'2018-07-15 03:45:17',457300954660995114,1075,26),(17084,'2018-07-15 03:45:17',185698541052755968,1075,12),(17085,'2018-07-15 03:45:19',185698541052755968,1075,13),(17086,'2018-07-15 03:45:20',457300954660995114,1075,29),(17087,'2018-07-15 03:45:20',460761978135248896,1075,13),(17088,'2018-07-15 03:45:21',185698541052755968,1075,15),(17089,'2018-07-15 03:45:22',457300954660995114,1075,23),(17090,'2018-07-15 03:45:24',460761978135248896,1075,12),(17091,'2018-07-15 03:45:25',457300954660995114,1075,21),(17092,'2018-07-15 03:45:27',457300954660995114,1075,17),(17093,'2018-07-15 03:45:28',460761978135248896,1075,22),(17094,'2018-07-15 03:45:31',185698541052755968,1075,10),(17095,'2018-07-15 03:45:31',460761978135248896,1075,26),(17096,'2018-07-15 03:45:33',185698541052755968,1075,11),(17097,'2018-07-15 03:45:35',460761978135248896,1075,25),(17098,'2018-07-15 03:45:35',185698541052755968,1075,11),(17099,'2018-07-15 03:45:40',460761978135248896,1075,20),(17100,'2018-07-15 03:45:43',457300954660995114,1075,20),(17101,'2018-07-15 03:45:45',460761978135248896,1075,24),(17102,'2018-07-15 03:45:46',457300954660995114,1075,14),(17103,'2018-07-15 03:45:49',460761978135248896,1075,11),(17104,'2018-07-15 03:45:50',433759248800022532,1075,17),(17105,'2018-07-15 03:59:26',200340393596944384,1076,18),(17106,'2018-07-15 03:59:26',200340393596944384,1076,18),(17107,'2018-07-15 03:59:27',200340393596944384,1076,21),(17108,'2018-07-15 03:59:28',200340393596944384,1076,14),(17109,'2018-07-15 03:59:29',200340393596944384,1076,18),(17110,'2018-07-15 03:59:32',460761978135248896,1076,20),(17111,'2018-07-15 03:59:35',460761978135248896,1076,16),(17112,'2018-07-15 03:59:38',460761978135248896,1076,13),(17113,'2018-07-15 03:59:39',454823752925052930,1076,17),(17114,'2018-07-15 03:59:40',454823752925052930,1076,10),(17115,'2018-07-15 03:59:41',460761978135248896,1076,26),(17116,'2018-07-15 03:59:41',454823752925052930,1076,26),(17117,'2018-07-15 03:59:42',454823752925052930,1076,11),(17118,'2018-07-15 03:59:42',454823752925052930,1076,25),(17119,'2018-07-15 03:59:45',460761978135248896,1076,26),(17120,'2018-07-15 03:59:48',460761978135248896,1076,14),(17121,'2018-07-15 03:59:52',460761978135248896,1076,13),(17122,'2018-07-15 03:59:59',460761978135248896,1076,20),(17123,'2018-07-15 04:00:30',457300954660995114,1076,22),(17124,'2018-07-15 04:00:35',457300954660995114,1076,15),(17125,'2018-07-15 04:00:39',457300954660995114,1076,14),(17126,'2018-07-15 04:00:40',265610485812953088,1076,17),(17127,'2018-07-15 04:00:44',265610485812953088,1076,15),(17128,'2018-07-15 04:00:44',457300954660995114,1076,17),(17129,'2018-07-15 04:00:47',457300954660995114,1076,20),(17130,'2018-07-15 04:21:17',454823752925052930,1077,23),(17131,'2018-07-15 04:21:24',454823752925052930,1077,11),(17132,'2018-07-15 04:21:24',460761978135248896,1077,29),(17133,'2018-07-15 04:21:27',324727149930086400,1077,9),(17134,'2018-07-15 04:21:29',465785309821534248,1077,23),(17135,'2018-07-15 04:21:30',324727149930086400,1077,10),(17136,'2018-07-15 04:21:36',465785309821534248,1077,10),(17137,'2018-07-15 04:21:37',465785309821534248,1077,14),(17138,'2018-07-15 04:21:41',460761978135248896,1077,21),(17139,'2018-07-15 04:21:51',457300954660995114,1077,15),(17140,'2018-07-15 04:21:53',433759248800022532,1077,16),(17141,'2018-07-15 04:21:54',433759248800022532,1077,15),(17142,'2018-07-15 04:21:55',433759248800022532,1077,17),(17143,'2018-07-15 04:21:55',457300954660995114,1077,15),(17144,'2018-07-15 04:21:55',433759248800022532,1077,9),(17145,'2018-07-15 04:21:58',457300954660995114,1077,20),(17146,'2018-07-15 04:21:58',324727149930086400,1077,11),(17147,'2018-07-15 04:22:04',460761978135248896,1077,20),(17148,'2018-07-15 04:22:08',460761978135248896,1077,27),(17149,'2018-07-15 04:22:14',457300954660995114,1077,21),(17150,'2018-07-15 04:22:17',457300954660995114,1077,16),(17151,'2018-07-15 04:35:01',218498162745278474,1078,21),(17152,'2018-07-15 04:35:07',218498162745278474,1078,13),(17153,'2018-07-15 04:35:12',218498162745278474,1078,24),(17154,'2018-07-15 04:35:18',218498162745278474,1078,16),(17155,'2018-07-15 04:35:22',334750493085794304,1078,10),(17156,'2018-07-15 04:35:25',334750493085794304,1078,7),(17157,'2018-07-15 04:35:28',334750493085794304,1078,14),(17158,'2018-07-15 04:35:32',334750493085794304,1078,17),(17159,'2018-07-15 04:35:34',334750493085794304,1078,14),(17160,'2018-07-15 04:47:54',460761978135248896,1079,15),(17161,'2018-07-15 04:47:57',460761978135248896,1079,29),(17162,'2018-07-15 05:06:14',218498162745278474,1080,12),(17163,'2018-07-15 05:06:22',218498162745278474,1080,28),(17164,'2018-07-15 05:06:26',218498162745278474,1080,23),(17165,'2018-07-15 05:06:31',218498162745278474,1080,25),(17166,'2018-07-15 05:31:27',460761978135248896,1081,11),(17167,'2018-07-15 05:31:29',457300954660995114,1081,28),(17168,'2018-07-15 05:31:31',460761978135248896,1081,17),(17169,'2018-07-15 05:31:32',457300954660995114,1081,29),(17170,'2018-07-15 05:31:34',457300954660995114,1081,21),(17171,'2018-07-15 06:47:58',460761978135248896,1082,18),(17172,'2018-07-15 06:48:02',460761978135248896,1082,29),(17173,'2018-07-15 06:48:09',457300954660995114,1082,22),(17174,'2018-07-15 06:48:14',457300954660995114,1082,16),(17175,'2018-07-15 06:48:15',185698541052755968,1082,13),(17176,'2018-07-15 06:48:16',185698541052755968,1082,6),(17177,'2018-07-15 06:48:18',185698541052755968,1082,7),(17178,'2018-07-15 06:48:19',185698541052755968,1082,15),(17179,'2018-07-15 06:48:21',185698541052755968,1082,6),(17180,'2018-07-15 06:48:23',185698541052755968,1082,14),(17181,'2018-07-15 06:48:26',185698541052755968,1082,11),(17182,'2018-07-15 06:48:28',185698541052755968,1082,11),(17183,'2018-07-15 06:48:29',185698541052755968,1082,11),(17184,'2018-07-15 06:48:31',185698541052755968,1082,7),(17185,'2018-07-15 06:48:37',457300954660995114,1082,28),(17186,'2018-07-15 07:03:54',185698541052755968,1083,8),(17187,'2018-07-15 07:03:56',185698541052755968,1083,8),(17188,'2018-07-15 07:03:57',185698541052755968,1083,12),(17189,'2018-07-15 07:03:59',185698541052755968,1083,11),(17190,'2018-07-15 07:04:01',185698541052755968,1083,7),(17191,'2018-07-15 07:04:03',185698541052755968,1083,15),(17192,'2018-07-15 07:04:05',185698541052755968,1083,12),(17193,'2018-07-15 07:04:09',460761978135248896,1083,24),(17194,'2018-07-15 07:04:11',457300954660995114,1083,29),(17195,'2018-07-15 07:04:15',460761978135248896,1083,11),(17196,'2018-07-15 07:04:15',457300954660995114,1083,15),(17197,'2018-07-15 07:04:18',460761978135248896,1083,17),(17198,'2018-07-15 07:04:20',457300954660995114,1083,16),(17199,'2018-07-15 07:04:23',460761978135248896,1083,23),(17200,'2018-07-15 07:04:25',457300954660995114,1083,24),(17201,'2018-07-15 07:04:27',460761978135248896,1083,29),(17202,'2018-07-15 07:16:58',357981974931046400,1084,14),(17203,'2018-07-15 07:16:58',390938926761639936,1084,15),(17204,'2018-07-15 07:16:58',357981974931046400,1084,25),(17205,'2018-07-15 07:17:00',390938926761639936,1084,29),(17206,'2018-07-15 07:17:00',460761978135248896,1084,15),(17207,'2018-07-15 07:17:01',357981974931046400,1084,31),(17208,'2018-07-15 07:17:01',390938926761639936,1084,17),(17209,'2018-07-15 07:17:02',357981974931046400,1084,25),(17210,'2018-07-15 07:17:02',460761978135248896,1084,24),(17211,'2018-07-15 07:17:03',390938926761639936,1084,17),(17212,'2018-07-15 07:17:04',357981974931046400,1084,29),(17213,'2018-07-15 07:17:05',390938926761639936,1084,15),(17214,'2018-07-15 07:17:05',460761978135248896,1084,28),(17215,'2018-07-15 07:17:07',460761978135248896,1084,14),(17216,'2018-07-15 07:17:08',357981974931046400,1084,21),(17217,'2018-07-15 07:34:05',457300954660995114,1085,28),(17218,'2018-07-15 07:34:05',357981974931046400,1085,15),(17219,'2018-07-15 07:34:05',460761978135248896,1085,13),(17220,'2018-07-15 07:34:05',185698541052755968,1085,7),(17221,'2018-07-15 07:34:05',357981974931046400,1085,23),(17222,'2018-07-15 07:34:06',457300954660995114,1085,13),(17223,'2018-07-15 07:34:06',185698541052755968,1085,8),(17224,'2018-07-15 07:34:06',357981974931046400,1085,21),(17225,'2018-07-15 07:34:07',460761978135248896,1085,19),(17226,'2018-07-15 07:34:07',357981974931046400,1085,26),(17227,'2018-07-15 07:34:08',185698541052755968,1085,9),(17228,'2018-07-15 07:48:04',224083099246395403,1086,36),(17229,'2018-07-15 07:48:04',457300954660995114,1086,13),(17230,'2018-07-15 07:48:04',224083099246395403,1086,25),(17231,'2018-07-15 07:48:04',357981974931046400,1086,27),(17232,'2018-07-15 07:48:04',460761978135248896,1086,22),(17233,'2018-07-15 07:48:05',224083099246395403,1086,31),(17234,'2018-07-15 07:48:05',357981974931046400,1086,31),(17235,'2018-07-15 07:48:06',224083099246395403,1086,33),(17236,'2018-07-15 07:48:06',457300954660995114,1086,16),(17237,'2018-07-15 07:48:06',357981974931046400,1086,15),(17238,'2018-07-15 07:48:06',460761978135248896,1086,20),(17239,'2018-07-15 07:48:07',224083099246395403,1086,42),(17240,'2018-07-15 07:59:32',357981974931046400,1087,16),(17241,'2018-07-15 07:59:32',224083099246395403,1087,31),(17242,'2018-07-15 07:59:32',457300954660995114,1087,19),(17243,'2018-07-15 07:59:32',460761978135248896,1087,20),(17244,'2018-07-15 07:59:32',224083099246395403,1087,24),(17245,'2018-07-15 07:59:32',357981974931046400,1087,22),(17246,'2018-07-15 07:59:33',357981974931046400,1087,36),(17247,'2018-07-15 07:59:34',457300954660995114,1087,20),(17248,'2018-07-15 07:59:34',460761978135248896,1087,20),(17249,'2018-07-15 07:59:34',357981974931046400,1087,16),(17250,'2018-07-15 07:59:36',460761978135248896,1087,13),(17251,'2018-07-15 07:59:36',457300954660995114,1087,25),(17252,'2018-07-15 07:59:38',460761978135248896,1087,24),(17253,'2018-07-15 08:35:36',224083099246395403,1088,42),(17254,'2018-07-15 08:35:36',460761978135248896,1088,23),(17255,'2018-07-15 08:35:37',185698541052755968,1088,12),(17256,'2018-07-15 08:35:37',357981974931046400,1088,30),(17257,'2018-07-15 08:35:38',357981974931046400,1088,28),(17258,'2018-07-15 08:35:39',460761978135248896,1088,24),(17259,'2018-07-15 08:35:39',185698541052755968,1088,6),(17260,'2018-07-15 08:35:41',185698541052755968,1088,9),(17261,'2018-07-15 08:35:42',457300954660995114,1088,16),(17262,'2018-07-15 08:35:43',460761978135248896,1088,26),(17263,'2018-07-15 08:35:43',185698541052755968,1088,11),(17264,'2018-07-15 08:35:43',466821403027701760,1088,10),(17265,'2018-07-15 08:35:44',457300954660995114,1088,22),(17266,'2018-07-15 09:19:05',224083099246395403,1089,25),(17267,'2018-07-15 09:19:05',460761978135248896,1089,20),(17268,'2018-07-15 09:19:05',457300954660995114,1089,25),(17269,'2018-07-15 09:19:05',390938926761639936,1089,19),(17270,'2018-07-15 09:19:06',466821403027701760,1089,17),(17271,'2018-07-15 09:19:07',466821403027701760,1089,22),(17272,'2018-07-15 09:19:07',457300954660995114,1089,18),(17273,'2018-07-15 09:19:07',390938926761639936,1089,20),(17274,'2018-07-15 09:19:07',460761978135248896,1089,25),(17275,'2018-07-15 09:19:08',466821403027701760,1089,14),(17276,'2018-07-15 09:19:09',390938926761639936,1089,26),(17277,'2018-07-15 09:19:09',466821403027701760,1089,20),(17278,'2018-07-15 09:19:10',466821403027701760,1089,18),(17279,'2018-07-15 09:19:10',457300954660995114,1089,14),(17280,'2018-07-15 09:19:10',390938926761639936,1089,19),(17281,'2018-07-15 09:19:11',460761978135248896,1089,11),(17282,'2018-07-15 09:19:12',390938926761639936,1089,26),(17283,'2018-07-15 09:19:12',457300954660995114,1089,21),(17284,'2018-07-15 09:19:14',457300954660995114,1089,14),(17285,'2018-07-15 09:19:14',460761978135248896,1089,14),(17286,'2018-07-15 09:19:16',457300954660995114,1089,14),(17287,'2018-07-15 09:19:17',460761978135248896,1089,29),(17288,'2018-07-15 09:19:18',457300954660995114,1089,27),(17289,'2018-07-15 09:19:19',460761978135248896,1089,12),(17290,'2018-07-15 09:19:20',457300954660995114,1089,23),(17291,'2018-07-15 09:19:21',457300954660995114,1089,23),(17292,'2018-07-15 09:19:22',460761978135248896,1089,21),(17293,'2018-07-15 10:02:52',173468649884090368,1090,14),(17294,'2018-07-15 10:02:53',466821403027701760,1090,25),(17295,'2018-07-15 10:02:53',460761978135248896,1090,13),(17296,'2018-07-15 10:02:53',173468649884090368,1090,22),(17297,'2018-07-15 10:02:53',357981974931046400,1090,34),(17298,'2018-07-15 10:02:53',457300954660995114,1090,14),(17299,'2018-07-15 10:02:53',390938926761639936,1090,26),(17300,'2018-07-15 10:02:53',466821403027701760,1090,22),(17301,'2018-07-15 10:02:54',357981974931046400,1090,26),(17302,'2018-07-15 10:02:54',466821403027701760,1090,26),(17303,'2018-07-15 10:02:55',173468649884090368,1090,14),(17304,'2018-07-15 10:02:56',390938926761639936,1090,14),(17305,'2018-07-15 10:02:56',457300954660995114,1090,11),(17306,'2018-07-15 10:02:56',173468649884090368,1090,13),(17307,'2018-07-15 10:02:57',163655183438446593,1090,14),(17308,'2018-07-15 10:02:57',173468649884090368,1090,18),(17309,'2018-07-15 10:02:59',467413488961060875,1090,14),(17310,'2018-07-15 10:03:01',467413488961060875,1090,15),(17311,'2018-07-15 10:03:02',460761978135248896,1090,22),(17312,'2018-07-15 10:03:06',163655183438446593,1090,17),(17313,'2018-07-15 10:03:08',163655183438446593,1090,7),(17314,'2018-07-15 10:03:09',224083099246395403,1090,31),(17315,'2018-07-15 10:03:12',163655183438446593,1090,11),(17316,'2018-07-15 10:03:15',457300954660995114,1090,15),(17317,'2018-07-15 10:03:19',457300954660995114,1090,12),(17318,'2018-07-15 10:03:24',467413488961060875,1090,16),(17319,'2018-07-15 10:03:26',467413488961060875,1090,14),(17320,'2018-07-15 10:03:28',467413488961060875,1090,9),(17321,'2018-07-15 10:04:04',142612779377885185,1090,15),(17322,'2018-07-15 10:04:10',142612779377885185,1090,8),(17323,'2018-07-15 10:04:15',142612779377885185,1090,17),(17324,'2018-07-15 10:04:16',224083099246395403,1090,37),(17325,'2018-07-15 10:04:16',224083099246395403,1090,33),(17326,'2018-07-15 10:04:20',142612779377885185,1090,15),(17327,'2018-07-15 10:20:00',224083099246395403,1091,42),(17328,'2018-07-15 10:20:01',173468649884090368,1091,9),(17329,'2018-07-15 10:20:07',390938926761639936,1091,19),(17330,'2018-07-15 10:20:17',173468649884090368,1091,20),(17331,'2018-07-15 10:20:22',173468649884090368,1091,11),(17332,'2018-07-15 10:20:43',173468649884090368,1091,9),(17333,'2018-07-15 10:21:15',173468649884090368,1091,14),(17334,'2018-07-15 10:25:49',118124619117887488,1091,17),(17335,'2018-07-15 10:25:50',118124619117887488,1091,25),(17336,'2018-07-15 10:25:53',118124619117887488,1091,17),(17337,'2018-07-15 10:25:55',118124619117887488,1091,21),(17338,'2018-07-15 10:36:09',467413488961060875,1092,13),(17339,'2018-07-15 10:36:11',466821403027701760,1092,13),(17340,'2018-07-15 10:36:13',466821403027701760,1092,19),(17341,'2018-07-15 10:44:43',224083099246395403,1093,31),(17342,'2018-07-15 10:44:44',466821403027701760,1093,21),(17343,'2018-07-15 10:44:47',224083099246395403,1093,16),(17344,'2018-07-15 10:44:50',224083099246395403,1093,36),(17345,'2018-07-15 11:50:55',224083099246395403,1094,27),(17346,'2018-07-15 11:50:55',274301199841361920,1094,25),(17347,'2018-07-15 11:50:55',466821403027701760,1094,22),(17348,'2018-07-15 11:50:56',357981974931046400,1094,34),(17349,'2018-07-15 12:05:35',274301199841361920,1095,25),(17350,'2018-07-15 12:05:36',274301199841361920,1095,15),(17351,'2018-07-15 12:05:38',185698541052755968,1095,6),(17352,'2018-07-15 12:05:39',185698541052755968,1095,10),(17353,'2018-07-15 12:05:40',274301199841361920,1095,18),(17354,'2018-07-15 12:05:43',185698541052755968,1095,11),(17355,'2018-07-15 12:05:43',274301199841361920,1095,14),(17356,'2018-07-15 12:05:45',185698541052755968,1095,11),(17357,'2018-07-15 12:05:45',357981974931046400,1095,21),(17358,'2018-07-15 12:05:46',274301199841361920,1095,26),(17359,'2018-07-15 12:05:46',185698541052755968,1095,7),(17360,'2018-07-15 12:05:47',357981974931046400,1095,34),(17361,'2018-07-15 12:17:51',357981974931046400,1096,22),(17362,'2018-07-15 12:17:51',224083099246395403,1096,16),(17363,'2018-07-15 12:17:52',467413488961060875,1096,12),(17364,'2018-07-15 12:17:53',357981974931046400,1096,31),(17365,'2018-07-15 12:17:53',224083099246395403,1096,42),(17366,'2018-07-15 12:17:54',457289865516548098,1096,7),(17367,'2018-07-15 12:17:55',357981974931046400,1096,21),(17368,'2018-07-15 12:17:55',224083099246395403,1096,23),(17369,'2018-07-15 12:34:36',274301199841361920,1097,22),(17370,'2018-07-15 12:34:36',467413488961060875,1097,18),(17371,'2018-07-15 12:34:36',467413488961060875,1097,18),(17372,'2018-07-15 12:34:36',274301199841361920,1097,20),(17373,'2018-07-15 12:34:37',467413488961060875,1097,20),(17374,'2018-07-15 12:34:37',274301199841361920,1097,20),(17375,'2018-07-15 12:34:37',467413488961060875,1097,13),(17376,'2018-07-15 12:34:37',274301199841361920,1097,20),(17377,'2018-07-15 12:34:38',467413488961060875,1097,13),(17378,'2018-07-15 12:34:38',274301199841361920,1097,24),(17379,'2018-07-15 12:34:38',274301199841361920,1097,28),(17380,'2018-07-15 13:06:26',466821403027701760,1098,16),(17381,'2018-07-15 13:06:27',466821403027701760,1098,26),(17382,'2018-07-15 13:06:28',466821403027701760,1098,23),(17383,'2018-07-15 13:06:30',466821403027701760,1098,21),(17384,'2018-07-15 13:06:33',163655183438446593,1098,15),(17385,'2018-07-15 13:06:34',466821403027701760,1098,25),(17386,'2018-07-15 13:06:42',224083099246395403,1098,29),(17387,'2018-07-15 13:06:43',163655183438446593,1098,9),(17388,'2018-07-15 13:06:44',224083099246395403,1098,38),(17389,'2018-07-15 13:06:45',163655183438446593,1098,10),(17390,'2018-07-15 13:06:46',163655183438446593,1098,12),(17391,'2018-07-15 13:06:54',467413488961060875,1098,12),(17392,'2018-07-15 13:06:59',163655183438446593,1098,14),(17393,'2018-07-15 13:07:02',163655183438446593,1098,10),(17394,'2018-07-15 13:07:03',467413488961060875,1098,14),(17395,'2018-07-15 13:07:42',224083099246395403,1098,22),(17396,'2018-07-15 13:07:43',224083099246395403,1098,40),(17397,'2018-07-15 13:31:24',201102155896193024,1099,22),(17398,'2018-07-15 13:31:24',224083099246395403,1099,23),(17399,'2018-07-15 13:31:24',357981974931046400,1099,27),(17400,'2018-07-15 13:31:24',201102155896193024,1099,13),(17401,'2018-07-15 13:31:25',201102155896193024,1099,16),(17402,'2018-07-15 13:31:25',224083099246395403,1099,30),(17403,'2018-07-15 13:31:25',201102155896193024,1099,25),(17404,'2018-07-15 13:31:25',357981974931046400,1099,15),(17405,'2018-07-15 13:31:26',201102155896193024,1099,16),(17406,'2018-07-15 13:31:26',357981974931046400,1099,21),(17407,'2018-07-15 13:31:27',201102155896193024,1099,37),(17408,'2018-07-15 13:31:27',224083099246395403,1099,36),(17409,'2018-07-15 14:16:28',274301199841361920,1100,12),(17410,'2018-07-15 14:16:28',201102155896193024,1100,17),(17411,'2018-07-15 14:16:28',163655183438446593,1100,13),(17412,'2018-07-15 14:16:28',201102155896193024,1100,21),(17413,'2018-07-15 14:16:28',274301199841361920,1100,28),(17414,'2018-07-15 14:16:28',466821403027701760,1100,22),(17415,'2018-07-15 14:16:28',201102155896193024,1100,26),(17416,'2018-07-15 14:16:28',274301199841361920,1100,15),(17417,'2018-07-15 14:16:29',274301199841361920,1100,19),(17418,'2018-07-15 14:16:29',466821403027701760,1100,28),(17419,'2018-07-15 14:16:29',274301199841361920,1100,29),(17420,'2018-07-15 14:16:29',466821403027701760,1100,29),(17421,'2018-07-15 14:16:30',274301199841361920,1100,18),(17422,'2018-07-15 14:16:31',274301199841361920,1100,28),(17423,'2018-07-15 14:16:32',459879057295671296,1100,15),(17424,'2018-07-15 14:16:33',459879057295671296,1100,16),(17425,'2018-07-15 14:45:44',201102155896193024,1101,25),(17426,'2018-07-15 14:45:45',201102155896193024,1101,21),(17427,'2018-07-15 14:45:45',201102155896193024,1101,23),(17428,'2018-07-15 14:45:46',467413488961060875,1101,17),(17429,'2018-07-15 14:45:46',201102155896193024,1101,24),(17430,'2018-07-15 14:45:46',224083099246395403,1101,36),(17431,'2018-07-15 14:45:47',459876383431327746,1101,17),(17432,'2018-07-15 14:45:48',224083099246395403,1101,20),(17433,'2018-07-15 14:45:48',459876383431327746,1101,24),(17434,'2018-07-15 14:45:48',459876383431327746,1101,17),(17435,'2018-07-15 14:45:48',200340393596944384,1101,26),(17436,'2018-07-15 14:45:49',467413488961060875,1101,16),(17437,'2018-07-15 14:45:49',459876383431327746,1101,17),(17438,'2018-07-15 14:45:49',459876383431327746,1101,23),(17439,'2018-07-15 14:45:50',200340393596944384,1101,18),(17440,'2018-07-15 14:45:50',467413488961060875,1101,20),(17441,'2018-07-15 14:45:51',200340393596944384,1101,23),(17442,'2018-07-15 14:45:52',224083099246395403,1101,35),(17443,'2018-07-15 14:45:53',200340393596944384,1101,14),(17444,'2018-07-15 14:45:54',200340393596944384,1101,18),(17445,'2018-07-15 14:45:56',459881667104997376,1101,17),(17446,'2018-07-15 14:45:57',459881667104997376,1101,21),(17447,'2018-07-15 15:21:07',201102155896193024,1102,17),(17448,'2018-07-15 15:21:07',201102155896193024,1102,34),(17449,'2018-07-15 15:21:08',201102155896193024,1102,38),(17450,'2018-07-15 15:21:09',459873273308643328,1102,20),(17451,'2018-07-15 15:21:10',459873273308643328,1102,20),(17452,'2018-07-15 15:21:10',459873273308643328,1102,23),(17453,'2018-07-15 15:21:11',459873273308643328,1102,25),(17454,'2018-07-15 15:21:12',459873273308643328,1102,24),(17455,'2018-07-15 15:21:13',459873273308643328,1102,26),(17456,'2018-07-15 15:21:16',163655183438446593,1102,9),(17457,'2018-07-15 15:21:18',163655183438446593,1102,18),(17458,'2018-07-15 15:21:20',224083099246395403,1102,25),(17459,'2018-07-15 15:21:23',459879057295671296,1102,10),(17460,'2018-07-15 15:21:24',163655183438446593,1102,17),(17461,'2018-07-15 15:21:24',459879057295671296,1102,19),(17462,'2018-07-15 15:21:25',459879057295671296,1102,19),(17463,'2018-07-15 15:21:25',459879057295671296,1102,13),(17464,'2018-07-15 15:21:29',459884642192064512,1102,19),(17465,'2018-07-15 15:21:30',459884642192064512,1102,22),(17466,'2018-07-15 15:21:30',459884642192064512,1102,22),(17467,'2018-07-15 15:36:52',459883167160205313,1103,21),(17468,'2018-07-15 15:36:52',466821403027701760,1103,28),(17469,'2018-07-15 15:36:52',459883167160205313,1103,10),(17470,'2018-07-15 15:36:53',459883167160205313,1103,21),(17471,'2018-07-15 15:36:53',459883167160205313,1103,10),(17472,'2018-07-15 15:36:57',459834182961463299,1103,8),(17473,'2018-07-15 15:36:57',459834182961463299,1103,17),(17474,'2018-07-15 15:37:05',459834182961463299,1103,14),(17475,'2018-07-15 15:37:06',459834182961463299,1103,8),(17476,'2018-07-15 15:37:07',459834182961463299,1103,15),(17477,'2018-07-15 15:37:08',224083099246395403,1103,35),(17478,'2018-07-15 15:37:20',459883167160205313,1103,19),(17479,'2018-07-15 15:37:21',459883167160205313,1103,16),(17480,'2018-07-15 15:37:30',459881667104997376,1103,12),(17481,'2018-07-15 15:37:31',459881667104997376,1103,15),(17482,'2018-07-15 15:37:36',459881667104997376,1103,9),(17483,'2018-07-15 15:37:37',459881667104997376,1103,11),(17484,'2018-07-15 15:37:46',466821403027701760,1103,20),(17485,'2018-07-15 15:37:48',466821403027701760,1103,19),(17486,'2018-07-15 15:37:54',459876383431327746,1103,17),(17487,'2018-07-15 15:38:02',459879057295671296,1103,13),(17488,'2018-07-15 15:38:03',459879057295671296,1103,12),(17489,'2018-07-15 15:38:18',459884642192064512,1103,14),(17490,'2018-07-15 15:38:19',459884642192064512,1103,20),(17491,'2018-07-15 15:38:21',459884642192064512,1103,17),(17492,'2018-07-15 15:38:23',459884642192064512,1103,10),(17493,'2018-07-15 15:39:08',466180576357908480,1103,12),(17494,'2018-07-15 15:39:09',466180576357908480,1103,6),(17495,'2018-07-15 15:39:09',466180576357908480,1103,10),(17496,'2018-07-15 15:39:10',466180576357908480,1103,14),(17497,'2018-07-15 15:39:11',466180576357908480,1103,13),(17498,'2018-07-15 15:39:20',459879057295671296,1103,17),(17499,'2018-07-15 15:39:22',224083099246395403,1103,32),(17500,'2018-07-15 16:01:34',357981974931046400,1104,22),(17501,'2018-07-15 16:01:41',200340393596944384,1104,17),(17502,'2018-07-15 16:01:43',200340393596944384,1104,18),(17503,'2018-07-15 16:01:45',200340393596944384,1104,25),(17504,'2018-07-15 16:01:46',200340393596944384,1104,11),(17505,'2018-07-15 16:01:47',357981974931046400,1104,22),(17506,'2018-07-15 16:01:47',200340393596944384,1104,14),(17507,'2018-07-15 16:01:49',200340393596944384,1104,26),(17508,'2018-07-15 16:01:50',357981974931046400,1104,28),(17509,'2018-07-15 16:01:50',200340393596944384,1104,24),(17510,'2018-07-15 16:01:52',357981974931046400,1104,25),(17511,'2018-07-15 16:01:59',357981974931046400,1104,25),(17512,'2018-07-15 16:02:01',357981974931046400,1104,27),(17513,'2018-07-15 16:02:03',357981974931046400,1104,30),(17514,'2018-07-15 16:02:04',465785309821534248,1104,22),(17515,'2018-07-15 16:02:05',163655183438446593,1104,16),(17516,'2018-07-15 16:02:06',465785309821534248,1104,9),(17517,'2018-07-15 16:02:15',465785309821534248,1104,20),(17518,'2018-07-15 16:02:19',357981974931046400,1104,33),(17519,'2018-07-15 16:02:21',454823752925052930,1104,20),(17520,'2018-07-15 16:02:21',459884642192064512,1104,22),(17521,'2018-07-15 16:02:22',454823752925052930,1104,11),(17522,'2018-07-15 16:02:23',454823752925052930,1104,20),(17523,'2018-07-15 16:02:24',454823752925052930,1104,26),(17524,'2018-07-15 16:02:25',454823752925052930,1104,10),(17525,'2018-07-15 16:02:29',454823752925052930,1104,10),(17526,'2018-07-15 16:02:30',454823752925052930,1104,14),(17527,'2018-07-15 16:33:51',357981974931046400,1105,14),(17528,'2018-07-15 16:34:00',433759248800022532,1105,15),(17529,'2018-07-15 16:34:02',466821403027701760,1105,18),(17530,'2018-07-15 16:34:48',459834182961463299,1105,14),(17531,'2018-07-15 16:35:49',459881667104997376,1105,21),(17532,'2018-07-15 16:36:07',459876383431327746,1105,18),(17533,'2018-07-15 16:36:11',459876383431327746,1105,25),(17534,'2018-07-15 16:36:15',459876383431327746,1105,26),(17535,'2018-07-15 17:00:39',357981974931046400,1106,22),(17536,'2018-07-15 17:00:40',200340393596944384,1106,20),(17537,'2018-07-15 17:32:46',466821403027701760,1107,16),(17538,'2018-07-15 17:32:47',466821403027701760,1107,22),(17539,'2018-07-15 17:32:47',466821403027701760,1107,14),(17540,'2018-07-15 17:32:49',466821403027701760,1107,17),(17541,'2018-07-15 18:14:02',200340393596944384,1108,23),(17542,'2018-07-15 18:14:02',457300954660995114,1108,21),(17543,'2018-07-15 18:14:02',466821403027701760,1108,14),(17544,'2018-07-15 18:14:02',274301199841361920,1108,29),(17545,'2018-07-15 18:14:02',200340393596944384,1108,14),(17546,'2018-07-15 18:14:02',200340393596944384,1108,18),(17547,'2018-07-15 18:14:03',274301199841361920,1108,13),(17548,'2018-07-15 18:14:03',466821403027701760,1108,18),(17549,'2018-07-15 18:31:52',466821403027701760,1109,13),(17550,'2018-07-15 18:31:52',357981974931046400,1109,28),(17551,'2018-07-15 18:31:53',466821403027701760,1109,28),(17552,'2018-07-15 18:31:53',357981974931046400,1109,14),(17553,'2018-07-15 18:31:53',200340393596944384,1109,11),(17554,'2018-07-15 18:31:53',466821403027701760,1109,23),(17555,'2018-07-15 18:31:53',200340393596944384,1109,26),(17556,'2018-07-15 19:00:29',200340393596944384,1110,11),(17557,'2018-07-15 19:00:30',466821403027701760,1110,26),(17558,'2018-07-15 19:00:30',200340393596944384,1110,26),(17559,'2018-07-15 19:00:30',457300954660995114,1110,17),(17560,'2018-07-15 19:00:30',357981974931046400,1110,21),(17561,'2018-07-15 19:00:30',466821403027701760,1110,24),(17562,'2018-07-15 19:00:30',200340393596944384,1110,11),(17563,'2018-07-15 19:00:30',357981974931046400,1110,26),(17564,'2018-07-15 19:00:31',200340393596944384,1110,23),(17565,'2018-07-15 19:00:31',357981974931046400,1110,29),(17566,'2018-07-15 19:14:42',466821403027701760,1111,21),(17567,'2018-07-15 19:14:48',466821403027701760,1111,11),(17568,'2018-07-15 19:14:58',118124619117887488,1111,25),(17569,'2018-07-15 19:15:00',118124619117887488,1111,25),(17570,'2018-07-15 19:15:01',118124619117887488,1111,15),(17571,'2018-07-15 19:15:04',118124619117887488,1111,20),(17572,'2018-07-15 19:15:06',118124619117887488,1111,25),(17573,'2018-07-15 19:15:14',118124619117887488,1111,15),(17574,'2018-07-15 19:15:16',457300954660995114,1111,16),(17575,'2018-07-15 19:15:17',466180576357908480,1111,12),(17576,'2018-07-15 19:15:18',457300954660995114,1111,21),(17577,'2018-07-15 19:15:22',466180576357908480,1111,8),(17578,'2018-07-15 19:29:02',457300954660995114,1112,16),(17579,'2018-07-15 19:29:04',200340393596944384,1112,20),(17580,'2018-07-15 19:29:04',200340393596944384,1112,14),(17581,'2018-07-15 19:29:04',457300954660995114,1112,21),(17582,'2018-07-15 19:29:05',200340393596944384,1112,24),(17583,'2018-07-15 19:29:05',200340393596944384,1112,14),(17584,'2018-07-15 19:29:06',200340393596944384,1112,23),(17585,'2018-07-15 19:29:06',457300954660995114,1112,20),(17586,'2018-07-15 19:29:06',357981974931046400,1112,34),(17587,'2018-07-15 19:29:07',357981974931046400,1112,31),(17588,'2018-07-15 19:29:08',200340393596944384,1112,23),(17589,'2018-07-15 20:37:09',466821403027701760,1113,17),(17590,'2018-07-15 20:37:09',460761978135248896,1113,25),(17591,'2018-07-15 20:37:10',466821403027701760,1113,18),(17592,'2018-07-15 20:37:10',200340393596944384,1113,13),(17593,'2018-07-15 20:37:11',200340393596944384,1113,14),(17594,'2018-07-15 20:37:11',457300954660995114,1113,25),(17595,'2018-07-15 20:37:11',200340393596944384,1113,22),(17596,'2018-07-15 20:37:11',460761978135248896,1113,19),(17597,'2018-07-15 20:37:12',200340393596944384,1113,20),(17598,'2018-07-15 20:37:12',200340393596944384,1113,26),(17599,'2018-07-15 20:37:14',460761978135248896,1113,15),(17600,'2018-07-15 20:37:14',457300954660995114,1113,20),(17601,'2018-07-15 20:37:16',457300954660995114,1113,26),(17602,'2018-07-15 20:37:16',460761978135248896,1113,11),(17603,'2018-07-15 20:37:18',200340393596944384,1113,10),(17604,'2018-07-15 20:37:18',457300954660995114,1113,23),(17605,'2018-07-15 20:37:18',460761978135248896,1113,17),(17606,'2018-07-15 20:37:18',200340393596944384,1113,14),(17607,'2018-07-15 20:37:20',457300954660995114,1113,11),(17608,'2018-07-15 20:37:21',460761978135248896,1113,21),(17609,'2018-07-15 20:37:22',457300954660995114,1113,28),(17610,'2018-07-15 21:03:10',438094660712267778,1114,23),(17611,'2018-07-15 21:03:11',460761978135248896,1114,13),(17612,'2018-07-15 21:03:11',200340393596944384,1114,22),(17613,'2018-07-15 21:03:11',438094660712267778,1114,19),(17614,'2018-07-15 21:03:13',438094660712267778,1114,11),(17615,'2018-07-15 21:03:13',460761978135248896,1114,19),(17616,'2018-07-15 21:03:15',438094660712267778,1114,11),(17617,'2018-07-15 21:03:17',460761978135248896,1114,25),(17618,'2018-07-15 21:03:19',438094660712267778,1114,15),(17619,'2018-07-15 21:03:20',460761978135248896,1114,13),(17620,'2018-07-15 21:03:21',454823752925052930,1114,16),(17621,'2018-07-15 21:03:22',454823752925052930,1114,14),(17622,'2018-07-15 21:03:22',454823752925052930,1114,15),(17623,'2018-07-15 21:03:23',454823752925052930,1114,22),(17624,'2018-07-15 21:03:23',460761978135248896,1114,14),(17625,'2018-07-15 21:13:57',454823752925052930,1115,14),(17626,'2018-07-15 21:13:57',454823752925052930,1115,12),(17627,'2018-07-15 21:13:58',457300954660995114,1115,20),(17628,'2018-07-15 21:13:58',454823752925052930,1115,24),(17629,'2018-07-15 21:13:59',454823752925052930,1115,16),(17630,'2018-07-15 21:13:59',454823752925052930,1115,18),(17631,'2018-07-15 21:14:00',457300954660995114,1115,21),(17632,'2018-07-15 21:14:00',460761978135248896,1115,18),(17633,'2018-07-15 21:14:01',457300954660995114,1115,21),(17634,'2018-07-15 21:14:04',457300954660995114,1115,11),(17635,'2018-07-15 21:14:04',454823752925052930,1115,25),(17636,'2018-07-15 21:14:04',454823752925052930,1115,22),(17637,'2018-07-15 21:14:05',460761978135248896,1115,21),(17638,'2018-07-15 21:14:06',457300954660995114,1115,22),(17639,'2018-07-15 21:14:08',457300954660995114,1115,22),(17640,'2018-07-15 21:14:10',457300954660995114,1115,17),(17641,'2018-07-15 21:14:10',433759248800022532,1115,18),(17642,'2018-07-15 21:14:11',460761978135248896,1115,24),(17643,'2018-07-15 21:14:12',433759248800022532,1115,11),(17644,'2018-07-15 21:14:12',457300954660995114,1115,18),(17645,'2018-07-15 21:14:14',457300954660995114,1115,20),(17646,'2018-07-15 21:14:17',457300954660995114,1115,29),(17647,'2018-07-15 21:14:19',433759248800022532,1115,19),(17648,'2018-07-15 21:14:22',433759248800022532,1115,20),(17649,'2018-07-15 21:14:32',460761978135248896,1115,13),(17650,'2018-07-15 21:48:18',274301199841361920,1116,22),(17651,'2018-07-15 21:48:19',438094660712267778,1116,19),(17652,'2018-07-15 21:48:19',200340393596944384,1116,13),(17653,'2018-07-15 21:48:19',274301199841361920,1116,21),(17654,'2018-07-15 21:48:19',200340393596944384,1116,18),(17655,'2018-07-15 21:48:19',274301199841361920,1116,18),(17656,'2018-07-15 21:48:19',438094660712267778,1116,16),(17657,'2018-07-15 21:48:20',274301199841361920,1116,20),(17658,'2018-07-15 21:48:20',457300954660995114,1116,18),(17659,'2018-07-15 21:48:20',200340393596944384,1116,26),(17660,'2018-07-15 21:48:20',274301199841361920,1116,20),(17661,'2018-07-15 21:48:20',438094660712267778,1116,17),(17662,'2018-07-15 21:48:22',457300954660995114,1116,14),(17663,'2018-07-15 21:48:24',433759248800022532,1116,18),(17664,'2018-07-15 21:48:24',457300954660995114,1116,27),(17665,'2018-07-15 21:48:24',433759248800022532,1116,17),(17666,'2018-07-15 22:06:41',460761978135248896,1117,17),(17667,'2018-07-15 22:06:45',460761978135248896,1117,20),(17668,'2018-07-15 22:06:50',460761978135248896,1117,23),(17669,'2018-07-15 22:06:54',357981974931046400,1117,22),(17670,'2018-07-15 22:07:00',357981974931046400,1117,36),(17671,'2018-07-15 22:07:01',357981974931046400,1117,20),(17672,'2018-07-15 22:07:03',357981974931046400,1117,35),(17673,'2018-07-15 22:07:09',200340393596944384,1117,25),(17674,'2018-07-15 22:07:10',200340393596944384,1117,22),(17675,'2018-07-15 22:07:13',200340393596944384,1117,17),(17676,'2018-07-15 22:07:16',200340393596944384,1117,16),(17677,'2018-07-15 22:07:19',357981974931046400,1117,26),(17678,'2018-07-15 22:07:23',454823752925052930,1117,17),(17679,'2018-07-15 22:07:31',454823752925052930,1117,26),(17680,'2018-07-15 22:07:34',454823752925052930,1117,12),(17681,'2018-07-15 22:07:42',433759248800022532,1117,18),(17682,'2018-07-15 22:07:43',433759248800022532,1117,13),(17683,'2018-07-15 22:07:44',433759248800022532,1117,13),(17684,'2018-07-15 22:07:45',433759248800022532,1117,10),(17685,'2018-07-15 22:07:46',433759248800022532,1117,14),(17686,'2018-07-15 22:07:52',433759248800022532,1117,9),(17687,'2018-07-15 22:07:53',433759248800022532,1117,19),(17688,'2018-07-15 22:08:01',433759248800022532,1117,15),(17689,'2018-07-15 22:08:32',433759248800022532,1117,18),(17690,'2018-07-15 22:44:17',457300954660995114,1119,19),(17691,'2018-07-15 22:44:19',457300954660995114,1119,13),(17692,'2018-07-15 22:44:22',457300954660995114,1119,13),(17693,'2018-07-15 23:04:24',457300954660995114,1120,20),(17694,'2018-07-15 23:04:27',457300954660995114,1120,29),(17695,'2018-07-15 23:04:29',457300954660995114,1120,19),(17696,'2018-07-15 23:46:37',460761978135248896,1121,19),(17697,'2018-07-15 23:46:39',460761978135248896,1121,18),(17698,'2018-07-15 23:46:40',457289865516548098,1121,8),(17699,'2018-07-15 23:46:40',460761978135248896,1121,11),(17700,'2018-07-15 23:46:41',276538857174990858,1121,21),(17701,'2018-07-15 23:46:42',457289865516548098,1121,8),(17702,'2018-07-15 23:46:42',460761978135248896,1121,27),(17703,'2018-07-15 23:46:43',200340393596944384,1121,18),(17704,'2018-07-15 23:46:44',200340393596944384,1121,14),(17705,'2018-07-16 00:05:33',424563962303086594,1122,18),(17706,'2018-07-16 00:05:46',424563962303086594,1122,11),(17707,'2018-07-16 00:06:05',460761978135248896,1122,21),(17708,'2018-07-16 00:06:17',460761978135248896,1122,21),(17709,'2018-07-16 00:06:18',424563962303086594,1122,7),(17710,'2018-07-16 00:06:19',460761978135248896,1122,18),(17711,'2018-07-16 00:06:21',460761978135248896,1122,20),(17712,'2018-07-16 00:06:23',460761978135248896,1122,29),(17713,'2018-07-16 00:06:25',460761978135248896,1122,13),(17714,'2018-07-16 00:06:28',460761978135248896,1122,17),(17715,'2018-07-16 00:35:22',200340393596944384,1123,15),(17716,'2018-07-16 00:35:23',200340393596944384,1123,22),(17717,'2018-07-16 00:35:23',460761978135248896,1123,12),(17718,'2018-07-16 00:35:23',200340393596944384,1123,12),(17719,'2018-07-16 00:35:24',200340393596944384,1123,16),(17720,'2018-07-16 00:35:24',200340393596944384,1123,15),(17721,'2018-07-16 00:35:24',457300954660995114,1123,21),(17722,'2018-07-16 00:35:24',200340393596944384,1123,14),(17723,'2018-07-16 00:35:25',200340393596944384,1123,22),(17724,'2018-07-16 00:35:25',200340393596944384,1123,17),(17725,'2018-07-16 00:35:27',457300954660995114,1123,23),(17726,'2018-07-16 00:35:30',457300954660995114,1123,16),(17727,'2018-07-16 00:35:30',460761978135248896,1123,26),(17728,'2018-07-16 01:19:09',460761978135248896,1124,14),(17729,'2018-07-16 01:19:10',405868548150394890,1124,6),(17730,'2018-07-16 01:19:13',460761978135248896,1124,24),(17731,'2018-07-16 01:19:13',405868548150394890,1124,12),(17732,'2018-07-16 01:19:16',460761978135248896,1124,19),(17733,'2018-07-16 01:19:17',405868548150394890,1124,13),(17734,'2018-07-16 01:19:20',460761978135248896,1124,17),(17735,'2018-07-16 01:19:25',460761978135248896,1124,17),(17736,'2018-07-16 01:19:32',460761978135248896,1124,13),(17737,'2018-07-16 01:19:33',405868548150394890,1124,13),(17738,'2018-07-16 01:19:37',460761978135248896,1124,17),(17739,'2018-07-16 01:19:41',405868548150394890,1124,9),(17740,'2018-07-16 01:19:42',460761978135248896,1124,20),(17741,'2018-07-16 01:19:49',460761978135248896,1124,13),(17742,'2018-07-16 01:19:53',457300954660995114,1124,16),(17743,'2018-07-16 01:19:54',457300954660995114,1124,14),(17744,'2018-07-16 01:19:56',457300954660995114,1124,17),(17745,'2018-07-16 01:19:58',457300954660995114,1124,12),(17746,'2018-07-16 01:20:02',457300954660995114,1124,13),(17747,'2018-07-16 01:20:04',457300954660995114,1124,22),(17748,'2018-07-16 01:32:47',457300954660995114,1125,24),(17749,'2018-07-16 01:32:48',460761978135248896,1125,28),(17750,'2018-07-16 01:32:49',457300954660995114,1125,21),(17751,'2018-07-16 01:32:52',460761978135248896,1125,17),(17752,'2018-07-16 01:32:52',457300954660995114,1125,18),(17753,'2018-07-16 01:32:54',457300954660995114,1125,12),(17754,'2018-07-16 01:32:56',460761978135248896,1125,17),(17755,'2018-07-16 01:32:57',457300954660995114,1125,25),(17756,'2018-07-16 01:32:59',457300954660995114,1125,15),(17757,'2018-07-16 01:33:01',460761978135248896,1125,20),(17758,'2018-07-16 01:59:04',457300954660995114,1126,15),(17759,'2018-07-16 01:59:04',200340393596944384,1126,18),(17760,'2018-07-16 01:59:05',200340393596944384,1126,26),(17761,'2018-07-16 01:59:06',200340393596944384,1126,13),(17762,'2018-07-16 01:59:06',457300954660995114,1126,27),(17763,'2018-07-16 01:59:07',460761978135248896,1126,20),(17764,'2018-07-16 01:59:08',457300954660995114,1126,20),(17765,'2018-07-16 01:59:10',200340393596944384,1126,13),(17766,'2018-07-16 01:59:11',460761978135248896,1126,12),(17767,'2018-07-16 01:59:11',200340393596944384,1126,18),(17768,'2018-07-16 01:59:11',457300954660995114,1126,22),(17769,'2018-07-16 01:59:14',457300954660995114,1126,20),(17770,'2018-07-16 01:59:16',200340393596944384,1126,19),(17771,'2018-07-16 01:59:16',460761978135248896,1126,11),(17772,'2018-07-16 01:59:17',200340393596944384,1126,14),(17773,'2018-07-16 01:59:18',457300954660995114,1126,14),(17774,'2018-07-16 01:59:21',200340393596944384,1126,11),(17775,'2018-07-16 01:59:21',460761978135248896,1126,19),(17776,'2018-07-16 01:59:25',454823752925052930,1126,10),(17777,'2018-07-16 01:59:27',454823752925052930,1126,25),(17778,'2018-07-16 01:59:28',454823752925052930,1126,20),(17779,'2018-07-16 01:59:29',454823752925052930,1126,21),(17780,'2018-07-16 01:59:30',454823752925052930,1126,16),(17781,'2018-07-16 02:17:22',457300954660995114,1127,12),(17782,'2018-07-16 02:17:25',457300954660995114,1127,15),(17783,'2018-07-16 02:17:25',460761978135248896,1127,25),(17784,'2018-07-16 02:17:43',465785309821534248,1127,13),(17785,'2018-07-16 02:17:44',465785309821534248,1127,22),(17786,'2018-07-16 02:17:45',465785309821534248,1127,15),(17787,'2018-07-16 02:17:46',465785309821534248,1127,16),(17788,'2018-07-16 02:17:46',465785309821534248,1127,15),(17789,'2018-07-16 02:17:55',457289865516548098,1127,7),(17790,'2018-07-16 02:17:57',457289865516548098,1127,15),(17791,'2018-07-16 02:17:59',457289865516548098,1127,9),(17792,'2018-07-16 02:18:00',457300954660995114,1127,15),(17793,'2018-07-16 02:18:02',200340393596944384,1127,12),(17794,'2018-07-16 02:18:03',200340393596944384,1127,16),(17795,'2018-07-16 02:18:04',457300954660995114,1127,18),(17796,'2018-07-16 02:18:04',457289865516548098,1127,15),(17797,'2018-07-16 02:18:08',457300954660995114,1127,14),(17798,'2018-07-16 02:18:11',457289865516548098,1127,15),(17799,'2018-07-16 02:18:12',457300954660995114,1127,13),(17800,'2018-07-16 02:18:21',460761978135248896,1127,28),(17801,'2018-07-16 02:18:40',457300954660995114,1127,24),(17802,'2018-07-16 02:18:48',433759248800022532,1127,19),(17803,'2018-07-16 02:33:55',454823752925052930,1128,25),(17804,'2018-07-16 02:33:56',454823752925052930,1128,12),(17805,'2018-07-16 02:34:00',454823752925052930,1128,15),(17806,'2018-07-16 02:34:04',433759248800022532,1128,13),(17807,'2018-07-16 02:34:05',433759248800022532,1128,12),(17808,'2018-07-16 02:34:06',433759248800022532,1128,17),(17809,'2018-07-16 02:34:07',433759248800022532,1128,19),(17810,'2018-07-16 02:34:08',433759248800022532,1128,12),(17811,'2018-07-16 02:34:09',433759248800022532,1128,10),(17812,'2018-07-16 02:34:13',433759248800022532,1128,11),(17813,'2018-07-16 02:34:14',433759248800022532,1128,9),(17814,'2018-07-16 02:34:24',433759248800022532,1128,21),(17815,'2018-07-16 02:34:58',200340393596944384,1128,16),(17816,'2018-07-16 02:35:00',200340393596944384,1128,11),(17817,'2018-07-16 02:35:03',200340393596944384,1128,19),(17818,'2018-07-16 02:35:05',200340393596944384,1128,24),(17819,'2018-07-16 02:35:52',465785309821534248,1128,21),(17820,'2018-07-16 02:36:05',465785309821534248,1128,15),(17821,'2018-07-16 02:36:13',433759248800022532,1128,13),(17822,'2018-07-16 02:36:27',465785309821534248,1128,15),(17823,'2018-07-16 02:36:36',200340393596944384,1128,13),(17824,'2018-07-16 02:36:39',200340393596944384,1128,13),(17825,'2018-07-16 03:03:26',460761978135248896,1130,16),(17826,'2018-07-16 03:03:28',460761978135248896,1130,17),(17827,'2018-07-16 03:03:31',200340393596944384,1130,10),(17828,'2018-07-16 03:35:21',200340393596944384,1131,22),(17829,'2018-07-16 03:35:22',200340393596944384,1131,17),(17830,'2018-07-16 03:35:22',460761978135248896,1131,15),(17831,'2018-07-16 03:35:24',460761978135248896,1131,19),(17832,'2018-07-16 04:17:18',457300954660995114,1133,19),(17833,'2018-07-16 04:17:19',466821403027701760,1133,26),(17834,'2018-07-16 04:47:18',466821403027701760,1134,14),(17835,'2018-07-16 04:47:18',460761978135248896,1134,13),(17836,'2018-07-16 04:47:18',466821403027701760,1134,28),(17837,'2018-07-16 04:47:18',200340393596944384,1134,19),(17838,'2018-07-16 05:05:06',460761978135248896,1135,27),(17839,'2018-07-16 05:05:06',466821403027701760,1135,29),(17840,'2018-07-16 05:05:06',457300954660995114,1135,22),(17841,'2018-07-16 05:05:07',466821403027701760,1135,26),(17842,'2018-07-16 05:05:07',466821403027701760,1135,13),(17843,'2018-07-16 05:16:37',433759248800022532,1136,8),(17844,'2018-07-16 05:16:37',457300954660995114,1136,20),(17845,'2018-07-16 05:16:38',433759248800022532,1136,15),(17846,'2018-07-16 05:16:39',466821403027701760,1136,24),(17847,'2018-07-16 05:16:39',457300954660995114,1136,29),(17848,'2018-07-16 05:16:40',433759248800022532,1136,15),(17849,'2018-07-16 05:16:41',466821403027701760,1136,17),(17850,'2018-07-16 05:16:41',457300954660995114,1136,14),(17851,'2018-07-16 05:16:42',433759248800022532,1136,11),(17852,'2018-07-16 05:16:44',466821403027701760,1136,11),(17853,'2018-07-16 05:16:44',433759248800022532,1136,22),(17854,'2018-07-16 05:16:44',457300954660995114,1136,17),(17855,'2018-07-16 05:44:31',466821403027701760,1137,27),(17856,'2018-07-16 05:44:31',457300954660995114,1137,19),(17857,'2018-07-16 05:44:31',460761978135248896,1137,19),(17858,'2018-07-16 05:44:32',466821403027701760,1137,18),(17859,'2018-07-16 05:44:32',466821403027701760,1137,20),(17860,'2018-07-16 05:44:33',466821403027701760,1137,13),(17861,'2018-07-16 05:44:33',466821403027701760,1137,15),(17862,'2018-07-16 06:34:13',457300954660995114,1138,18),(17863,'2018-07-16 06:34:14',460761978135248896,1138,19),(17864,'2018-07-16 06:34:15',457300954660995114,1138,17),(17865,'2018-07-16 06:34:15',185698541052755968,1138,12),(17866,'2018-07-16 06:34:16',460761978135248896,1138,22),(17867,'2018-07-16 06:34:17',457300954660995114,1138,16),(17868,'2018-07-16 06:34:17',185698541052755968,1138,9),(17869,'2018-07-16 06:34:18',460761978135248896,1138,25),(17870,'2018-07-16 06:34:18',457300954660995114,1138,15),(17871,'2018-07-16 06:34:19',185698541052755968,1138,9),(17872,'2018-07-16 07:04:30',457300954660995114,1139,18),(17873,'2018-07-16 07:04:32',457300954660995114,1139,20),(17874,'2018-07-16 07:04:32',460761978135248896,1139,15),(17875,'2018-07-16 07:04:33',185698541052755968,1139,12),(17876,'2018-07-16 07:04:34',457300954660995114,1139,13),(17877,'2018-07-16 07:04:35',460761978135248896,1139,22),(17878,'2018-07-16 07:04:35',185698541052755968,1139,11),(17879,'2018-07-16 07:04:35',457300954660995114,1139,29),(17880,'2018-07-16 07:04:37',185698541052755968,1139,11),(17881,'2018-07-16 07:04:37',457300954660995114,1139,22),(17882,'2018-07-16 07:04:37',460761978135248896,1139,14),(17883,'2018-07-16 07:04:39',185698541052755968,1139,14),(17884,'2018-07-16 07:04:39',457300954660995114,1139,29),(17885,'2018-07-16 07:04:40',457300954660995114,1139,24),(17886,'2018-07-16 07:04:40',185698541052755968,1139,8),(17887,'2018-07-16 07:04:41',460761978135248896,1139,24),(17888,'2018-07-16 07:04:42',457300954660995114,1139,26),(17889,'2018-07-16 07:04:42',185698541052755968,1139,13),(17890,'2018-07-16 07:31:27',457300954660995114,1140,17),(17891,'2018-07-16 07:31:29',457300954660995114,1140,12),(17892,'2018-07-16 07:31:31',457300954660995114,1140,29),(17893,'2018-07-16 07:31:33',457300954660995114,1140,21),(17894,'2018-07-16 07:31:35',457300954660995114,1140,20),(17895,'2018-07-16 07:31:37',457300954660995114,1140,18),(17896,'2018-07-16 07:31:39',457300954660995114,1140,27),(17897,'2018-07-16 07:31:40',457300954660995114,1140,27),(17898,'2018-07-16 07:31:42',457300954660995114,1140,28),(17899,'2018-07-16 07:32:23',457300954660995114,1140,23),(17900,'2018-07-16 07:33:58',224083099246395403,1140,43),(17901,'2018-07-16 07:34:14',457300954660995114,1140,18),(17902,'2018-07-16 07:34:43',185698541052755968,1140,8),(17903,'2018-07-16 07:34:44',460761978135248896,1140,28),(17904,'2018-07-16 07:47:29',460761978135248896,1141,25),(17905,'2018-07-16 07:47:29',457300954660995114,1141,16),(17906,'2018-07-16 07:47:31',457300954660995114,1141,18),(17907,'2018-07-16 07:47:32',460761978135248896,1141,18),(17908,'2018-07-16 07:47:33',457300954660995114,1141,23),(17909,'2018-07-16 07:47:35',460761978135248896,1141,20),(17910,'2018-07-16 07:47:35',457300954660995114,1141,11),(17911,'2018-07-16 07:47:36',185698541052755968,1141,9),(17912,'2018-07-16 07:47:38',457300954660995114,1141,27),(17913,'2018-07-16 07:47:38',185698541052755968,1141,12),(17914,'2018-07-16 07:47:38',460761978135248896,1141,15),(17915,'2018-07-16 07:47:40',185698541052755968,1141,13),(17916,'2018-07-16 07:47:40',457300954660995114,1141,22),(17917,'2018-07-16 07:47:41',185698541052755968,1141,15),(17918,'2018-07-16 08:43:59',163655183438446593,1142,10),(17919,'2018-07-16 08:43:59',357981974931046400,1142,33),(17920,'2018-07-16 08:43:59',460761978135248896,1142,23),(17921,'2018-07-16 08:44:00',357981974931046400,1142,29),(17922,'2018-07-16 08:44:01',357981974931046400,1142,19),(17923,'2018-07-16 08:44:01',460761978135248896,1142,12),(17924,'2018-07-16 08:44:03',163655183438446593,1142,19),(17925,'2018-07-16 08:44:04',460761978135248896,1142,19),(17926,'2018-07-16 08:44:05',383328874169237506,1142,7),(17927,'2018-07-16 08:44:05',163655183438446593,1142,14),(17928,'2018-07-16 08:44:06',460761978135248896,1142,23),(17929,'2018-07-16 08:44:07',163655183438446593,1142,9),(17930,'2018-07-16 08:44:08',460761978135248896,1142,12),(17931,'2018-07-16 08:44:08',163655183438446593,1142,9),(17932,'2018-07-16 08:44:08',224083099246395403,1142,18),(17933,'2018-07-16 08:44:09',460761978135248896,1142,16),(17934,'2018-07-16 08:44:10',383328874169237506,1142,8),(17935,'2018-07-16 08:44:11',460761978135248896,1142,19),(17936,'2018-07-16 08:44:13',460761978135248896,1142,22),(17937,'2018-07-16 08:44:15',460761978135248896,1142,23),(17938,'2018-07-16 08:44:15',383328874169237506,1142,11),(17939,'2018-07-16 08:44:15',163655183438446593,1142,9),(17940,'2018-07-16 08:44:17',163655183438446593,1142,10),(17941,'2018-07-16 08:44:17',460761978135248896,1142,16),(17942,'2018-07-16 08:44:21',224083099246395403,1142,22),(17943,'2018-07-16 09:03:27',274301199841361920,1143,20),(17944,'2018-07-16 09:03:27',274301199841361920,1143,26),(17945,'2018-07-16 09:03:28',274301199841361920,1143,22),(17946,'2018-07-16 09:03:29',274301199841361920,1143,26),(17947,'2018-07-16 09:03:30',274301199841361920,1143,27),(17948,'2018-07-16 09:03:31',274301199841361920,1143,28),(17949,'2018-07-16 09:03:38',274301199841361920,1143,20),(17950,'2018-07-16 09:03:41',325565391478718464,1143,29),(17951,'2018-07-16 09:03:41',163655183438446593,1143,7),(17952,'2018-07-16 09:03:43',325565391478718464,1143,32),(17953,'2018-07-16 09:03:46',325565391478718464,1143,27),(17954,'2018-07-16 09:03:50',460761978135248896,1143,20),(17955,'2018-07-16 09:03:53',163655183438446593,1143,15),(17956,'2018-07-16 09:04:09',185698541052755968,1143,8),(17957,'2018-07-16 09:04:10',185698541052755968,1143,6),(17958,'2018-07-16 09:04:12',185698541052755968,1143,13),(17959,'2018-07-16 09:04:14',185698541052755968,1143,9),(17960,'2018-07-16 09:04:16',185698541052755968,1143,14),(17961,'2018-07-16 09:04:25',357981974931046400,1143,25),(17962,'2018-07-16 09:04:28',357981974931046400,1143,25),(17963,'2018-07-16 09:04:34',185698541052755968,1143,8),(17964,'2018-07-16 09:04:36',185698541052755968,1143,10),(17965,'2018-07-16 09:04:40',185698541052755968,1143,7),(17966,'2018-07-16 09:06:01',383328874169237506,1143,16),(17967,'2018-07-16 09:06:35',325565391478718464,1143,24),(17968,'2018-07-16 09:30:35',325565391478718464,1144,22),(17969,'2018-07-16 09:30:39',357981974931046400,1144,30),(17970,'2018-07-16 09:45:10',357981974931046400,1145,36),(17971,'2018-07-16 09:45:11',460761978135248896,1145,20),(17972,'2018-07-16 09:45:13',460761978135248896,1145,11),(17973,'2018-07-16 09:45:16',163655183438446593,1145,14),(17974,'2018-07-16 10:21:28',163655183438446593,1146,16),(17975,'2018-07-16 10:21:28',163655183438446593,1146,15),(17976,'2018-07-16 10:21:29',274301199841361920,1146,26),(17977,'2018-07-16 10:21:32',274301199841361920,1146,25),(17978,'2018-07-16 10:21:35',274301199841361920,1146,27),(17979,'2018-07-16 10:21:37',163655183438446593,1146,15),(17980,'2018-07-16 11:00:18',185698541052755968,1147,14),(17981,'2018-07-16 11:00:22',185698541052755968,1147,14),(17982,'2018-07-16 11:00:24',185698541052755968,1147,13),(17983,'2018-07-16 11:00:26',185698541052755968,1147,11),(17984,'2018-07-16 11:00:28',163655183438446593,1147,17),(17985,'2018-07-16 11:00:28',185698541052755968,1147,8),(17986,'2018-07-16 11:00:31',185698541052755968,1147,8),(17987,'2018-07-16 11:00:34',185698541052755968,1147,9),(17988,'2018-07-16 11:00:37',185698541052755968,1147,11),(17989,'2018-07-16 11:00:39',185698541052755968,1147,12),(17990,'2018-07-16 11:00:39',163655183438446593,1147,10),(17991,'2018-07-16 11:32:34',163655183438446593,1148,12),(17992,'2018-07-16 11:32:56',405868548150394890,1148,14),(17993,'2018-07-16 11:33:01',405868548150394890,1148,9),(17994,'2018-07-16 11:33:12',405868548150394890,1148,15),(17995,'2018-07-16 11:33:15',405868548150394890,1148,10),(17996,'2018-07-16 11:33:18',163655183438446593,1148,14),(17997,'2018-07-16 11:33:18',405868548150394890,1148,12),(17998,'2018-07-16 11:33:23',405868548150394890,1148,13),(17999,'2018-07-16 11:33:28',163655183438446593,1148,11),(18000,'2018-07-16 11:33:31',163655183438446593,1148,17),(18001,'2018-07-16 11:33:33',163655183438446593,1148,14),(18002,'2018-07-16 11:33:51',163655183438446593,1148,18),(18003,'2018-07-16 11:34:20',142612779377885185,1148,19),(18004,'2018-07-16 11:34:22',142612779377885185,1148,12),(18005,'2018-07-16 11:34:23',142612779377885185,1148,16),(18006,'2018-07-16 11:34:24',142612779377885185,1148,21),(18007,'2018-07-16 11:34:26',142612779377885185,1148,18),(18008,'2018-07-16 12:21:27',274301199841361920,1149,16),(18009,'2018-07-16 12:21:28',274301199841361920,1149,21),(18010,'2018-07-16 12:21:29',274301199841361920,1149,25),(18011,'2018-07-16 12:21:31',274301199841361920,1149,27),(18012,'2018-07-16 12:21:32',274301199841361920,1149,18),(18013,'2018-07-16 12:21:33',274301199841361920,1149,19),(18014,'2018-07-16 12:21:39',274301199841361920,1149,24),(18015,'2018-07-16 12:22:33',274301199841361920,1149,12),(18016,'2018-07-16 12:23:28',185698541052755968,1149,10),(18017,'2018-07-16 12:23:30',185698541052755968,1149,11),(18018,'2018-07-16 12:23:31',185698541052755968,1149,14),(18019,'2018-07-16 12:23:33',185698541052755968,1149,11),(18020,'2018-07-16 12:23:35',185698541052755968,1149,11),(18021,'2018-07-16 12:23:38',185698541052755968,1149,11),(18022,'2018-07-16 12:23:39',163655183438446593,1149,7),(18023,'2018-07-16 12:49:31',163655183438446593,1150,16),(18024,'2018-07-16 13:05:01',274301199841361920,1151,20),(18025,'2018-07-16 13:05:01',163655183438446593,1151,15),(18026,'2018-07-16 13:48:36',457289865516548098,1152,16),(18027,'2018-07-16 13:48:36',173468649884090368,1152,22),(18028,'2018-07-16 13:48:37',173468649884090368,1152,8),(18029,'2018-07-16 13:48:37',173468649884090368,1152,8),(18030,'2018-07-16 13:48:37',457289865516548098,1152,10),(18031,'2018-07-16 13:48:38',173468649884090368,1152,17),(18032,'2018-07-16 14:06:55',200340393596944384,1153,12),(18033,'2018-07-16 14:06:57',200340393596944384,1153,26),(18034,'2018-07-16 14:06:57',163655183438446593,1153,13),(18035,'2018-07-16 14:06:59',163655183438446593,1153,15),(18036,'2018-07-16 14:07:01',200340393596944384,1153,21),(18037,'2018-07-16 14:34:18',150649616772235264,1154,16),(18038,'2018-07-16 14:34:18',274301199841361920,1154,12),(18039,'2018-07-16 14:34:19',274301199841361920,1154,17),(18040,'2018-07-16 14:34:20',150649616772235264,1154,11),(18041,'2018-07-16 14:34:20',274301199841361920,1154,28),(18042,'2018-07-16 14:34:20',274301199841361920,1154,19),(18043,'2018-07-16 14:34:21',163655183438446593,1154,15),(18044,'2018-07-16 14:34:21',274301199841361920,1154,28),(18045,'2018-07-16 14:46:15',150649616772235264,1155,9),(18046,'2018-07-16 14:46:16',274301199841361920,1155,21),(18047,'2018-07-16 14:46:17',457289865516548098,1155,13),(18048,'2018-07-16 14:46:17',150649616772235264,1155,11),(18049,'2018-07-16 14:46:17',274301199841361920,1155,11),(18050,'2018-07-16 14:46:18',163655183438446593,1155,12),(18051,'2018-07-16 14:46:18',274301199841361920,1155,20),(18052,'2018-07-16 14:46:19',150649616772235264,1155,19),(18053,'2018-07-16 14:46:19',163655183438446593,1155,13),(18054,'2018-07-16 14:46:19',274301199841361920,1155,12),(18055,'2018-07-16 14:46:20',457289865516548098,1155,17),(18056,'2018-07-16 14:46:20',274301199841361920,1155,12),(18057,'2018-07-16 14:46:21',150649616772235264,1155,12),(18058,'2018-07-16 14:46:21',274301199841361920,1155,16),(18059,'2018-07-16 14:46:21',163655183438446593,1155,12),(18060,'2018-07-16 14:46:22',457289865516548098,1155,16),(18061,'2018-07-16 14:46:22',150649616772235264,1155,10),(18062,'2018-07-16 14:46:23',163655183438446593,1155,13),(18063,'2018-07-16 15:19:20',173468649884090368,1156,18),(18064,'2018-07-16 15:19:22',163655183438446593,1156,9),(18065,'2018-07-16 15:19:23',163655183438446593,1156,13),(18066,'2018-07-16 15:19:24',173468649884090368,1156,22),(18067,'2018-07-16 15:19:25',163655183438446593,1156,9),(18068,'2018-07-16 15:19:25',200340393596944384,1156,17),(18069,'2018-07-16 15:19:27',163655183438446593,1156,11),(18070,'2018-07-16 15:19:27',200340393596944384,1156,14),(18071,'2018-07-16 15:19:27',173468649884090368,1156,14),(18072,'2018-07-16 15:19:28',200340393596944384,1156,19),(18073,'2018-07-16 15:19:29',163655183438446593,1156,13),(18074,'2018-07-16 15:19:29',173468649884090368,1156,17),(18075,'2018-07-16 15:19:32',200340393596944384,1156,25),(18076,'2018-07-16 15:19:32',173468649884090368,1156,10),(18077,'2018-07-16 15:19:33',200340393596944384,1156,24),(18078,'2018-07-16 15:19:35',200340393596944384,1156,19),(18079,'2018-07-16 15:19:36',163655183438446593,1156,16),(18080,'2018-07-16 15:19:37',200340393596944384,1156,11),(18081,'2018-07-16 15:33:54',383328874169237506,1157,18),(18082,'2018-07-16 15:33:54',274301199841361920,1157,28),(18083,'2018-07-16 15:33:54',274301199841361920,1157,25),(18084,'2018-07-16 15:33:55',274301199841361920,1157,14),(18085,'2018-07-16 15:33:55',383328874169237506,1157,13),(18086,'2018-07-16 15:33:55',274301199841361920,1157,16),(18087,'2018-07-16 15:33:56',274301199841361920,1157,29),(18088,'2018-07-16 15:33:57',173468649884090368,1157,10),(18089,'2018-07-16 15:33:57',274301199841361920,1157,15),(18090,'2018-07-16 15:33:57',383328874169237506,1157,12),(18091,'2018-07-16 15:33:58',274301199841361920,1157,26),(18092,'2018-07-16 15:33:59',163655183438446593,1157,11),(18093,'2018-07-16 15:34:00',173468649884090368,1157,20),(18094,'2018-07-16 15:34:00',163655183438446593,1157,10),(18095,'2018-07-16 15:34:01',383328874169237506,1157,18),(18096,'2018-07-16 15:34:02',150649616772235264,1157,13),(18097,'2018-07-16 16:29:49',150649616772235264,1158,25),(18098,'2018-07-16 16:29:49',200340393596944384,1158,17),(18099,'2018-07-16 16:29:51',150649616772235264,1158,16),(18100,'2018-07-16 16:29:52',173468649884090368,1158,13),(18101,'2018-07-16 16:29:53',150649616772235264,1158,14),(18102,'2018-07-16 16:29:53',200340393596944384,1158,21),(18103,'2018-07-16 16:29:54',150649616772235264,1158,17),(18104,'2018-07-16 16:29:55',173468649884090368,1158,17),(18105,'2018-07-16 16:29:55',200340393596944384,1158,14),(18106,'2018-07-16 16:29:56',150649616772235264,1158,25),(18107,'2018-07-16 16:29:56',118124619117887488,1158,27),(18108,'2018-07-16 16:29:57',200340393596944384,1158,18),(18109,'2018-07-16 16:29:57',173468649884090368,1158,15),(18110,'2018-07-16 16:29:57',118124619117887488,1158,23),(18111,'2018-07-16 16:29:58',150649616772235264,1158,11),(18112,'2018-07-16 16:29:58',200340393596944384,1158,23),(18113,'2018-07-16 16:29:59',173468649884090368,1158,15),(18114,'2018-07-16 16:29:59',200340393596944384,1158,12),(18115,'2018-07-16 16:30:00',173468649884090368,1158,16),(18116,'2018-07-16 16:30:01',200340393596944384,1158,19),(18117,'2018-07-16 16:30:02',200340393596944384,1158,21),(18118,'2018-07-16 16:51:24',200340393596944384,1159,21),(18119,'2018-07-16 16:51:25',173468649884090368,1159,16),(18120,'2018-07-16 16:51:26',200340393596944384,1159,22),(18121,'2018-07-16 16:51:27',173468649884090368,1159,15),(18122,'2018-07-16 16:51:27',200340393596944384,1159,10),(18123,'2018-07-16 16:51:29',200340393596944384,1159,12),(18124,'2018-07-16 16:51:29',173468649884090368,1159,10),(18125,'2018-07-16 16:51:32',173468649884090368,1159,15),(18126,'2018-07-16 16:51:34',173468649884090368,1159,9),(18127,'2018-07-16 16:51:39',200340393596944384,1159,11),(18128,'2018-07-16 16:51:42',200340393596944384,1159,10),(18129,'2018-07-16 16:51:44',200340393596944384,1159,17),(18130,'2018-07-16 16:51:46',200340393596944384,1159,18),(18131,'2018-07-16 16:52:05',433759248800022532,1159,10),(18132,'2018-07-16 16:52:07',433759248800022532,1159,12),(18133,'2018-07-16 16:52:09',433759248800022532,1159,12),(18134,'2018-07-16 16:52:11',433759248800022532,1159,17),(18135,'2018-07-16 16:52:12',433759248800022532,1159,10),(18136,'2018-07-16 16:52:14',433759248800022532,1159,15),(18137,'2018-07-16 17:05:09',201102155896193024,1160,18),(18138,'2018-07-16 17:05:10',201102155896193024,1160,22),(18139,'2018-07-16 17:05:13',201102155896193024,1160,35),(18140,'2018-07-16 17:05:19',201102155896193024,1160,24),(18141,'2018-07-16 17:05:25',173468649884090368,1160,12),(18142,'2018-07-16 17:05:32',173468649884090368,1160,12),(18143,'2018-07-16 17:05:35',173468649884090368,1160,10),(18144,'2018-07-16 17:05:44',173468649884090368,1160,21),(18145,'2018-07-16 17:05:47',173468649884090368,1160,18),(18146,'2018-07-16 17:06:39',200340393596944384,1160,26),(18147,'2018-07-16 17:06:45',405263704222072832,1160,11),(18148,'2018-07-16 17:06:50',454823752925052930,1160,25),(18149,'2018-07-16 17:06:51',454823752925052930,1160,15),(18150,'2018-07-16 17:06:52',454823752925052930,1160,26),(18151,'2018-07-16 17:06:53',454823752925052930,1160,17),(18152,'2018-07-16 17:06:53',454823752925052930,1160,20),(18153,'2018-07-16 17:06:54',454823752925052930,1160,16),(18154,'2018-07-16 17:06:54',405263704222072832,1160,12),(18155,'2018-07-16 17:17:35',433759248800022532,1161,19),(18156,'2018-07-16 17:17:36',433759248800022532,1161,11),(18157,'2018-07-16 17:17:37',433759248800022532,1161,13),(18158,'2018-07-16 17:17:41',433759248800022532,1161,14),(18159,'2018-07-16 17:17:42',433759248800022532,1161,16),(18160,'2018-07-16 17:17:43',433759248800022532,1161,9),(18161,'2018-07-16 17:17:44',433759248800022532,1161,20),(18162,'2018-07-16 17:17:44',433759248800022532,1161,10),(18163,'2018-07-16 17:18:23',454823752925052930,1161,10),(18164,'2018-07-16 17:18:26',454823752925052930,1161,17),(18165,'2018-07-16 17:18:37',465785309821534248,1161,22),(18166,'2018-07-16 17:18:39',465785309821534248,1161,16),(18167,'2018-07-16 17:18:40',465785309821534248,1161,19),(18168,'2018-07-16 17:18:42',465785309821534248,1161,11),(18169,'2018-07-16 17:18:50',465785309821534248,1161,17),(18170,'2018-07-16 17:18:59',200340393596944384,1161,19),(18171,'2018-07-16 17:19:01',200340393596944384,1161,11),(18172,'2018-07-16 17:21:04',433759248800022532,1161,21),(18173,'2018-07-16 17:21:05',405263704222072832,1161,13),(18174,'2018-07-16 17:21:07',433759248800022532,1161,11),(18175,'2018-07-16 17:21:10',405263704222072832,1161,6),(18176,'2018-07-16 17:21:13',405263704222072832,1161,10),(18177,'2018-07-16 17:21:17',405263704222072832,1161,14),(18178,'2018-07-16 17:21:20',405263704222072832,1161,10),(18179,'2018-07-16 17:21:38',173468649884090368,1161,17),(18180,'2018-07-16 17:21:49',173468649884090368,1161,20),(18181,'2018-07-16 17:22:16',173468649884090368,1161,9),(18182,'2018-07-16 17:22:30',433759248800022532,1161,23),(18183,'2018-07-16 17:31:30',200340393596944384,1162,12),(18184,'2018-07-16 17:31:32',150649616772235264,1162,17),(18185,'2018-07-16 17:31:33',200340393596944384,1162,18),(18186,'2018-07-16 17:44:43',150649616772235264,1163,17),(18187,'2018-07-16 17:44:43',454823752925052930,1163,15),(18188,'2018-07-16 17:44:44',383328874169237506,1163,8),(18189,'2018-07-16 17:44:44',150649616772235264,1163,23),(18190,'2018-07-16 17:44:44',383328874169237506,1163,9),(18191,'2018-07-16 17:44:45',150649616772235264,1163,21),(18192,'2018-07-16 18:30:49',357981974931046400,1164,17),(18193,'2018-07-16 18:30:53',357981974931046400,1164,25),(18194,'2018-07-16 18:30:53',150649616772235264,1164,17),(18195,'2018-07-16 18:30:58',150649616772235264,1164,19),(18196,'2018-07-16 18:31:01',150649616772235264,1164,17),(18197,'2018-07-16 18:31:03',150649616772235264,1164,21),(18198,'2018-07-16 18:31:04',150649616772235264,1164,14),(18199,'2018-07-16 18:43:58',357981974931046400,1165,25),(18200,'2018-07-16 18:43:59',274301199841361920,1165,21),(18201,'2018-07-16 18:44:00',274301199841361920,1165,18),(18202,'2018-07-16 18:44:00',357981974931046400,1165,14),(18203,'2018-07-16 18:44:01',274301199841361920,1165,13),(18204,'2018-07-16 18:44:02',274301199841361920,1165,15),(18205,'2018-07-16 19:34:37',150649616772235264,1166,17),(18206,'2018-07-16 19:34:38',357981974931046400,1166,13),(18207,'2018-07-16 19:34:38',460761978135248896,1166,29),(18208,'2018-07-16 19:34:38',218498162745278474,1166,12),(18209,'2018-07-16 19:34:38',218498162745278474,1166,24),(18210,'2018-07-16 19:34:39',357981974931046400,1166,31),(18211,'2018-07-16 19:34:39',218498162745278474,1166,23),(18212,'2018-07-16 19:34:39',150649616772235264,1166,17),(18213,'2018-07-16 19:34:39',218498162745278474,1166,28),(18214,'2018-07-16 19:34:39',173468649884090368,1166,16),(18215,'2018-07-16 19:34:39',200340393596944384,1166,23),(18216,'2018-07-16 19:44:29',200340393596944384,1167,21),(18217,'2018-07-16 19:44:29',150649616772235264,1167,13),(18218,'2018-07-16 19:44:29',357981974931046400,1167,23),(18219,'2018-07-16 19:44:29',460761978135248896,1167,11),(18220,'2018-07-16 19:44:29',200340393596944384,1167,25),(18221,'2018-07-16 19:44:30',150649616772235264,1167,20),(18222,'2018-07-16 19:44:30',200340393596944384,1167,11),(18223,'2018-07-16 19:44:30',357981974931046400,1167,15),(18224,'2018-07-16 19:44:30',200340393596944384,1167,15),(18225,'2018-07-16 19:44:31',357981974931046400,1167,34),(18226,'2018-07-16 19:44:31',150649616772235264,1167,12),(18227,'2018-07-16 19:44:31',200340393596944384,1167,15),(18228,'2018-07-16 19:44:31',460761978135248896,1167,23),(18229,'2018-07-16 20:19:27',218498162745278474,1168,11),(18230,'2018-07-16 20:19:27',150649616772235264,1168,19),(18231,'2018-07-16 20:19:28',357981974931046400,1168,17),(18232,'2018-07-16 20:19:28',150649616772235264,1168,17),(18233,'2018-07-16 20:19:30',150649616772235264,1168,14),(18234,'2018-07-16 20:19:32',150649616772235264,1168,21),(18235,'2018-07-16 20:19:33',357981974931046400,1168,29),(18236,'2018-07-16 20:19:34',150649616772235264,1168,21),(18237,'2018-07-16 20:19:35',150649616772235264,1168,16),(18238,'2018-07-16 20:19:37',465785309821534248,1168,23),(18239,'2018-07-16 20:19:38',465785309821534248,1168,20),(18240,'2018-07-16 20:33:08',118124619117887488,1169,19),(18241,'2018-07-16 20:33:08',118124619117887488,1169,26),(18242,'2018-07-16 20:33:09',357981974931046400,1169,36),(18243,'2018-07-16 20:33:09',118124619117887488,1169,19),(18244,'2018-07-16 20:33:10',315219062546497547,1169,11),(18245,'2018-07-16 20:33:10',118124619117887488,1169,20),(18246,'2018-07-16 20:33:10',357981974931046400,1169,15),(18247,'2018-07-16 20:33:10',315219062546497547,1169,14),(18248,'2018-07-16 20:33:11',315219062546497547,1169,10),(18249,'2018-07-16 20:33:11',315219062546497547,1169,10),(18250,'2018-07-16 20:33:11',118124619117887488,1169,29),(18251,'2018-07-16 20:33:12',315219062546497547,1169,7),(18252,'2018-07-16 20:33:12',118124619117887488,1169,18),(18253,'2018-07-16 20:33:16',465785309821534248,1169,21),(18254,'2018-07-16 20:33:17',465785309821534248,1169,12),(18255,'2018-07-16 20:33:17',465785309821534248,1169,14),(18256,'2018-07-16 20:33:18',465785309821534248,1169,14),(18257,'2018-07-16 20:33:22',357981974931046400,1169,26),(18258,'2018-07-16 20:33:25',357981974931046400,1169,25),(18259,'2018-07-16 20:47:25',457289865516548098,1170,17),(18260,'2018-07-16 20:47:25',433759248800022532,1170,22),(18261,'2018-07-16 20:47:25',460761978135248896,1170,20),(18262,'2018-07-16 20:47:26',433759248800022532,1170,17),(18263,'2018-07-16 20:47:27',433759248800022532,1170,19),(18264,'2018-07-16 20:47:27',457289865516548098,1170,17),(18265,'2018-07-16 20:47:27',433759248800022532,1170,13),(18266,'2018-07-16 20:47:28',460761978135248896,1170,13),(18267,'2018-07-16 20:47:28',433759248800022532,1170,16),(18268,'2018-07-16 20:47:28',433759248800022532,1170,15),(18269,'2018-07-16 20:47:29',433759248800022532,1170,10),(18270,'2018-07-16 20:47:29',457289865516548098,1170,10),(18271,'2018-07-16 20:47:29',433759248800022532,1170,19),(18272,'2018-07-16 20:47:30',460761978135248896,1170,14),(18273,'2018-07-16 20:47:31',457289865516548098,1170,10),(18274,'2018-07-16 20:47:32',460761978135248896,1170,19),(18275,'2018-07-16 20:47:33',457289865516548098,1170,9),(18276,'2018-07-16 20:47:34',460761978135248896,1170,26),(18277,'2018-07-16 20:47:35',200340393596944384,1170,14),(18278,'2018-07-16 20:47:35',457289865516548098,1170,13),(18279,'2018-07-16 20:47:35',460761978135248896,1170,22),(18280,'2018-07-16 20:47:36',200340393596944384,1170,15),(18281,'2018-07-16 20:47:37',200340393596944384,1170,20),(18282,'2018-07-16 20:47:37',200340393596944384,1170,11),(18283,'2018-07-16 20:47:38',460761978135248896,1170,11),(18284,'2018-07-16 20:47:38',457289865516548098,1170,11),(18285,'2018-07-16 20:47:40',460761978135248896,1170,22),(18286,'2018-07-16 20:47:40',457289865516548098,1170,16),(18287,'2018-07-16 21:15:26',200340393596944384,1171,17),(18288,'2018-07-16 21:15:27',200340393596944384,1171,18),(18289,'2018-07-16 21:15:28',200340393596944384,1171,14),(18290,'2018-07-16 21:15:30',200340393596944384,1171,18),(18291,'2018-07-16 21:15:31',200340393596944384,1171,15),(18292,'2018-07-16 21:15:33',200340393596944384,1171,20),(18293,'2018-07-16 21:15:34',200340393596944384,1171,15),(18294,'2018-07-16 21:15:35',200340393596944384,1171,12),(18295,'2018-07-16 21:15:53',118124619117887488,1171,18),(18296,'2018-07-16 21:16:14',274301199841361920,1171,20),(18297,'2018-07-16 21:16:15',274301199841361920,1171,19),(18298,'2018-07-16 21:16:17',274301199841361920,1171,20),(18299,'2018-07-16 21:16:23',274301199841361920,1171,12),(18300,'2018-07-16 21:16:24',274301199841361920,1171,25),(18301,'2018-07-16 21:16:25',274301199841361920,1171,19),(18302,'2018-07-16 21:16:29',274301199841361920,1171,18),(18303,'2018-07-16 21:16:39',460761978135248896,1171,29),(18304,'2018-07-16 21:16:42',460761978135248896,1171,17),(18305,'2018-07-16 21:48:40',460761978135248896,1172,19),(18306,'2018-07-16 21:48:43',460761978135248896,1172,20),(18307,'2018-07-16 21:48:45',150649616772235264,1172,23),(18308,'2018-07-16 21:48:47',460761978135248896,1172,18),(18309,'2018-07-16 21:48:51',460761978135248896,1172,15),(18310,'2018-07-16 21:48:52',150649616772235264,1172,12),(18311,'2018-07-16 21:48:57',460761978135248896,1172,28),(18312,'2018-07-16 21:48:57',150649616772235264,1172,13),(18313,'2018-07-16 21:49:00',454823752925052930,1172,20),(18314,'2018-07-16 21:49:01',454823752925052930,1172,16),(18315,'2018-07-16 21:49:02',454823752925052930,1172,10),(18316,'2018-07-16 21:49:03',454823752925052930,1172,16),(18317,'2018-07-16 21:49:03',454823752925052930,1172,13),(18318,'2018-07-16 21:49:03',150649616772235264,1172,21),(18319,'2018-07-16 21:49:03',460761978135248896,1172,24),(18320,'2018-07-16 21:49:07',454823752925052930,1172,12),(18321,'2018-07-16 21:49:08',454823752925052930,1172,13),(18322,'2018-07-16 21:49:09',460761978135248896,1172,29),(18323,'2018-07-16 21:49:10',454823752925052930,1172,22),(18324,'2018-07-16 21:49:14',460761978135248896,1172,23),(18325,'2018-07-16 22:21:25',150649616772235264,1173,16),(18326,'2018-07-16 22:21:26',150649616772235264,1173,18),(18327,'2018-07-16 22:21:28',150649616772235264,1173,23),(18328,'2018-07-16 22:21:31',150649616772235264,1173,11),(18329,'2018-07-16 22:21:32',150649616772235264,1173,24),(18330,'2018-07-16 22:21:34',150649616772235264,1173,14),(18331,'2018-07-16 22:21:35',390938926761639936,1173,12),(18332,'2018-07-16 22:21:43',454823752925052930,1173,24),(18333,'2018-07-16 22:21:44',390938926761639936,1173,21),(18334,'2018-07-16 22:21:44',454823752925052930,1173,17),(18335,'2018-07-16 22:21:45',454823752925052930,1173,14),(18336,'2018-07-16 22:21:45',454823752925052930,1173,21),(18337,'2018-07-16 22:21:51',390938926761639936,1173,22),(18338,'2018-07-16 22:21:57',390938926761639936,1173,18),(18339,'2018-07-16 22:22:00',433759248800022532,1173,14),(18340,'2018-07-16 22:22:01',390938926761639936,1173,16),(18341,'2018-07-16 22:22:01',433759248800022532,1173,21),(18342,'2018-07-16 22:22:02',433759248800022532,1173,17),(18343,'2018-07-16 22:22:03',433759248800022532,1173,21),(18344,'2018-07-16 22:22:03',433759248800022532,1173,16),(18345,'2018-07-16 22:22:09',433759248800022532,1173,17),(18346,'2018-07-16 22:22:10',433759248800022532,1173,18),(18347,'2018-07-16 22:22:11',433759248800022532,1173,21),(18348,'2018-07-16 22:23:28',150649616772235264,1173,16),(18349,'2018-07-16 22:24:05',460761978135248896,1173,24),(18350,'2018-07-16 22:24:08',150768078714568705,1173,10),(18351,'2018-07-16 22:24:10',460761978135248896,1173,20),(18352,'2018-07-16 22:24:14',150768078714568705,1173,9),(18353,'2018-07-16 22:24:17',460761978135248896,1173,17),(18354,'2018-07-16 22:24:31',150768078714568705,1173,10),(18355,'2018-07-16 22:24:35',433759248800022532,1173,14),(18356,'2018-07-16 22:24:37',460761978135248896,1173,20),(18357,'2018-07-16 22:24:39',150768078714568705,1173,16),(18358,'2018-07-16 22:24:40',433759248800022532,1173,9),(18359,'2018-07-16 22:29:35',150649616772235264,1174,18),(18360,'2018-07-16 22:30:03',390938926761639936,1174,21),(18361,'2018-07-16 22:30:06',390938926761639936,1174,17),(18362,'2018-07-16 22:30:09',390938926761639936,1174,26),(18363,'2018-07-16 22:32:57',405868548150394890,1174,9),(18364,'2018-07-16 22:33:03',405868548150394890,1174,12),(18365,'2018-07-16 22:33:27',405868548150394890,1174,14),(18366,'2018-07-16 22:33:28',405868548150394890,1174,6),(18367,'2018-07-16 22:35:26',405868548150394890,1174,8),(18368,'2018-07-16 22:48:27',150649616772235264,1175,12),(18369,'2018-07-16 22:48:37',433759248800022532,1175,16),(18370,'2018-07-16 22:48:39',433759248800022532,1175,11),(18371,'2018-07-16 23:07:00',150649616772235264,1176,12),(18372,'2018-07-16 23:07:06',150649616772235264,1176,21),(18373,'2018-07-16 23:07:14',150649616772235264,1176,16),(18374,'2018-07-16 23:07:17',150649616772235264,1176,20),(18375,'2018-07-16 23:07:20',150649616772235264,1176,18),(18376,'2018-07-16 23:07:22',150649616772235264,1176,24),(18377,'2018-07-16 23:47:53',454823752925052930,1178,14),(18378,'2018-07-16 23:47:54',454823752925052930,1178,18),(18379,'2018-07-17 00:32:38',200340393596944384,1179,14),(18380,'2018-07-17 00:32:39',457289865516548098,1179,14),(18381,'2018-07-17 00:32:41',200340393596944384,1179,16),(18382,'2018-07-17 00:32:42',457289865516548098,1179,17),(18383,'2018-07-17 00:32:42',457289865516548098,1179,14),(18384,'2018-07-17 00:59:53',200340393596944384,1180,26),(18385,'2018-07-17 00:59:54',457289865516548098,1180,17),(18386,'2018-07-17 00:59:54',200340393596944384,1180,19),(18387,'2018-07-17 00:59:54',185698541052755968,1180,11),(18388,'2018-07-17 00:59:54',457289865516548098,1180,14),(18389,'2018-07-17 00:59:55',457289865516548098,1180,12),(18390,'2018-07-17 00:59:55',200340393596944384,1180,25),(18391,'2018-07-17 00:59:55',185698541052755968,1180,15),(18392,'2018-07-17 01:16:52',200340393596944384,1181,13),(18393,'2018-07-17 01:16:53',200340393596944384,1181,18),(18394,'2018-07-17 01:16:54',200340393596944384,1181,23),(18395,'2018-07-17 01:16:55',200340393596944384,1181,25),(18396,'2018-07-17 01:16:55',200340393596944384,1181,14),(18397,'2018-07-17 01:16:58',457289865516548098,1181,15),(18398,'2018-07-17 01:34:40',200340393596944384,1182,15),(18399,'2018-07-17 01:34:41',200340393596944384,1182,15),(18400,'2018-07-17 01:34:42',200340393596944384,1182,21),(18401,'2018-07-17 01:34:43',200340393596944384,1182,19),(18402,'2018-07-17 01:34:44',200340393596944384,1182,20),(18403,'2018-07-17 01:37:02',460761978135248896,1182,15),(18404,'2018-07-17 01:37:04',460761978135248896,1182,16),(18405,'2018-07-17 01:37:06',460761978135248896,1182,21),(18406,'2018-07-17 01:51:29',200340393596944384,1183,10),(18407,'2018-07-17 01:51:30',200340393596944384,1183,21),(18408,'2018-07-17 01:51:31',200340393596944384,1183,17),(18409,'2018-07-17 01:51:36',201102155896193024,1183,15),(18410,'2018-07-17 01:51:36',201102155896193024,1183,28),(18411,'2018-07-17 01:51:37',201102155896193024,1183,30),(18412,'2018-07-17 01:51:37',200340393596944384,1183,19),(18413,'2018-07-17 01:51:37',201102155896193024,1183,25),(18414,'2018-07-17 01:51:38',201102155896193024,1183,34),(18415,'2018-07-17 02:00:31',200340393596944384,1184,26),(18416,'2018-07-17 02:00:32',460761978135248896,1184,11),(18417,'2018-07-17 02:00:32',200340393596944384,1184,12),(18418,'2018-07-17 02:00:33',200340393596944384,1184,18),(18419,'2018-07-17 02:00:34',460761978135248896,1184,29),(18420,'2018-07-17 02:00:34',457289865516548098,1184,9),(18421,'2018-07-17 02:00:35',457289865516548098,1184,13),(18422,'2018-07-17 02:00:36',457289865516548098,1184,12),(18423,'2018-07-17 02:00:36',457289865516548098,1184,17),(18424,'2018-07-17 02:00:37',460761978135248896,1184,14),(18425,'2018-07-17 02:00:37',457289865516548098,1184,12),(18426,'2018-07-17 02:00:38',457289865516548098,1184,19),(18427,'2018-07-17 02:00:39',457289865516548098,1184,10),(18428,'2018-07-17 02:00:39',460761978135248896,1184,22),(18429,'2018-07-17 02:00:42',460761978135248896,1184,28),(18430,'2018-07-17 02:00:44',460761978135248896,1184,14),(18431,'2018-07-17 02:00:48',460761978135248896,1184,27),(18432,'2018-07-17 02:00:50',454823752925052930,1184,22),(18433,'2018-07-17 02:00:50',460761978135248896,1184,26),(18434,'2018-07-17 02:50:13',433759248800022532,1185,17),(18435,'2018-07-17 02:50:15',433759248800022532,1185,16),(18436,'2018-07-17 02:50:16',433759248800022532,1185,19),(18437,'2018-07-17 02:50:18',433759248800022532,1185,18),(18438,'2018-07-17 02:50:20',433759248800022532,1185,21),(18439,'2018-07-17 02:50:21',433759248800022532,1185,17),(18440,'2018-07-17 02:50:23',433759248800022532,1185,18),(18441,'2018-07-17 02:50:25',433759248800022532,1185,16),(18442,'2018-07-17 02:50:30',265610485812953088,1185,17),(18443,'2018-07-17 02:50:34',265610485812953088,1185,9),(18444,'2018-07-17 02:50:40',265610485812953088,1185,12),(18445,'2018-07-17 02:50:49',200340393596944384,1185,19),(18446,'2018-07-17 02:50:54',200340393596944384,1185,13),(18447,'2018-07-17 02:50:57',265610485812953088,1185,12),(18448,'2018-07-17 02:50:59',200340393596944384,1185,10),(18449,'2018-07-17 02:51:01',265610485812953088,1185,14),(18450,'2018-07-17 02:51:04',200340393596944384,1185,13),(18451,'2018-07-17 02:51:08',200340393596944384,1185,21),(18452,'2018-07-17 02:54:04',465785309821534248,1185,22),(18453,'2018-07-17 02:54:05',185698541052755968,1185,11),(18454,'2018-07-17 02:54:07',185698541052755968,1185,11),(18455,'2018-07-17 02:54:09',185698541052755968,1185,7),(18456,'2018-07-17 02:54:11',185698541052755968,1185,9),(18457,'2018-07-17 02:54:13',185698541052755968,1185,14),(18458,'2018-07-17 02:54:15',185698541052755968,1185,9),(18459,'2018-07-17 02:54:17',185698541052755968,1185,11),(18460,'2018-07-17 02:54:19',185698541052755968,1185,7),(18461,'2018-07-17 02:54:21',465785309821534248,1185,23),(18462,'2018-07-17 03:22:27',450736651497635850,1186,6),(18463,'2018-07-17 03:23:15',450736651497635850,1186,15),(18464,'2018-07-17 03:23:15',450736651497635850,1186,9),(18465,'2018-07-17 03:23:15',450736651497635850,1186,9),(18466,'2018-07-17 03:23:15',450736651497635850,1186,14),(18467,'2018-07-17 03:24:20',450736651497635850,1186,13),(18468,'2018-07-17 03:25:03',150649616772235264,1186,22),(18469,'2018-07-17 03:25:06',150649616772235264,1186,25),(18470,'2018-07-17 03:25:10',150649616772235264,1186,17),(18471,'2018-07-17 03:25:14',150649616772235264,1186,21),(18472,'2018-07-17 03:25:20',150649616772235264,1186,18),(18473,'2018-07-17 03:25:25',150649616772235264,1186,13),(18474,'2018-07-17 03:34:15',465785309821534248,1187,16),(18475,'2018-07-17 03:34:17',465785309821534248,1187,10),(18476,'2018-07-17 03:34:21',465785309821534248,1187,12),(18477,'2018-07-17 03:34:24',465785309821534248,1187,19),(18478,'2018-07-17 03:59:15',460761978135248896,1188,13),(18479,'2018-07-17 03:59:17',460761978135248896,1188,21),(18480,'2018-07-17 03:59:19',460761978135248896,1188,22),(18481,'2018-07-17 03:59:21',460761978135248896,1188,26),(18482,'2018-07-17 03:59:23',460761978135248896,1188,14),(18483,'2018-07-17 04:30:15',185698541052755968,1189,6),(18484,'2018-07-17 04:30:16',200340393596944384,1189,18),(18485,'2018-07-17 04:30:17',200340393596944384,1189,14),(18486,'2018-07-17 04:30:18',200340393596944384,1189,14),(18487,'2018-07-17 04:30:21',185698541052755968,1189,13),(18488,'2018-07-17 04:30:23',185698541052755968,1189,16),(18489,'2018-07-17 04:30:25',185698541052755968,1189,10),(18490,'2018-07-17 04:30:25',200340393596944384,1189,24),(18491,'2018-07-17 05:05:40',150649616772235264,1190,24),(18492,'2018-07-17 05:05:42',150649616772235264,1190,14),(18493,'2018-07-17 05:05:43',150649616772235264,1190,12),(18494,'2018-07-17 05:05:45',150649616772235264,1190,22),(18495,'2018-07-17 05:05:46',150649616772235264,1190,17),(18496,'2018-07-17 05:05:48',150649616772235264,1190,18),(18497,'2018-07-17 05:05:53',200340393596944384,1190,15),(18498,'2018-07-17 05:05:54',200340393596944384,1190,11),(18499,'2018-07-17 05:30:26',200340393596944384,1191,25),(18500,'2018-07-17 05:30:26',200340393596944384,1191,16),(18501,'2018-07-17 05:30:27',200340393596944384,1191,18),(18502,'2018-07-17 05:30:27',200340393596944384,1191,15),(18503,'2018-07-17 05:30:29',150649616772235264,1191,18),(18504,'2018-07-17 05:30:32',150649616772235264,1191,18),(18505,'2018-07-17 05:30:32',200340393596944384,1191,22),(18506,'2018-07-17 05:30:32',200340393596944384,1191,20),(18507,'2018-07-17 05:30:33',200340393596944384,1191,15),(18508,'2018-07-17 05:30:34',150649616772235264,1191,13),(18509,'2018-07-17 05:30:36',150649616772235264,1191,26),(18510,'2018-07-17 05:49:37',150649616772235264,1192,23),(18511,'2018-07-17 05:49:40',150649616772235264,1192,10),(18512,'2018-07-17 05:49:41',200340393596944384,1192,10),(18513,'2018-07-17 05:49:41',200340393596944384,1192,18),(18514,'2018-07-17 05:49:42',150649616772235264,1192,10),(18515,'2018-07-17 05:49:43',460761978135248896,1192,13),(18516,'2018-07-17 05:49:43',200340393596944384,1192,19),(18517,'2018-07-17 05:49:44',200340393596944384,1192,18),(18518,'2018-07-17 05:49:44',150649616772235264,1192,25),(18519,'2018-07-17 05:49:45',460761978135248896,1192,26),(18520,'2018-07-17 05:49:45',200340393596944384,1192,17),(18521,'2018-07-17 05:49:46',150649616772235264,1192,20),(18522,'2018-07-17 05:49:46',200340393596944384,1192,13),(18523,'2018-07-17 06:32:49',429615167492325376,1193,9),(18524,'2018-07-17 06:32:49',460761978135248896,1193,28),(18525,'2018-07-17 06:32:51',460761978135248896,1193,20),(18526,'2018-07-17 06:32:53',460761978135248896,1193,16),(18527,'2018-07-17 06:32:56',429615167492325376,1193,14),(18528,'2018-07-17 06:32:56',460761978135248896,1193,11),(18529,'2018-07-17 06:32:59',460761978135248896,1193,23),(18530,'2018-07-17 06:33:01',429615167492325376,1193,9),(18531,'2018-07-17 06:33:02',460761978135248896,1193,19),(18532,'2018-07-17 06:33:05',460761978135248896,1193,20),(18533,'2018-07-17 06:33:07',429615167492325376,1193,11),(18534,'2018-07-17 06:33:09',460761978135248896,1193,25),(18535,'2018-07-17 06:33:11',429615167492325376,1193,11),(18536,'2018-07-17 06:33:25',460761978135248896,1193,20),(18537,'2018-07-17 06:33:32',429615167492325376,1193,13),(18538,'2018-07-17 06:33:37',429615167492325376,1193,9),(18539,'2018-07-17 06:33:42',429615167492325376,1193,14),(18540,'2018-07-17 06:34:35',460761978135248896,1193,21),(18541,'2018-07-17 06:34:47',429615167492325376,1193,15),(18542,'2018-07-17 06:48:48',460761978135248896,1194,26),(18543,'2018-07-17 06:48:52',460761978135248896,1194,19),(18544,'2018-07-17 06:48:56',460761978135248896,1194,29),(18545,'2018-07-17 06:49:00',460761978135248896,1194,11),(18546,'2018-07-17 06:49:04',460761978135248896,1194,26),(18547,'2018-07-17 06:49:08',460761978135248896,1194,25),(18548,'2018-07-17 06:49:26',460761978135248896,1194,24),(18549,'2018-07-17 06:52:03',460761978135248896,1194,14),(18550,'2018-07-17 07:05:19',460761978135248896,1195,24),(18551,'2018-07-17 07:05:21',460761978135248896,1195,29),(18552,'2018-07-17 07:33:21',457300954660995114,1196,16),(18553,'2018-07-17 07:33:21',460761978135248896,1196,20),(18554,'2018-07-17 07:33:22',163655183438446593,1196,14),(18555,'2018-07-17 07:33:24',163655183438446593,1196,12),(18556,'2018-07-17 07:33:26',163655183438446593,1196,11),(18557,'2018-07-17 08:03:26',460761978135248896,1197,13),(18558,'2018-07-17 08:03:26',457300954660995114,1197,29),(18559,'2018-07-17 08:03:26',173468649884090368,1197,11),(18560,'2018-07-17 08:03:27',163655183438446593,1197,13),(18561,'2018-07-17 08:03:28',460761978135248896,1197,20),(18562,'2018-07-17 08:03:28',457300954660995114,1197,25),(18563,'2018-07-17 08:03:29',163655183438446593,1197,13),(18564,'2018-07-17 08:03:29',173468649884090368,1197,21),(18565,'2018-07-17 08:33:30',460761978135248896,1198,25),(18566,'2018-07-17 08:33:30',457300954660995114,1198,18),(18567,'2018-07-17 08:33:32',457300954660995114,1198,23),(18568,'2018-07-17 08:33:33',460761978135248896,1198,19),(18569,'2018-07-17 08:33:34',163655183438446593,1198,11),(18570,'2018-07-17 08:33:34',457300954660995114,1198,27),(18571,'2018-07-17 08:33:35',163655183438446593,1198,13),(18572,'2018-07-17 09:06:53',357981974931046400,1199,25),(18573,'2018-07-17 09:06:54',460761978135248896,1199,19),(18574,'2018-07-17 09:06:55',163655183438446593,1199,11),(18575,'2018-07-17 09:06:55',357981974931046400,1199,27),(18576,'2018-07-17 09:06:56',460761978135248896,1199,22),(18577,'2018-07-17 09:06:57',163655183438446593,1199,19),(18578,'2018-07-17 09:06:58',163655183438446593,1199,10),(18579,'2018-07-17 09:06:59',357981974931046400,1199,32),(18580,'2018-07-17 09:06:59',460761978135248896,1199,14),(18581,'2018-07-17 09:06:59',163655183438446593,1199,11),(18582,'2018-07-17 09:07:01',163655183438446593,1199,11),(18583,'2018-07-17 09:07:01',460761978135248896,1199,25),(18584,'2018-07-17 09:07:02',357981974931046400,1199,17),(18585,'2018-07-17 09:07:04',460761978135248896,1199,14); -INSERT INTO `attackLog` VALUES (18586,'2018-07-17 10:01:56',224083099246395403,1200,45),(18587,'2018-07-17 10:01:57',163655183438446593,1200,17),(18588,'2018-07-17 10:01:59',224083099246395403,1200,26),(18589,'2018-07-17 10:02:00',163655183438446593,1200,8),(18590,'2018-07-17 10:02:03',224083099246395403,1200,21),(18591,'2018-07-17 10:02:06',163655183438446593,1200,18),(18592,'2018-07-17 10:02:07',163655183438446593,1200,18),(18593,'2018-07-17 10:02:07',224083099246395403,1200,29),(18594,'2018-07-17 10:19:22',274301199841361920,1201,20),(18595,'2018-07-17 10:19:22',357981974931046400,1201,13),(18596,'2018-07-17 10:19:22',274301199841361920,1201,22),(18597,'2018-07-17 10:19:23',274301199841361920,1201,14),(18598,'2018-07-17 10:19:23',173468649884090368,1201,12),(18599,'2018-07-17 10:19:23',274301199841361920,1201,20),(18600,'2018-07-17 10:19:23',173468649884090368,1201,21),(18601,'2018-07-17 10:19:23',274301199841361920,1201,19),(18602,'2018-07-17 10:19:23',357981974931046400,1201,26),(18603,'2018-07-17 10:19:24',274301199841361920,1201,15),(18604,'2018-07-17 10:19:24',173468649884090368,1201,9),(18605,'2018-07-17 10:19:24',274301199841361920,1201,23),(18606,'2018-07-17 10:19:24',357981974931046400,1201,27),(18607,'2018-07-17 10:19:25',173468649884090368,1201,17),(18608,'2018-07-17 10:19:25',173468649884090368,1201,22),(18609,'2018-07-17 10:19:25',163655183438446593,1201,14),(18610,'2018-07-17 10:19:25',357981974931046400,1201,21),(18611,'2018-07-17 10:19:25',163655183438446593,1201,10),(18612,'2018-07-17 10:19:26',163655183438446593,1201,12),(18613,'2018-07-17 10:19:26',163655183438446593,1201,10),(18614,'2018-07-17 11:02:12',118124619117887488,1202,14),(18615,'2018-07-17 11:02:13',118124619117887488,1202,19),(18616,'2018-07-17 11:02:17',118124619117887488,1202,28),(18617,'2018-07-17 11:02:19',163655183438446593,1202,13),(18618,'2018-07-17 11:02:19',139861211746402304,1202,9),(18619,'2018-07-17 11:02:19',163655183438446593,1202,9),(18620,'2018-07-17 11:02:20',163655183438446593,1202,12),(18621,'2018-07-17 11:02:20',118124619117887488,1202,21),(18622,'2018-07-17 11:02:21',118124619117887488,1202,16),(18623,'2018-07-17 11:02:23',139861211746402304,1202,12),(18624,'2018-07-17 11:02:30',139861211746402304,1202,8),(18625,'2018-07-17 11:02:30',163655183438446593,1202,13),(18626,'2018-07-17 11:02:31',163655183438446593,1202,14),(18627,'2018-07-17 11:02:43',163655183438446593,1202,15),(18628,'2018-07-17 11:02:46',139861211746402304,1202,8),(18629,'2018-07-17 11:02:50',357981974931046400,1202,14),(18630,'2018-07-17 11:02:51',357981974931046400,1202,18),(18631,'2018-07-17 11:02:51',357981974931046400,1202,28),(18632,'2018-07-17 11:02:52',139861211746402304,1202,13),(18633,'2018-07-17 11:02:53',118124619117887488,1202,21),(18634,'2018-07-17 11:03:00',357981974931046400,1202,19),(18635,'2018-07-17 11:03:01',357981974931046400,1202,26),(18636,'2018-07-17 11:03:02',357981974931046400,1202,36),(18637,'2018-07-17 11:03:08',139861211746402304,1202,16),(18638,'2018-07-17 11:13:49',173468649884090368,1203,13),(18639,'2018-07-17 11:13:50',173468649884090368,1203,18),(18640,'2018-07-17 11:13:53',173468649884090368,1203,19),(18641,'2018-07-17 11:13:54',173468649884090368,1203,13),(18642,'2018-07-17 11:13:56',173468649884090368,1203,17),(18643,'2018-07-17 11:13:58',118124619117887488,1203,22),(18644,'2018-07-17 11:14:12',139861211746402304,1203,14),(18645,'2018-07-17 11:14:14',118124619117887488,1203,19),(18646,'2018-07-17 11:14:16',118124619117887488,1203,18),(18647,'2018-07-17 11:14:18',118124619117887488,1203,12),(18648,'2018-07-17 11:15:07',173468649884090368,1203,9),(18649,'2018-07-17 11:15:34',139861211746402304,1203,12),(18650,'2018-07-17 11:17:04',118124619117887488,1203,23),(18651,'2018-07-17 11:17:05',118124619117887488,1203,11),(18652,'2018-07-17 11:17:07',173468649884090368,1203,18),(18653,'2018-07-17 11:47:14',118124619117887488,1204,19),(18654,'2018-07-17 11:47:23',118124619117887488,1204,21),(18655,'2018-07-17 11:47:28',274301199841361920,1204,22),(18656,'2018-07-17 11:47:29',274301199841361920,1204,29),(18657,'2018-07-17 11:47:30',274301199841361920,1204,29),(18658,'2018-07-17 11:47:35',274301199841361920,1204,29),(18659,'2018-07-17 11:47:37',274301199841361920,1204,14),(18660,'2018-07-17 12:19:26',357981974931046400,1205,30),(18661,'2018-07-17 12:19:28',163655183438446593,1205,11),(18662,'2018-07-17 12:30:30',357981974931046400,1206,22),(18663,'2018-07-17 12:31:22',357981974931046400,1206,22),(18664,'2018-07-17 12:33:35',163655183438446593,1206,10),(18665,'2018-07-17 12:33:44',163655183438446593,1206,13),(18666,'2018-07-17 12:51:55',357981974931046400,1207,36),(18667,'2018-07-17 12:51:55',274301199841361920,1207,15),(18668,'2018-07-17 12:51:56',274301199841361920,1207,23),(18669,'2018-07-17 12:51:59',274301199841361920,1207,23),(18670,'2018-07-17 12:52:01',163655183438446593,1207,15),(18671,'2018-07-17 13:30:50',357981974931046400,1208,25),(18672,'2018-07-17 13:30:52',357981974931046400,1208,37),(18673,'2018-07-17 13:30:54',200340393596944384,1208,16),(18674,'2018-07-17 13:30:55',274301199841361920,1208,13),(18675,'2018-07-17 13:30:56',200340393596944384,1208,22),(18676,'2018-07-17 13:30:57',200340393596944384,1208,12),(18677,'2018-07-17 13:30:58',274301199841361920,1208,19),(18678,'2018-07-17 13:30:59',200340393596944384,1208,18),(18679,'2018-07-17 13:31:02',274301199841361920,1208,24),(18680,'2018-07-17 13:44:44',163655183438446593,1209,9),(18681,'2018-07-17 13:44:51',163655183438446593,1209,18),(18682,'2018-07-17 13:44:57',163655183438446593,1209,18),(18683,'2018-07-17 13:44:59',163655183438446593,1209,7),(18684,'2018-07-17 13:45:15',163655183438446593,1209,8),(18685,'2018-07-17 13:45:18',163655183438446593,1209,13),(18686,'2018-07-17 13:46:06',200340393596944384,1209,23),(18687,'2018-07-17 13:46:08',200340393596944384,1209,15),(18688,'2018-07-17 13:46:09',200340393596944384,1209,24),(18689,'2018-07-17 13:46:10',200340393596944384,1209,21),(18690,'2018-07-17 13:46:12',200340393596944384,1209,18),(18691,'2018-07-17 13:46:13',200340393596944384,1209,20),(18692,'2018-07-17 13:46:15',200340393596944384,1209,12),(18693,'2018-07-17 13:46:16',200340393596944384,1209,24),(18694,'2018-07-17 13:46:34',200340393596944384,1209,14),(18695,'2018-07-17 14:05:21',433759248800022532,1210,13),(18696,'2018-07-17 14:05:23',283395529449406464,1210,10),(18697,'2018-07-17 14:05:23',433759248800022532,1210,9),(18698,'2018-07-17 14:05:25',433759248800022532,1210,23),(18699,'2018-07-17 14:05:26',283395529449406464,1210,19),(18700,'2018-07-17 14:05:27',433759248800022532,1210,23),(18701,'2018-07-17 14:05:29',283395529449406464,1210,11),(18702,'2018-07-17 14:05:29',433759248800022532,1210,20),(18703,'2018-07-17 14:05:29',163655183438446593,1210,8),(18704,'2018-07-17 14:05:31',433759248800022532,1210,14),(18705,'2018-07-17 14:05:31',163655183438446593,1210,13),(18706,'2018-07-17 14:05:33',433759248800022532,1210,9),(18707,'2018-07-17 14:05:34',433759248800022532,1210,14),(18708,'2018-07-17 14:05:34',283395529449406464,1210,24),(18709,'2018-07-17 14:05:39',283395529449406464,1210,11),(18710,'2018-07-17 14:05:41',163655183438446593,1210,15),(18711,'2018-07-17 14:05:42',163655183438446593,1210,13),(18712,'2018-07-17 14:05:46',163655183438446593,1210,15),(18713,'2018-07-17 14:05:49',163655183438446593,1210,13),(18714,'2018-07-17 14:15:10',200340393596944384,1211,16),(18715,'2018-07-17 14:15:11',357981974931046400,1211,15),(18716,'2018-07-17 14:15:12',200340393596944384,1211,23),(18717,'2018-07-17 14:15:13',200340393596944384,1211,18),(18718,'2018-07-17 14:15:13',163655183438446593,1211,14),(18719,'2018-07-17 14:15:14',357981974931046400,1211,23),(18720,'2018-07-17 14:15:15',200340393596944384,1211,25),(18721,'2018-07-17 14:15:16',200340393596944384,1211,22),(18722,'2018-07-17 14:15:17',357981974931046400,1211,35),(18723,'2018-07-17 14:15:17',200340393596944384,1211,19),(18724,'2018-07-17 14:15:18',163655183438446593,1211,12),(18725,'2018-07-17 14:15:19',200340393596944384,1211,19),(18726,'2018-07-17 14:15:20',200340393596944384,1211,25),(18727,'2018-07-17 14:15:25',357981974931046400,1211,18),(18728,'2018-07-17 14:15:27',163655183438446593,1211,18),(18729,'2018-07-17 15:05:29',433759248800022532,1212,17),(18730,'2018-07-17 15:05:31',433759248800022532,1212,18),(18731,'2018-07-17 15:05:32',163655183438446593,1212,11),(18732,'2018-07-17 15:05:33',433759248800022532,1212,12),(18733,'2018-07-17 15:05:34',163655183438446593,1212,12),(18734,'2018-07-17 15:05:36',433759248800022532,1212,14),(18735,'2018-07-17 15:05:37',433759248800022532,1212,17),(18736,'2018-07-17 15:05:39',433759248800022532,1212,13),(18737,'2018-07-17 15:05:39',163655183438446593,1212,19),(18738,'2018-07-17 15:05:40',433759248800022532,1212,14),(18739,'2018-07-17 15:05:41',163655183438446593,1212,9),(18740,'2018-07-17 15:05:42',173468649884090368,1212,9),(18741,'2018-07-17 15:05:42',433759248800022532,1212,15),(18742,'2018-07-17 15:05:44',173468649884090368,1212,17),(18743,'2018-07-17 15:05:46',173468649884090368,1212,22),(18744,'2018-07-17 15:05:49',173468649884090368,1212,20),(18745,'2018-07-17 15:05:59',173468649884090368,1212,22),(18746,'2018-07-17 15:06:20',200340393596944384,1212,13),(18747,'2018-07-17 15:06:22',200340393596944384,1212,24),(18748,'2018-07-17 15:06:23',200340393596944384,1212,25),(18749,'2018-07-17 15:47:02',325565391478718464,1213,31),(18750,'2018-07-17 15:47:02',325565391478718464,1213,18),(18751,'2018-07-17 15:47:02',173468649884090368,1213,10),(18752,'2018-07-17 15:47:03',325565391478718464,1213,15),(18753,'2018-07-17 15:47:04',200340393596944384,1213,16),(18754,'2018-07-17 15:47:04',173468649884090368,1213,18),(18755,'2018-07-17 15:47:05',325565391478718464,1213,15),(18756,'2018-07-17 15:47:05',200340393596944384,1213,18),(18757,'2018-07-17 15:47:06',173468649884090368,1213,12),(18758,'2018-07-17 15:47:07',118124619117887488,1213,23),(18759,'2018-07-17 15:47:07',200340393596944384,1213,20),(18760,'2018-07-17 15:47:07',173468649884090368,1213,16),(18761,'2018-07-17 15:47:08',118124619117887488,1213,26),(18762,'2018-07-17 15:47:08',200340393596944384,1213,18),(18763,'2018-07-17 15:47:10',118124619117887488,1213,11),(18764,'2018-07-17 15:47:11',173468649884090368,1213,13),(18765,'2018-07-17 15:47:14',200340393596944384,1213,20),(18766,'2018-07-17 15:47:16',118124619117887488,1213,23),(18767,'2018-07-17 15:47:16',118124619117887488,1213,15),(18768,'2018-07-17 15:47:27',200340393596944384,1213,10),(18769,'2018-07-17 15:47:28',200340393596944384,1213,11),(18770,'2018-07-17 15:47:31',200340393596944384,1213,12),(18771,'2018-07-17 15:47:51',118124619117887488,1213,13),(18772,'2018-07-17 15:48:06',433759248800022532,1213,18),(18773,'2018-07-17 16:17:26',201102155896193024,1214,29),(18774,'2018-07-17 16:17:26',383328874169237506,1214,10),(18775,'2018-07-17 16:17:27',433759248800022532,1214,22),(18776,'2018-07-17 16:17:27',201102155896193024,1214,34),(18777,'2018-07-17 16:17:27',433759248800022532,1214,22),(18778,'2018-07-17 16:17:27',433759248800022532,1214,16),(18779,'2018-07-17 16:17:28',383328874169237506,1214,12),(18780,'2018-07-17 16:17:28',433759248800022532,1214,18),(18781,'2018-07-17 16:17:28',383328874169237506,1214,14),(18782,'2018-07-17 16:17:28',433759248800022532,1214,19),(18783,'2018-07-17 16:17:29',383328874169237506,1214,8),(18784,'2018-07-17 16:17:29',433759248800022532,1214,13),(18785,'2018-07-17 16:17:29',433759248800022532,1214,20),(18786,'2018-07-17 16:17:30',433759248800022532,1214,12),(18787,'2018-07-17 16:17:31',459883167160205313,1214,23),(18788,'2018-07-17 16:17:32',459883167160205313,1214,15),(18789,'2018-07-17 16:17:32',459883167160205313,1214,19),(18790,'2018-07-17 16:17:38',200340393596944384,1214,19),(18791,'2018-07-17 16:17:39',200340393596944384,1214,17),(18792,'2018-07-17 16:17:40',200340393596944384,1214,16),(18793,'2018-07-17 16:17:46',459876383431327746,1214,17),(18794,'2018-07-17 16:17:46',459876383431327746,1214,24),(18795,'2018-07-17 16:17:47',200340393596944384,1214,24),(18796,'2018-07-17 17:02:44',150649616772235264,1215,12),(18797,'2018-07-17 17:02:47',150649616772235264,1215,17),(18798,'2018-07-17 17:02:54',150649616772235264,1215,11),(18799,'2018-07-17 17:02:57',173468649884090368,1215,12),(18800,'2018-07-17 17:02:58',150649616772235264,1215,11),(18801,'2018-07-17 17:03:01',173468649884090368,1215,10),(18802,'2018-07-17 17:03:03',150649616772235264,1215,13),(18803,'2018-07-17 17:03:06',173468649884090368,1215,19),(18804,'2018-07-17 17:03:09',173468649884090368,1215,10),(18805,'2018-07-17 17:03:19',118124619117887488,1215,24),(18806,'2018-07-17 17:03:38',173468649884090368,1215,18),(18807,'2018-07-17 17:03:47',274301199841361920,1215,27),(18808,'2018-07-17 17:03:51',274301199841361920,1215,14),(18809,'2018-07-17 17:03:55',274301199841361920,1215,13),(18810,'2018-07-17 17:03:58',274301199841361920,1215,14),(18811,'2018-07-17 17:04:03',274301199841361920,1215,12),(18812,'2018-07-17 17:04:06',274301199841361920,1215,20),(18813,'2018-07-17 17:04:09',274301199841361920,1215,11),(18814,'2018-07-17 17:04:21',150649616772235264,1215,19),(18815,'2018-07-17 17:04:30',274301199841361920,1215,19),(18816,'2018-07-17 17:05:29',457300954660995114,1215,24),(18817,'2018-07-17 17:05:33',457300954660995114,1215,20),(18818,'2018-07-17 17:05:38',457300954660995114,1215,25),(18819,'2018-07-17 17:05:44',457300954660995114,1215,27),(18820,'2018-07-17 17:05:48',457300954660995114,1215,20),(18821,'2018-07-17 17:05:52',457300954660995114,1215,19),(18822,'2018-07-17 17:05:56',457300954660995114,1215,20),(18823,'2018-07-17 17:06:07',150649616772235264,1215,16),(18824,'2018-07-17 17:30:49',211232684209340426,1216,12),(18825,'2018-07-17 17:30:53',211232684209340426,1216,19),(18826,'2018-07-17 17:30:58',211232684209340426,1216,16),(18827,'2018-07-17 17:31:03',211232684209340426,1216,17),(18828,'2018-07-17 17:31:08',211232684209340426,1216,27),(18829,'2018-07-17 17:31:12',211232684209340426,1216,29),(18830,'2018-07-17 17:31:17',211232684209340426,1216,22),(18831,'2018-07-17 17:31:22',211232684209340426,1216,12),(18832,'2018-07-17 17:31:27',211232684209340426,1216,11),(18833,'2018-07-17 17:35:47',459876383431327746,1216,10),(18834,'2018-07-17 17:35:48',459876383431327746,1216,14),(18835,'2018-07-17 17:35:55',459876383431327746,1216,14),(18836,'2018-07-17 17:35:56',459876383431327746,1216,22),(18837,'2018-07-17 17:35:57',459876383431327746,1216,22),(18838,'2018-07-17 17:36:10',459879057295671296,1216,20),(18839,'2018-07-17 17:36:15',459879057295671296,1216,12),(18840,'2018-07-17 17:36:16',459879057295671296,1216,19),(18841,'2018-07-17 17:36:18',459879057295671296,1216,20),(18842,'2018-07-17 17:36:38',459883167160205313,1216,11),(18843,'2018-07-17 17:36:41',459883167160205313,1216,25),(18844,'2018-07-17 17:36:43',173468649884090368,1216,11),(18845,'2018-07-17 17:36:46',173468649884090368,1216,20),(18846,'2018-07-17 17:45:44',454823752925052930,1217,25),(18847,'2018-07-17 17:45:46',454823752925052930,1217,22),(18848,'2018-07-17 18:33:01',274301199841361920,1218,21),(18849,'2018-07-17 18:33:02',274301199841361920,1218,21),(18850,'2018-07-17 18:33:03',274301199841361920,1218,29),(18851,'2018-07-17 18:33:03',357981974931046400,1218,37),(18852,'2018-07-17 19:05:18',218498162745278474,1219,23),(18853,'2018-07-17 19:05:18',218498162745278474,1219,20),(18854,'2018-07-17 19:05:19',218498162745278474,1219,15),(18855,'2018-07-17 19:05:19',454823752925052930,1219,24),(18856,'2018-07-17 19:05:19',218498162745278474,1219,27),(18857,'2018-07-17 19:05:20',324727149930086400,1219,12),(18858,'2018-07-17 19:05:21',454823752925052930,1219,26),(18859,'2018-07-17 20:06:36',357981974931046400,1221,17),(18860,'2018-07-17 20:06:37',150649616772235264,1221,27),(18861,'2018-07-17 20:47:02',191198987490033664,1222,15),(18862,'2018-07-17 20:47:05',150649616772235264,1222,11),(18863,'2018-07-17 20:47:07',191198987490033664,1222,16),(18864,'2018-07-17 20:47:12',191198987490033664,1222,11),(18865,'2018-07-17 20:47:16',191198987490033664,1222,18),(18866,'2018-07-17 21:14:22',457300954660995114,1223,17),(18867,'2018-07-17 21:14:22',357981974931046400,1223,30),(18868,'2018-07-17 21:14:22',465785309821534248,1223,17),(18869,'2018-07-17 21:14:23',465785309821534248,1223,21),(18870,'2018-07-17 21:14:23',457300954660995114,1223,15),(18871,'2018-07-17 21:14:24',465785309821534248,1223,21),(18872,'2018-07-17 21:14:24',357981974931046400,1223,31),(18873,'2018-07-17 21:44:27',460761978135248896,1224,19),(18874,'2018-07-17 21:44:27',457300954660995114,1224,11),(18875,'2018-07-17 21:44:27',357981974931046400,1224,29),(18876,'2018-07-17 21:44:28',454823752925052930,1224,22),(18877,'2018-07-17 21:44:29',454823752925052930,1224,22),(18878,'2018-07-17 21:44:29',457300954660995114,1224,11),(18879,'2018-07-17 21:44:29',460761978135248896,1224,14),(18880,'2018-07-17 21:44:30',357981974931046400,1224,27),(18881,'2018-07-17 21:44:30',454823752925052930,1224,14),(18882,'2018-07-17 22:20:46',457300954660995114,1225,26),(18883,'2018-07-17 22:20:46',460761978135248896,1225,16),(18884,'2018-07-17 22:36:23',454823752925052930,1226,10),(18885,'2018-07-17 22:36:23',274301199841361920,1226,14),(18886,'2018-07-17 22:36:23',457300954660995114,1226,20),(18887,'2018-07-17 22:36:24',454823752925052930,1226,21),(18888,'2018-07-17 22:48:27',454823752925052930,1227,16),(18889,'2018-07-17 22:48:28',457300954660995114,1227,11),(18890,'2018-07-17 22:48:28',274301199841361920,1227,20),(18891,'2018-07-17 22:48:28',460761978135248896,1227,13),(18892,'2018-07-17 22:48:28',454823752925052930,1227,18),(18893,'2018-07-17 22:48:28',274301199841361920,1227,28),(18894,'2018-07-17 23:03:15',454823752925052930,1228,15),(18895,'2018-07-17 23:03:16',274301199841361920,1228,20),(18896,'2018-07-17 23:03:16',457300954660995114,1228,20),(18897,'2018-07-17 23:03:16',460761978135248896,1228,26),(18898,'2018-07-17 23:03:16',454823752925052930,1228,22),(18899,'2018-07-17 23:03:16',274301199841361920,1228,28),(18900,'2018-07-17 23:03:17',454823752925052930,1228,18),(18901,'2018-07-17 23:03:17',274301199841361920,1228,20),(18902,'2018-07-17 23:03:17',454823752925052930,1228,22),(18903,'2018-07-17 23:33:19',454823752925052930,1229,23),(18904,'2018-07-17 23:33:19',274301199841361920,1229,24),(18905,'2018-07-17 23:33:19',460761978135248896,1229,27),(18906,'2018-07-17 23:33:19',454823752925052930,1229,16),(18907,'2018-07-17 23:33:19',274301199841361920,1229,25),(18908,'2018-07-17 23:33:20',457300954660995114,1229,16),(18909,'2018-07-17 23:33:20',454823752925052930,1229,12),(18910,'2018-07-17 23:33:20',274301199841361920,1229,27),(18911,'2018-07-17 23:33:20',454823752925052930,1229,25),(18912,'2018-07-17 23:33:21',274301199841361920,1229,25),(18913,'2018-07-17 23:50:25',200340393596944384,1230,16),(18914,'2018-07-17 23:50:25',457300954660995114,1230,25),(18915,'2018-07-17 23:50:25',460761978135248896,1230,25),(18916,'2018-07-17 23:50:26',200340393596944384,1230,13),(18917,'2018-07-17 23:50:26',200340393596944384,1230,15),(18918,'2018-07-17 23:50:27',457300954660995114,1230,19),(18919,'2018-07-17 23:50:27',460761978135248896,1230,23),(18920,'2018-07-17 23:50:28',200340393596944384,1230,12),(18921,'2018-07-17 23:50:29',460761978135248896,1230,25),(18922,'2018-07-18 01:01:03',460761978135248896,1231,21),(18923,'2018-07-18 01:01:04',457300954660995114,1231,18),(18924,'2018-07-18 01:01:05',460761978135248896,1231,15),(18925,'2018-07-18 01:01:06',457300954660995114,1231,24),(18926,'2018-07-18 01:01:07',460761978135248896,1231,29),(18927,'2018-07-18 01:01:08',457300954660995114,1231,19),(18928,'2018-07-18 01:01:10',460761978135248896,1231,25),(18929,'2018-07-18 01:01:11',457300954660995114,1231,14),(18930,'2018-07-18 01:01:12',460761978135248896,1231,24),(18931,'2018-07-18 01:01:14',460761978135248896,1231,20),(18932,'2018-07-18 01:01:15',457300954660995114,1231,19),(18933,'2018-07-18 01:01:17',460761978135248896,1231,19),(18934,'2018-07-18 01:01:18',457300954660995114,1231,26),(18935,'2018-07-18 01:01:19',460761978135248896,1231,23),(18936,'2018-07-18 01:01:22',460761978135248896,1231,18),(18937,'2018-07-18 01:01:23',457300954660995114,1231,13),(18938,'2018-07-18 01:01:56',457300954660995114,1231,23),(18939,'2018-07-18 01:16:15',460761978135248896,1232,13),(18940,'2018-07-18 01:16:17',457300954660995114,1232,15),(18941,'2018-07-18 01:16:17',457300954660995114,1232,18),(18942,'2018-07-18 01:16:20',460761978135248896,1232,13),(18943,'2018-07-18 01:16:21',457300954660995114,1232,22),(18944,'2018-07-18 01:16:23',460761978135248896,1232,21),(18945,'2018-07-18 01:16:25',457300954660995114,1232,20),(18946,'2018-07-18 01:16:27',460761978135248896,1232,28),(18947,'2018-07-18 01:16:39',460761978135248896,1232,19),(18948,'2018-07-18 01:16:45',457300954660995114,1232,26),(18949,'2018-07-18 01:16:50',460761978135248896,1232,18),(18950,'2018-07-18 01:16:53',457300954660995114,1232,28),(18951,'2018-07-18 01:16:56',460761978135248896,1232,29),(18952,'2018-07-18 01:16:58',457300954660995114,1232,21),(18953,'2018-07-18 01:17:05',185698541052755968,1232,12),(18954,'2018-07-18 01:17:07',185698541052755968,1232,11),(18955,'2018-07-18 01:17:09',185698541052755968,1232,8),(18956,'2018-07-18 01:17:10',185698541052755968,1232,11),(18957,'2018-07-18 01:17:11',460761978135248896,1232,23),(18958,'2018-07-18 01:17:12',185698541052755968,1232,13),(18959,'2018-07-18 01:34:37',185698541052755968,1233,15),(18960,'2018-07-18 01:34:38',457300954660995114,1233,26),(18961,'2018-07-18 01:34:39',185698541052755968,1233,11),(18962,'2018-07-18 01:34:41',185698541052755968,1233,10),(18963,'2018-07-18 01:34:42',185698541052755968,1233,9),(18964,'2018-07-18 01:34:43',457300954660995114,1233,19),(18965,'2018-07-18 01:34:44',185698541052755968,1233,15),(18966,'2018-07-18 01:34:46',185698541052755968,1233,6),(18967,'2018-07-18 01:34:47',185698541052755968,1233,11),(18968,'2018-07-18 01:34:49',185698541052755968,1233,10),(18969,'2018-07-18 01:34:50',185698541052755968,1233,12),(18970,'2018-07-18 01:34:52',185698541052755968,1233,11),(18971,'2018-07-18 01:34:59',460761978135248896,1233,20),(18972,'2018-07-18 01:35:05',150649616772235264,1233,11),(18973,'2018-07-18 01:35:07',457300954660995114,1233,18),(18974,'2018-07-18 01:35:10',460761978135248896,1233,29),(18975,'2018-07-18 01:35:12',457300954660995114,1233,27),(18976,'2018-07-18 01:35:15',460761978135248896,1233,28),(18977,'2018-07-18 01:35:17',150649616772235264,1233,18),(18978,'2018-07-18 01:35:21',460761978135248896,1233,29),(18979,'2018-07-18 01:49:02',200340393596944384,1234,21),(18980,'2018-07-18 01:49:04',200340393596944384,1234,11),(18981,'2018-07-18 01:49:06',200340393596944384,1234,10),(18982,'2018-07-18 01:49:07',200340393596944384,1234,20),(18983,'2018-07-18 01:49:12',200340393596944384,1234,11),(18984,'2018-07-18 01:49:13',200340393596944384,1234,26),(18985,'2018-07-18 01:49:14',200340393596944384,1234,18),(18986,'2018-07-18 01:49:15',200340393596944384,1234,16),(18987,'2018-07-18 01:49:21',460761978135248896,1234,12),(18988,'2018-07-18 01:49:25',460761978135248896,1234,13),(18989,'2018-07-18 01:49:25',457300954660995114,1234,14),(18990,'2018-07-18 01:50:37',200340393596944384,1234,12),(18991,'2018-07-18 01:50:43',454823752925052930,1234,10),(18992,'2018-07-18 01:50:45',454823752925052930,1234,15),(18993,'2018-07-18 01:50:46',454823752925052930,1234,26),(18994,'2018-07-18 01:50:47',454823752925052930,1234,23),(18995,'2018-07-18 01:50:48',454823752925052930,1234,16),(18996,'2018-07-18 02:18:20',200340393596944384,1235,23),(18997,'2018-07-18 02:18:22',200340393596944384,1235,19),(18998,'2018-07-18 02:18:42',460761978135248896,1235,21),(18999,'2018-07-18 02:18:53',150649616772235264,1235,10),(19000,'2018-07-18 02:19:08',150649616772235264,1235,21),(19001,'2018-07-18 02:19:43',454823752925052930,1235,26),(19002,'2018-07-18 02:31:41',460761978135248896,1236,11),(19003,'2018-07-18 02:31:45',460761978135248896,1236,23),(19004,'2018-07-18 02:31:48',460761978135248896,1236,28); -/*!40000 ALTER TABLE `attackLog` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `factions` --- - -DROP TABLE IF EXISTS `factions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `factions` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `discordRoleID` bigint(20) DEFAULT NULL, - `discordRoleName` varchar(16) DEFAULT NULL, - `account` int(11) DEFAULT NULL, - `isCurrentVictor` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `factions` --- - -LOCK TABLES `factions` WRITE; -/*!40000 ALTER TABLE `factions` DISABLE KEYS */; -INSERT INTO `factions` VALUES (1,454460679244480512,'The Order',18,0),(2,454460756520337418,'The Anarchy',414,1),(3,457312250147897366,'The Religion',17,0); -/*!40000 ALTER TABLE `factions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `hostiles` --- - -DROP TABLE IF EXISTS `hostiles`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `hostiles` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `timeCreated` timestamp NULL DEFAULT CURRENT_TIMESTAMP, - `hostileName` varchar(32) DEFAULT NULL, - `hostileType` varchar(32) DEFAULT NULL, - `maxHealth` int(11) DEFAULT '100', - `health` varchar(16) NOT NULL DEFAULT '100', - `strength` int(11) NOT NULL DEFAULT '10', - `speed` int(11) NOT NULL DEFAULT '10', - `stash` int(11) NOT NULL DEFAULT '10', - `alive` tinyint(1) NOT NULL DEFAULT '0', - `fled` tinyint(1) NOT NULL DEFAULT '0', - `claimID` varchar(4) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=1237 DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `hostiles` --- - -LOCK TABLES `hostiles` WRITE; -/*!40000 ALTER TABLE `hostiles` DISABLE KEYS */; -INSERT INTO `hostiles` VALUES (1,'2018-06-23 01:16:31','Big man dude evil guy','ravager',100,'0',11,11,0,0,0,'0'),(2,'2018-06-24 01:38:44',NULL,'ravager',100,'0',0,15,0,0,0,'0'),(3,'2018-06-24 01:48:44',NULL,'ravager',100,'0',0,10,0,0,0,'0'),(4,'2018-06-24 01:53:44',NULL,'ravager',100,'0',0,12,10,0,0,'3452'),(5,'2018-06-24 01:58:44',NULL,'ravager',100,'0',0,16,10,0,0,'1733'),(6,'2018-06-24 02:08:44',NULL,'ravager',100,'0',0,18,10,0,0,'1209'),(7,'2018-06-24 02:13:44',NULL,'ravager',100,'0',0,13,10,0,0,'2849'),(8,'2018-06-24 02:28:44',NULL,'ravager',100,'0',0,8,10,0,0,'4247'),(9,'2018-06-24 02:48:43',NULL,'ravager',100,'0',0,13,0,0,0,'0'),(10,'2018-06-24 03:18:44',NULL,'ravager',100,'0',0,11,0,0,0,'0'),(11,'2018-06-24 03:28:44',NULL,'ravager',100,'0',0,10,0,0,0,'0'),(12,'2018-06-24 03:48:44',NULL,'ravager',100,'0',0,10,0,0,0,'0'),(13,'2018-06-24 03:58:43',NULL,'ravager',100,'0',0,7,0,0,0,'0'),(14,'2018-06-24 04:08:45',NULL,'ravager',100,'0',0,8,0,0,0,'0'),(15,'2018-06-24 04:18:44',NULL,'ravager',100,'0',0,16,0,0,0,'0'),(16,'2018-06-24 05:08:44',NULL,'ravager',100,'0',0,9,0,0,0,'0'),(17,'2018-06-24 05:18:45',NULL,'ravager',100,'0',0,10,0,0,0,'0'),(18,'2018-06-24 05:58:45',NULL,'ravager',100,'0',0,5,0,0,0,'0'),(19,'2018-06-24 06:08:45',NULL,'ravager',100,'0',0,6,9,0,0,'0'),(20,'2018-06-24 06:18:45',NULL,'ravager',100,'0',0,8,0,0,0,'0'),(21,'2018-06-24 06:48:45',NULL,'ravager',100,'0',0,19,0,0,0,'0'),(22,'2018-06-24 07:18:44',NULL,'ravager',100,'0',0,7,0,0,0,'0'),(23,'2018-06-24 07:38:45',NULL,'ravager',100,'0',0,10,0,0,0,'0'),(24,'2018-06-24 08:08:45',NULL,'ravager',100,'0',0,12,0,0,0,'0'),(25,'2018-06-24 08:58:45',NULL,'ravager',100,'0',0,6,0,0,0,'0'),(26,'2018-06-24 09:08:45',NULL,'ravager',100,'0',0,15,0,0,0,'0'),(27,'2018-06-24 09:18:44',NULL,'ravager',100,'0',0,13,0,0,0,'0'),(28,'2018-06-24 09:28:45',NULL,'ravager',100,'0',0,13,0,0,0,'0'),(29,'2018-06-24 10:08:45',NULL,'ravager',100,'0',0,7,0,0,0,'0'),(30,'2018-06-24 10:18:44',NULL,'ravager',100,'0',0,16,9,0,0,'0'),(31,'2018-06-24 10:28:45',NULL,'ravager',100,'0',0,8,0,0,0,'0'),(32,'2018-06-24 11:08:44',NULL,'ravager',100,'0',0,16,0,0,0,'0'),(33,'2018-06-24 11:18:44',NULL,'ravager',100,'0',0,20,0,0,0,'0'),(34,'2018-06-24 11:28:45',NULL,'ravager',100,'0',0,6,0,0,0,'0'),(35,'2018-06-24 12:28:45',NULL,'ravager',100,'0',0,13,0,0,0,'0'),(36,'2018-06-24 13:18:44',NULL,'ravager',100,'0',0,11,0,0,0,'0'),(37,'2018-06-24 13:28:45',NULL,'ravager',100,'0',0,12,5,0,0,'0'),(38,'2018-06-24 14:18:44',NULL,'ravager',100,'0',0,15,0,0,0,'0'),(39,'2018-06-24 14:48:45',NULL,'ravager',100,'0',0,17,0,0,0,'0'),(40,'2018-06-24 15:18:45',NULL,'ravager',100,'0',0,14,0,0,0,'0'),(41,'2018-06-24 15:38:44',NULL,'ravager',100,'0',0,18,0,0,0,'0'),(42,'2018-06-24 16:28:44',NULL,'ravager',100,'0',0,15,0,0,0,'0'),(43,'2018-06-24 16:38:44',NULL,'ravager',100,'0',0,10,0,0,0,'0'),(44,'2018-06-24 17:08:44',NULL,'ravager',100,'0',0,6,0,0,0,'0'),(45,'2018-06-24 17:18:44',NULL,'ravager',100,'0',0,5,0,0,0,'0'),(46,'2018-06-24 17:28:44',NULL,'ravager',100,'0',0,14,0,0,0,'0'),(47,'2018-06-24 17:38:44',NULL,'ravager',100,'0',0,16,0,0,0,'0'),(48,'2018-06-24 18:08:44',NULL,'ravager',100,'0',0,17,0,0,0,'0'),(49,'2018-06-24 18:18:44',NULL,'ravager',100,'0',0,7,0,0,0,'0'),(50,'2018-06-24 18:28:44',NULL,'ravager',100,'0',0,6,0,0,0,'0'),(51,'2018-06-24 18:48:44',NULL,'ravager',100,'0',0,16,0,0,0,'0'),(52,'2018-06-24 19:28:44',NULL,'ravager',100,'0',0,6,0,0,0,'0'),(53,'2018-06-24 19:48:44',NULL,'ravager',100,'0',0,20,0,0,0,'0'),(54,'2018-06-24 19:58:44',NULL,'ravager',100,'0',0,11,0,0,0,'0'),(55,'2018-06-24 20:08:44',NULL,'ravager',100,'0',0,8,0,0,0,'0'),(56,'2018-06-24 21:08:44',NULL,'ravager',100,'0',0,16,0,0,0,'0'),(57,'2018-06-24 21:18:44',NULL,'ravager',100,'0',0,14,0,0,0,'0'),(58,'2018-06-24 21:28:43',NULL,'ravager',185,'0',0,8,19,0,0,'0'),(59,'2018-06-24 22:18:43',NULL,'ravager',236,'0',0,6,12,0,0,'6371'),(60,'2018-06-24 22:28:43',NULL,'ravager',196,'0',0,7,12,0,0,'2954'),(61,'2018-06-24 23:28:43',NULL,'ravager',180,'0',0,20,5,0,0,'8826'),(62,'2018-06-24 23:38:44',NULL,'ravager',145,'0',0,19,17,0,0,'5609'),(63,'2018-06-24 23:48:43',NULL,'ravager',100,'0',0,13,15,0,0,'8990'),(64,'2018-06-25 00:08:44',NULL,'ravager',226,'0',0,13,8,0,0,'2463'),(65,'2018-06-25 00:58:44',NULL,'ravager',157,'0',0,13,20,0,0,'2699'),(66,'2018-06-25 01:18:43',NULL,'ravager',169,'0',0,17,16,0,0,'5733'),(67,'2018-06-25 01:28:44',NULL,'ravager',144,'0',0,12,18,0,0,'1064'),(68,'2018-06-25 01:38:43',NULL,'ravager',154,'0',0,5,15,0,0,'1891'),(69,'2018-06-25 01:48:44',NULL,'ravager',107,'0',0,13,14,0,0,'6920'),(70,'2018-06-25 02:08:43',NULL,'ravager',122,'0',0,17,5,0,0,'9973'),(71,'2018-06-25 02:58:43',NULL,'ravager',159,'0',0,9,13,0,0,'2276'),(72,'2018-06-25 03:08:44',NULL,'ravager',227,'0',0,10,8,0,0,'2462'),(73,'2018-06-25 03:18:43',NULL,'ravager',274,'0',0,11,7,0,0,'4045'),(74,'2018-06-25 03:58:43',NULL,'ravager',272,'0',0,15,12,0,0,'5613'),(75,'2018-06-25 04:18:43',NULL,'ravager',229,'0',0,18,9,0,0,'1013'),(76,'2018-06-25 04:38:44',NULL,'ravager',210,'0',0,15,14,0,0,'7773'),(77,'2018-06-25 04:48:43',NULL,'ravager',275,'0',0,19,17,0,0,'8736'),(78,'2018-06-25 05:08:43',NULL,'ravager',197,'0',0,20,10,0,0,'4168'),(79,'2018-06-25 05:18:43',NULL,'ravager',113,'0',0,10,7,0,0,'4203'),(80,'2018-06-25 05:28:44',NULL,'ravager',170,'0',0,9,9,0,0,'2708'),(81,'2018-06-25 05:38:43',NULL,'ravager',262,'0',0,5,11,0,0,'5607'),(82,'2018-06-25 06:18:44',NULL,'ravager',215,'0',0,20,20,0,0,'9732'),(83,'2018-06-25 06:28:43',NULL,'ravager',133,'0',0,7,6,0,0,'3425'),(84,'2018-06-25 06:38:43',NULL,'ravager',140,'0',0,14,12,0,0,'6611'),(85,'2018-06-25 07:28:43',NULL,'ravager',153,'0',0,7,12,0,0,'8303'),(86,'2018-06-25 07:48:43',NULL,'ravager',279,'0',0,14,20,0,0,'5260'),(87,'2018-06-25 07:58:43',NULL,'ravager',171,'0',0,12,14,0,0,'6581'),(88,'2018-06-25 08:08:43',NULL,'ravager',204,'0',0,17,13,0,0,'7862'),(89,'2018-06-25 08:18:43',NULL,'ravager',280,'0',0,9,19,0,0,'6034'),(90,'2018-06-25 08:48:43',NULL,'ravager',154,'0',0,10,5,0,0,'8309'),(91,'2018-06-25 08:58:43',NULL,'ravager',118,'0',0,10,18,0,0,'4148'),(92,'2018-06-25 09:18:43',NULL,'ravager',149,'0',0,17,9,0,0,'1455'),(93,'2018-06-25 09:28:43',NULL,'ravager',237,'0',0,5,9,0,0,'3323'),(94,'2018-06-25 09:38:43',NULL,'ravager',293,'0',0,17,16,0,0,'8832'),(95,'2018-06-25 09:48:43',NULL,'ravager',275,'0',0,19,14,0,0,'1795'),(96,'2018-06-25 09:58:43',NULL,'ravager',113,'0',0,19,13,0,0,'8110'),(97,'2018-06-25 10:08:43',NULL,'ravager',204,'0',0,5,6,0,0,'5005'),(98,'2018-06-25 10:18:43',NULL,'ravager',124,'0',0,11,6,0,0,'5694'),(99,'2018-06-25 10:38:43',NULL,'ravager',131,'0',0,14,20,0,0,'9205'),(100,'2018-06-25 10:48:43',NULL,'ravager',174,'0',0,20,6,0,0,'8770'),(101,'2018-06-25 10:58:43',NULL,'ravager',171,'0',0,16,15,0,0,'7918'),(102,'2018-06-25 11:48:43',NULL,'ravager',217,'0',0,12,15,0,0,'8404'),(103,'2018-06-25 12:28:43',NULL,'ravager',153,'0',0,8,17,0,0,'7462'),(104,'2018-06-25 13:18:43',NULL,'ravager',263,'0',0,6,8,0,0,'1723'),(105,'2018-06-25 13:38:43',NULL,'ravager',137,'0',0,16,13,0,0,'1479'),(106,'2018-06-25 13:58:43',NULL,'ravager',122,'0',0,8,15,0,0,'5681'),(107,'2018-06-25 14:38:43',NULL,'ravager',247,'0',0,7,16,0,0,'7721'),(108,'2018-06-25 14:48:43',NULL,'ravager',267,'0',0,11,19,0,0,'2311'),(109,'2018-06-25 14:58:43',NULL,'ravager',155,'0',0,5,13,0,0,'4931'),(110,'2018-06-25 15:18:43',NULL,'ravager',282,'0',0,15,13,0,0,'6215'),(111,'2018-06-25 15:28:42',NULL,'ravager',186,'0',0,9,15,0,0,'3484'),(112,'2018-06-25 15:38:42',NULL,'ravager',278,'0',0,6,15,0,0,'4301'),(113,'2018-06-25 15:58:42',NULL,'ravager',157,'0',0,20,12,0,0,'2129'),(114,'2018-06-25 16:08:43',NULL,'ravager',185,'0',0,11,14,0,0,'8352'),(115,'2018-06-25 16:18:42',NULL,'ravager',136,'0',0,20,8,0,0,'6754'),(116,'2018-06-25 16:38:43',NULL,'ravager',118,'0',0,5,14,0,0,'9590'),(117,'2018-06-25 16:58:43',NULL,'ravager',214,'0',0,20,8,0,0,'7588'),(118,'2018-06-25 17:08:42',NULL,'ravager',190,'0',0,10,7,0,0,'4841'),(119,'2018-06-25 21:20:16',NULL,'ravager',183,'0',0,13,15,0,0,'6613'),(120,'2018-06-25 22:25:08',NULL,'ravager',253,'0',0,13,11,0,0,'3104'),(121,'2018-06-26 01:20:40',NULL,'ravager',242,'0',12,10,18,0,0,'5579'),(122,'2018-06-26 02:10:48',NULL,'ravager',215,'0',5,18,5,0,0,'1827'),(123,'2018-06-26 02:20:21',NULL,'ravager',215,'0',22,17,18,0,0,'5966'),(124,'2018-06-26 02:59:57',NULL,'ravager',315,'0',13,14,5,0,0,'4729'),(125,'2018-06-26 03:54:20',NULL,'ravager',250,'0',15,21,13,0,0,'8883'),(126,'2018-06-26 04:05:28',NULL,'ravager',278,'0',7,6,19,0,0,'8525'),(127,'2018-06-26 04:15:57',NULL,'ravager',138,'0',5,11,9,0,0,'2315'),(128,'2018-06-26 04:31:51',NULL,'ravager',218,'0',20,14,14,0,0,'8168'),(129,'2018-06-26 05:50:12',NULL,'ravager',152,'0',15,11,15,0,0,'3105'),(130,'2018-06-26 06:03:05',NULL,'ravager',270,'0',5,16,10,0,0,'7382'),(131,'2018-06-26 06:12:15',NULL,'ravager',284,'0',22,12,7,0,0,'4969'),(132,'2018-06-26 06:25:37',NULL,'ravager',200,'0',15,8,6,0,0,'6351'),(133,'2018-06-26 06:45:55',NULL,'ravager',270,'0',19,13,15,0,0,'6653'),(134,'2018-06-26 07:07:40',NULL,'ravager',208,'0',21,12,5,0,0,'8800'),(135,'2018-06-26 07:23:33',NULL,'ravager',282,'0',16,25,15,0,0,'8526'),(136,'2018-06-26 07:52:08',NULL,'ravager',378,'0',18,11,10,0,0,'1091'),(137,'2018-06-26 08:25:00',NULL,'ravager',445,'0',24,30,18,0,0,'7092'),(138,'2018-06-26 10:20:20',NULL,'ravager',294,'0',16,16,6,0,0,'3895'),(139,'2018-06-26 11:02:30',NULL,'ravager',327,'0',12,14,17,0,0,'1788'),(140,'2018-06-26 11:17:01',NULL,'ravager',342,'0',7,12,9,0,0,'8540'),(141,'2018-06-26 11:44:51',NULL,'ravager',162,'0',16,19,8,0,0,'2755'),(142,'2018-06-26 12:04:00',NULL,'ravager',277,'0',28,15,5,0,0,'2732'),(143,'2018-06-26 12:26:37',NULL,'ravager',205,'0',19,21,11,0,0,'2429'),(144,'2018-06-26 12:40:52',NULL,'ravager',222,'0',11,8,5,0,0,'7037'),(145,'2018-06-26 13:10:23',NULL,'ravager',168,'0',15,21,14,0,0,'1602'),(146,'2018-06-26 13:30:49',NULL,'ravager',295,'0',21,15,10,0,0,'5441'),(147,'2018-06-26 13:50:05',NULL,'ravager',217,'0',10,21,6,0,0,'2564'),(148,'2018-06-26 14:13:40',NULL,'ravager',252,'0',26,21,20,0,0,'9535'),(149,'2018-06-26 14:38:51',NULL,'ravager',291,'0',28,9,17,0,0,'1475'),(150,'2018-06-26 15:12:38',NULL,'ravager',174,'0',9,27,14,0,0,'6754'),(151,'2018-06-26 15:37:36',NULL,'ravager',373,'0',19,14,8,0,0,'3509'),(152,'2018-06-26 15:40:00',NULL,'ravager',327,'0',27,15,11,0,0,'4307'),(153,'2018-06-26 15:54:16',NULL,'ravager',242,'0',22,26,9,0,0,'2451'),(154,'2018-06-26 16:08:47',NULL,'ravager',341,'0',26,23,11,0,0,'3056'),(155,'2018-06-26 16:57:24',NULL,'ravager',274,'0',9,7,15,0,0,'1296'),(156,'2018-06-26 17:26:26',NULL,'ravager',285,'0',28,24,19,0,0,'3203'),(157,'2018-06-26 17:47:08',NULL,'ravager',233,'0',22,16,6,0,0,'3891'),(158,'2018-06-26 18:06:39',NULL,'ravager',400,'0',13,27,19,0,0,'5372'),(159,'2018-06-26 18:55:17',NULL,'ravager',137,'0',18,9,16,0,0,'1656'),(160,'2018-06-26 19:32:47',NULL,'ravager',78,'0',11,9,16,0,0,'2346'),(161,'2018-06-26 19:42:37',NULL,'ravager',148,'0',14,9,8,0,0,'1762'),(162,'2018-06-26 20:09:37',NULL,'ravager',153,'0',14,6,12,0,0,'9846'),(163,'2018-06-26 20:42:12',NULL,'ravager',95,'0',8,2,5,0,0,'2436'),(164,'2018-06-26 21:16:55',NULL,'ravager',85,'0',5,5,7,0,0,'7114'),(165,'2018-06-26 21:20:25',NULL,'ravager',173,'0',17,8,14,0,0,'8362'),(166,'2018-06-26 21:35:22',NULL,'ravager',54,'0',5,2,3,0,0,'8178'),(167,'2018-06-26 21:50:08',NULL,'ravager',283,'0',18,6,11,0,0,'9714'),(168,'2018-06-26 21:59:57',NULL,'ravager',272,'0',11,5,14,0,0,'3067'),(169,'2018-06-26 22:27:21',NULL,'ravager',289,'0',17,9,10,0,0,'4006'),(170,'2018-06-26 22:32:29',NULL,'ravager',140,'0',5,3,5,0,0,'9815'),(171,'2018-06-26 23:13:03',NULL,'ravager',87,'0',9,5,3,0,0,'3082'),(172,'2018-06-26 23:42:51',NULL,'ravager',87,'0',8,4,7,0,0,'8234'),(173,'2018-06-27 00:15:37',NULL,'ravager',174,'18',20,7,12,0,1,'2954'),(174,'2018-06-27 17:53:19',NULL,'ravager',236,'0',15,8,14,0,0,'4442'),(175,'2018-06-27 18:12:17',NULL,'ravager',284,'0',13,9,12,0,0,'4797'),(176,'2018-06-27 18:31:08',NULL,'ravager',147,'0',8,2,4,0,0,'6441'),(177,'2018-06-27 18:40:33',NULL,'ravager',79,'0',9,5,3,0,0,'2831'),(178,'2018-06-27 18:54:42',NULL,'ravager',191,'0',14,5,13,0,0,'9664'),(179,'2018-06-27 19:05:00',NULL,'ravager',148,'0',5,3,3,0,0,'4959'),(180,'2018-06-27 19:09:12',NULL,'ravager',228,'0',12,10,7,0,0,'9682'),(181,'2018-06-27 19:27:07',NULL,'ravager',260,'0',10,7,13,0,0,'4373'),(182,'2018-06-27 19:35:50',NULL,'ravager',86,'56',6,2,5,0,1,'3215'),(183,'2018-06-27 19:51:18',NULL,'ravager',281,'15',12,10,11,0,1,'8384'),(184,'2018-06-27 19:59:54',NULL,'ravager',138,'0',10,5,6,0,0,'3813'),(185,'2018-06-27 20:11:44',NULL,'ravager',119,'0',6,5,4,0,0,'2744'),(186,'2018-06-27 20:58:57',NULL,'ravager',137,'0',9,3,7,0,0,'3706'),(187,'2018-06-27 21:14:34',NULL,'ravager',135,'0',10,4,6,0,0,'9116'),(188,'2018-06-27 21:34:09',NULL,'ravager',276,'0',14,6,14,0,0,'9137'),(189,'2018-06-27 22:03:56',NULL,'ravager',255,'0',20,7,11,0,0,'1244'),(190,'2018-06-27 22:10:22',NULL,'ravager',104,'0',9,5,7,0,0,'4387'),(191,'2018-06-27 22:24:36',NULL,'ravager',211,'0',11,7,13,0,0,'2064'),(192,'2018-06-27 22:30:08',NULL,'ravager',96,'0',5,2,5,0,0,'7440'),(193,'2018-06-27 22:41:32',NULL,'ravager',267,'0',17,8,7,0,0,'3672'),(194,'2018-06-28 00:25:00',NULL,'ravager',247,'0',17,5,9,0,0,'9517'),(195,'2018-06-28 01:14:15',NULL,'ravager',141,'0',9,4,5,0,0,'4773'),(196,'2018-06-28 01:40:04',NULL,'ravager',194,'0',11,9,14,0,0,'6193'),(197,'2018-06-28 01:53:27',NULL,'ravager',281,'0',15,9,10,0,0,'1269'),(198,'2018-06-28 02:46:31',NULL,'ravager',130,'0',7,2,5,0,0,'7302'),(199,'2018-06-28 03:10:45',NULL,'ravager',156,'0',19,10,14,0,0,'3783'),(200,'2018-06-28 03:23:39',NULL,'ravager',90,'0',7,5,3,0,0,'6028'),(201,'2018-06-28 03:57:11',NULL,'ravager',200,'0',10,8,10,0,0,'7658'),(202,'2018-06-28 04:23:21',NULL,'ravager',94,'0',6,4,6,0,0,'5776'),(203,'2018-06-28 04:33:04',NULL,'ravager',282,'0',10,5,13,0,0,'3508'),(204,'2018-06-28 05:16:22',NULL,'ravager',112,'0',10,3,7,0,0,'5603'),(205,'2018-06-28 06:13:55',NULL,'ravager',104,'0',6,3,7,0,0,'5475'),(206,'2018-06-28 06:19:37',NULL,'ravager',286,'0',13,9,11,0,0,'9680'),(207,'2018-06-28 06:50:03',NULL,'ravager',122,'0',5,3,7,0,0,'7051'),(208,'2018-06-28 07:06:18',NULL,'ravager',266,'0',13,8,7,0,0,'2772'),(209,'2018-06-28 08:14:33',NULL,'ravager',88,'0',9,2,4,0,0,'6690'),(210,'2018-06-28 08:33:26',NULL,'ravager',95,'0',6,2,3,0,0,'7242'),(211,'2018-06-28 08:54:04',NULL,'ravager',220,'0',19,5,7,0,0,'6291'),(212,'2018-06-28 09:24:40',NULL,'ravager',156,'0',19,6,13,0,0,'2391'),(213,'2018-06-28 09:50:29',NULL,'ravager',139,'0',5,5,3,0,0,'6565'),(214,'2018-06-28 10:13:08',NULL,'ravager',144,'0',10,2,3,0,0,'1849'),(215,'2018-06-28 10:39:29',NULL,'ravager',263,'0',16,7,9,0,0,'4144'),(216,'2018-06-28 11:40:57',NULL,'ravager',136,'0',5,3,3,0,0,'8182'),(217,'2018-06-28 12:30:43',NULL,'ravager',137,'0',5,2,6,0,0,'3897'),(218,'2018-06-28 12:45:54',NULL,'ravager',125,'0',5,4,7,0,0,'5356'),(219,'2018-06-28 12:56:28',NULL,'ravager',252,'0',10,8,11,0,0,'6466'),(220,'2018-06-28 13:56:03',NULL,'ravager',253,'0',14,10,8,0,0,'9056'),(221,'2018-06-28 14:16:27',NULL,'ravager',132,'0',10,3,6,0,0,'2285'),(222,'2018-06-28 15:07:25',NULL,'ravager',132,'0',10,2,5,0,0,'9215'),(223,'2018-06-28 15:37:20',NULL,'ravager',97,'0',7,4,6,0,0,'5672'),(224,'2018-06-28 15:46:43',NULL,'ravager',273,'0',13,6,11,0,0,'6941'),(225,'2018-06-28 16:10:12',NULL,'ravager',110,'0',8,5,7,0,0,'2720'),(226,'2018-06-28 16:23:53',NULL,'ravager',215,'0',20,7,7,0,0,'8648'),(227,'2018-06-28 16:51:10',NULL,'ravager',177,'0',12,5,7,0,0,'1362'),(228,'2018-06-28 17:04:51',NULL,'ravager',243,'0',20,9,14,0,0,'1658'),(229,'2018-06-28 17:13:13',NULL,'ravager',261,'0',15,7,8,0,0,'5295'),(230,'2018-06-28 19:20:13',NULL,'ravager',267,'0',13,6,14,0,0,'9904'),(231,'2018-06-28 19:54:58',NULL,'ravager',232,'0',20,8,10,0,0,'1065'),(232,'2018-06-28 20:09:01',NULL,'ravager',197,'0',10,10,12,0,0,'2542'),(233,'2018-06-28 20:19:54',NULL,'ravager',107,'0',6,4,7,0,0,'3146'),(234,'2018-06-28 20:32:47',NULL,'ravager',95,'0',10,5,7,0,0,'5633'),(235,'2018-06-28 20:39:09',NULL,'ravager',259,'0',12,9,7,0,0,'1648'),(236,'2018-06-28 20:52:25',NULL,'ravager',115,'0',9,5,3,0,0,'4398'),(237,'2018-06-28 21:11:20',NULL,'ravager',235,'0',15,9,13,0,0,'2121'),(238,'2018-06-28 21:34:03',NULL,'ravager',269,'0',10,6,12,0,0,'9596'),(239,'2018-06-28 22:07:34',NULL,'ravager',77,'0',5,3,6,0,0,'8365'),(240,'2018-06-28 22:19:05',NULL,'ravager',273,'0',17,6,7,0,0,'9396'),(241,'2018-06-28 23:13:38',NULL,'ravager',427,'0',19,9,30,0,0,'6205'),(242,'2018-06-29 00:13:37',NULL,'ravager',246,'5',10,5,14,0,0,'9434'),(243,'2018-06-29 00:28:37',NULL,'ravager',335,'0',20,8,17,0,0,'3976'),(244,'2018-06-29 00:58:37',NULL,'ravager',168,'0',7,5,16,0,0,'5229'),(245,'2018-06-29 01:13:37',NULL,'ravager',400,'0',19,6,20,0,0,'7247'),(246,'2018-06-29 02:13:37',NULL,'ravager',172,'0',7,3,9,0,0,'1177'),(247,'2018-06-29 04:13:37',NULL,'ravager',241,'0',10,4,11,0,0,'7560'),(248,'2018-06-29 04:58:37',NULL,'ravager',446,'0',11,5,18,0,0,'3167'),(249,'2018-06-29 05:28:37',NULL,'ravager',349,'0',12,9,19,0,0,'9975'),(250,'2018-06-29 06:28:37',NULL,'ravager',191,'0',5,3,10,0,0,'3200'),(251,'2018-06-29 06:58:37',NULL,'ravager',230,'0',9,4,12,0,0,'6284'),(252,'2018-06-29 07:13:37',NULL,'ravager',277,'0',5,3,12,0,0,'5027'),(253,'2018-06-29 07:43:36',NULL,'ravager',199,'0',5,5,15,0,0,'9601'),(254,'2018-06-29 08:58:36',NULL,'ravager',216,'0',9,3,14,0,0,'5343'),(255,'2018-06-29 09:13:37',NULL,'ravager',529,'0',17,6,23,0,0,'2677'),(256,'2018-06-29 09:58:37',NULL,'ravager',423,'0',15,6,26,0,0,'9700'),(257,'2018-06-29 12:58:36',NULL,'ravager',420,'0',10,5,22,0,0,'6263'),(258,'2018-06-29 13:43:36',NULL,'ravager',227,'0',9,5,8,0,0,'2417'),(259,'2018-06-29 14:13:36',NULL,'ravager',150,'0',6,2,14,0,0,'6610'),(260,'2018-06-29 14:28:36',NULL,'ravager',157,'0',6,4,11,0,0,'1516'),(261,'2018-06-29 14:43:36',NULL,'ravager',598,'0',17,9,21,0,0,'4365'),(262,'2018-06-29 14:58:36',NULL,'ravager',239,'0',5,3,8,0,0,'5116'),(263,'2018-06-29 15:13:36',NULL,'ravager',228,'0',8,5,13,0,0,'6995'),(264,'2018-06-29 15:28:36',NULL,'ravager',242,'0',8,4,11,0,0,'6992'),(265,'2018-06-29 15:58:36',NULL,'ravager',372,'0',10,7,18,0,0,'7631'),(266,'2018-06-29 16:28:37',NULL,'ravager',577,'0',12,7,30,0,0,'5542'),(267,'2018-06-29 16:43:36',NULL,'ravager',175,'0',9,2,16,0,0,'1651'),(268,'2018-06-29 16:58:36',NULL,'ravager',204,'0',9,4,16,0,0,'2579'),(269,'2018-06-29 17:13:36',NULL,'ravager',210,'0',7,3,13,0,0,'3563'),(270,'2018-06-29 17:43:36',NULL,'ravager',209,'0',6,3,12,0,0,'3379'),(271,'2018-06-29 17:58:36',NULL,'ravager',551,'0',18,5,24,0,0,'6460'),(272,'2018-06-29 18:13:36',NULL,'ravager',541,'0',18,7,31,0,0,'9824'),(273,'2018-06-29 18:28:36',NULL,'ravager',173,'0',9,3,16,0,0,'3613'),(274,'2018-06-29 18:58:36',NULL,'ravager',441,'0',11,10,32,0,0,'7893'),(275,'2018-06-29 20:02:34',NULL,'ravager',600,'0',20,5,40,0,0,'9577'),(276,'2018-06-29 22:04:41',NULL,'ravager',298,'0',6,3,14,0,0,'7991'),(277,'2018-06-29 22:28:45',NULL,'ravager',208,'0',10,2,14,0,0,'1662'),(278,'2018-06-29 22:58:42',NULL,'ravager',164,'0',7,4,9,0,0,'6750'),(279,'2018-06-29 23:43:43',NULL,'ravager',223,'0',6,2,14,0,0,'9090'),(280,'2018-06-29 23:58:44',NULL,'ravager',236,'97',10,2,16,0,1,'1881'),(281,'2018-06-30 00:43:44',NULL,'ravager',272,'0',10,4,16,0,0,'3130'),(282,'2018-06-30 01:13:44',NULL,'ravager',393,'213',16,8,20,0,1,'1740'),(283,'2018-06-30 01:28:45',NULL,'ravager',153,'0',10,5,16,0,0,'6773'),(284,'2018-06-30 01:58:44',NULL,'ravager',309,'0',15,6,20,0,0,'6157'),(285,'2018-06-30 02:28:43',NULL,'ravager',445,'0',17,6,20,0,0,'9439'),(286,'2018-06-30 02:58:44',NULL,'ravager',349,'0',19,7,17,0,0,'9905'),(287,'2018-06-30 03:13:43',NULL,'ravager',818,'808',49,16,64,0,1,'4338'),(288,'2018-06-30 03:58:43',NULL,'ravager',210,'0',6,5,9,0,0,'2496'),(289,'2018-06-30 04:28:41',NULL,'ravager',342,'25',10,10,26,0,1,'4718'),(290,'2018-06-30 05:13:44',NULL,'ravager',245,'0',6,5,8,0,0,'3681'),(291,'2018-06-30 05:28:42',NULL,'ravager',247,'0',10,4,9,0,0,'6131'),(292,'2018-06-30 05:58:43',NULL,'ravager',180,'0',9,4,13,0,0,'7486'),(293,'2018-06-30 06:13:42',NULL,'ravager',266,'0',9,2,10,0,0,'7894'),(294,'2018-06-30 06:43:43',NULL,'ravager',297,'0',9,2,13,0,0,'5852'),(295,'2018-06-30 06:58:41',NULL,'ravager',529,'529',14,10,19,0,1,'8802'),(296,'2018-06-30 07:28:43',NULL,'ravager',276,'146',6,5,13,0,1,'9791'),(297,'2018-06-30 08:13:43',NULL,'ravager',438,'192',20,5,28,0,1,'6500'),(298,'2018-06-30 08:43:44',NULL,'ravager',946,'499',33,18,58,0,1,'8431'),(299,'2018-06-30 09:13:44',NULL,'ravager',269,'0',7,5,8,0,0,'1971'),(300,'2018-06-30 09:43:42',NULL,'ravager',209,'0',9,3,14,0,0,'7468'),(301,'2018-06-30 09:58:43',NULL,'ravager',518,'164',14,9,19,0,1,'3919'),(302,'2018-06-30 10:13:42',NULL,'ravager',533,'282',11,5,22,0,1,'7722'),(303,'2018-06-30 10:28:42',NULL,'ravager',404,'112',12,8,19,0,1,'9024'),(304,'2018-06-30 10:58:42',NULL,'ravager',445,'165',18,6,21,0,1,'6808'),(305,'2018-06-30 11:13:43',NULL,'ravager',206,'0',6,5,14,0,0,'8570'),(306,'2018-06-30 11:28:41',NULL,'ravager',448,'404',15,9,20,0,1,'3841'),(307,'2018-06-30 11:43:43',NULL,'ravager',523,'471',18,6,19,0,1,'8659'),(308,'2018-06-30 12:28:44',NULL,'ravager',175,'0',6,3,15,0,0,'1998'),(309,'2018-06-30 13:13:43',NULL,'ravager',776,'645',39,16,35,0,1,'2149'),(310,'2018-06-30 13:43:41',NULL,'ravager',381,'202',17,6,21,0,1,'2720'),(311,'2018-06-30 13:58:42',NULL,'ravager',414,'93',15,8,28,0,1,'3500'),(312,'2018-06-30 14:43:43',NULL,'ravager',545,'444',16,10,18,0,1,'5825'),(313,'2018-06-30 14:58:42',NULL,'ravager',489,'66',13,7,24,0,1,'7331'),(314,'2018-06-30 15:13:42',NULL,'ravager',218,'0',10,4,13,0,0,'5322'),(315,'2018-06-30 15:58:42',NULL,'ravager',219,'0',10,5,13,0,0,'4242'),(316,'2018-06-30 16:43:42',NULL,'ravager',180,'0',9,2,11,0,0,'3531'),(317,'2018-06-30 17:16:58',NULL,'ravager',233,'0',9,3,14,0,0,'3197'),(318,'2018-06-30 17:33:24',NULL,'ravager',353,'0',15,7,30,0,0,'8868'),(319,'2018-06-30 17:49:40',NULL,'ravager',448,'233',10,6,24,0,1,'6416'),(320,'2018-06-30 18:14:15',NULL,'ravager',356,'0',12,10,19,0,0,'1343'),(321,'2018-06-30 19:06:17',NULL,'ravager',212,'0',6,3,16,0,0,'1221'),(322,'2018-06-30 19:15:15',NULL,'ravager',242,'0',6,3,8,0,0,'6650'),(323,'2018-06-30 19:32:54',NULL,'ravager',554,'0',20,7,26,0,0,'5160'),(324,'2018-06-30 19:51:02',NULL,'ravager',171,'0',7,5,11,0,0,'1455'),(325,'2018-06-30 20:21:55',NULL,'ravager',183,'0',10,3,9,0,0,'4226'),(326,'2018-06-30 20:49:57',NULL,'ravager',239,'0',5,2,15,0,0,'9128'),(327,'2018-06-30 21:15:12',NULL,'ravager',214,'0',7,5,9,0,0,'5157'),(328,'2018-06-30 21:30:06',NULL,'ravager',427,'0',14,7,29,0,0,'2181'),(329,'2018-06-30 22:20:42',NULL,'ravager',491,'0',12,10,25,0,0,'9348'),(330,'2018-06-30 22:29:24',NULL,'ravager',242,'0',5,4,16,0,0,'9212'),(331,'2018-06-30 22:48:33',NULL,'ravager',349,'0',20,9,26,0,0,'6602'),(332,'2018-06-30 23:03:41',NULL,'ravager',380,'0',12,5,31,0,0,'5215'),(333,'2018-06-30 23:17:10',NULL,'ravager',439,'0',14,5,31,0,0,'8879'),(334,'2018-06-30 23:32:38',NULL,'ravager',428,'0',15,9,23,0,0,'9326'),(335,'2018-06-30 23:50:44',NULL,'ravager',154,'0',9,3,10,0,0,'2608'),(336,'2018-07-01 00:02:04',NULL,'ravager',199,'0',7,2,9,0,0,'2710'),(337,'2018-07-01 00:46:04',NULL,'ravager',249,'0',6,3,14,0,0,'3099'),(338,'2018-07-01 01:07:01',NULL,'ravager',294,'0',9,2,13,0,0,'5836'),(339,'2018-07-01 01:20:39',NULL,'ravager',547,'0',11,9,20,0,0,'3446'),(340,'2018-07-01 01:30:04',NULL,'ravager',250,'0',10,3,9,0,0,'4354'),(341,'2018-07-01 02:06:12',NULL,'ravager',553,'0',18,9,25,0,0,'6137'),(342,'2018-07-01 02:52:13',NULL,'ravager',390,'0',20,9,31,0,0,'9401'),(343,'2018-07-01 03:14:18',NULL,'ravager',412,'0',17,10,18,0,0,'6804'),(344,'2018-07-01 04:20:45',NULL,'ravager',160,'0',5,3,12,0,0,'8963'),(345,'2018-07-01 04:30:41',NULL,'ravager',185,'0',6,3,9,0,0,'9345'),(346,'2018-07-01 04:46:56',NULL,'ravager',185,'0',6,2,15,0,0,'6036'),(347,'2018-07-01 05:06:39',NULL,'ravager',588,'0',18,8,18,0,0,'3462'),(348,'2018-07-01 05:14:42',NULL,'ravager',287,'0',7,3,8,0,0,'7252'),(349,'2018-07-01 05:31:54',NULL,'ravager',185,'0',10,5,12,0,0,'6020'),(350,'2018-07-01 06:48:47',NULL,'ravager',231,'0',7,3,16,0,0,'3417'),(351,'2018-07-01 07:01:15',NULL,'ravager',260,'16',10,4,12,0,1,'4476'),(352,'2018-07-01 07:14:27',NULL,'ravager',168,'106',7,5,15,0,1,'9354'),(353,'2018-07-01 08:05:14',NULL,'ravager',380,'0',19,8,18,0,0,'5173'),(354,'2018-07-01 08:17:05',NULL,'ravager',360,'0',13,5,30,0,0,'6928'),(355,'2018-07-01 09:02:50',NULL,'ravager',342,'0',16,8,29,0,0,'1229'),(356,'2018-07-01 10:05:41',NULL,'ravager',169,'0',7,3,12,0,0,'8156'),(357,'2018-07-01 10:17:04',NULL,'ravager',355,'0',14,5,16,0,0,'6673'),(358,'2018-07-01 10:37:30',NULL,'ravager',596,'0',18,8,22,0,0,'1382'),(359,'2018-07-01 11:06:31',NULL,'ravager',409,'0',17,6,32,0,0,'2384'),(360,'2018-07-01 11:19:04',NULL,'ravager',221,'0',7,5,14,0,0,'7611'),(361,'2018-07-01 11:50:36',NULL,'ravager',358,'41',12,6,23,0,1,'1709'),(362,'2018-07-01 12:05:57',NULL,'ravager',425,'0',16,10,23,0,0,'2972'),(363,'2018-07-01 12:48:48',NULL,'ravager',384,'0',19,8,22,0,0,'5821'),(364,'2018-07-01 13:04:36',NULL,'ravager',451,'0',19,7,28,0,0,'7156'),(365,'2018-07-01 13:15:25',NULL,'ravager',501,'0',18,8,20,0,0,'3176'),(366,'2018-07-01 13:49:15',NULL,'ravager',460,'0',12,9,30,0,0,'7868'),(367,'2018-07-01 14:03:03',NULL,'ravager',341,'0',20,10,25,0,0,'4049'),(368,'2018-07-01 14:20:18',NULL,'ravager',178,'0',6,4,9,0,0,'8537'),(369,'2018-07-01 15:20:06',NULL,'ravager',250,'0',10,5,13,0,0,'5267'),(370,'2018-07-01 16:03:15',NULL,'ravager',277,'0',10,5,9,0,0,'1397'),(371,'2018-07-01 16:32:12',NULL,'ravager',253,'0',10,4,15,0,0,'7428'),(372,'2018-07-01 16:43:52',NULL,'ravager',293,'0',10,3,15,0,0,'2796'),(373,'2018-07-01 17:14:17',NULL,'ravager',509,'0',14,6,19,0,0,'3199'),(374,'2018-07-01 17:51:44',NULL,'ravager',464,'0',12,8,17,0,0,'8649'),(375,'2018-07-01 18:04:32',NULL,'ravager',163,'0',8,5,16,0,0,'2411'),(376,'2018-07-01 18:32:05',NULL,'ravager',293,'293',10,3,10,0,1,'5100'),(377,'2018-07-01 19:16:24',NULL,'ravager',537,'0',13,7,18,0,0,'1953'),(378,'2018-07-01 19:49:27',NULL,'ravager',462,'0',23,9,43,0,0,'6717'),(379,'2018-07-01 20:35:04',NULL,'ravager',754,'113',30,14,36,0,1,'4097'),(380,'2018-07-01 21:06:50',NULL,'ravager',528,'0',18,8,45,0,0,'6480'),(381,'2018-07-01 21:22:29',NULL,'ravager',327,'0',16,10,32,0,0,'4476'),(382,'2018-07-01 22:18:23',NULL,'ravager',568,'0',19,8,30,0,0,'6237'),(383,'2018-07-01 22:31:06',NULL,'ravager',413,'0',12,5,17,0,0,'6435'),(384,'2018-07-01 23:07:15',NULL,'ravager',825,'0',22,13,24,0,0,'8300'),(385,'2018-07-02 00:02:35',NULL,'ravager',518,'0',17,8,42,0,0,'7694'),(386,'2018-07-02 00:51:39',NULL,'ravager',541,'153',15,7,27,0,1,'6593'),(387,'2018-07-02 01:00:47',NULL,'ravager',326,'0',11,6,16,0,0,'3878'),(388,'2018-07-02 01:36:00',NULL,'ravager',593,'0',10,8,26,0,0,'2383'),(389,'2018-07-02 01:59:13',NULL,'ravager',351,'0',10,5,26,0,0,'1326'),(390,'2018-07-02 02:14:53',NULL,'ravager',358,'0',14,8,32,0,0,'5961'),(391,'2018-07-02 02:46:11',NULL,'ravager',751,'311',18,8,33,0,1,'5844'),(392,'2018-07-02 03:19:27',NULL,'ravager',329,'0',13,9,16,0,0,'4392'),(393,'2018-07-02 03:46:19',NULL,'ravager',715,'123',27,11,36,0,1,'1123'),(394,'2018-07-02 04:29:21',NULL,'ravager',406,'0',10,9,23,0,0,'7759'),(395,'2018-07-02 04:48:16',NULL,'ravager',538,'0',16,9,20,0,0,'9802'),(396,'2018-07-02 04:59:43',NULL,'ravager',869,'613',23,13,31,0,1,'3879'),(397,'2018-07-02 05:21:30',NULL,'ravager',361,'0',16,5,19,0,0,'6254'),(398,'2018-07-02 05:44:38',NULL,'ravager',657,'657',26,7,48,0,1,'6412'),(399,'2018-07-02 06:16:31',NULL,'ravager',747,'393',30,10,33,0,1,'7654'),(400,'2018-07-02 06:44:43',NULL,'ravager',818,'766',28,14,27,0,1,'5289'),(401,'2018-07-02 07:22:22',NULL,'ravager',451,'359',18,9,26,0,1,'9161'),(402,'2018-07-02 08:00:03',NULL,'ravager',849,'660',17,14,47,0,1,'2012'),(403,'2018-07-02 08:31:22',NULL,'ravager',791,'606',21,15,35,0,1,'4972'),(404,'2018-07-02 09:00:27',NULL,'ravager',526,'526',11,8,31,0,1,'2101'),(405,'2018-07-02 09:48:58',NULL,'ravager',576,'153',18,6,30,0,1,'8667'),(406,'2018-07-02 10:05:59',NULL,'ravager',457,'268',28,14,45,0,1,'8072'),(407,'2018-07-02 10:15:51',NULL,'ravager',454,'0',16,5,24,0,0,'1970'),(408,'2018-07-02 10:36:00',NULL,'ravager',346,'0',19,10,27,0,0,'6914'),(409,'2018-07-02 10:46:38',NULL,'ravager',502,'33',19,7,36,0,1,'6297'),(410,'2018-07-02 11:05:32',NULL,'ravager',827,'563',20,14,48,0,1,'6184'),(411,'2018-07-02 12:21:50',NULL,'ravager',516,'109',15,7,22,0,1,'2375'),(412,'2018-07-02 12:34:29',NULL,'ravager',497,'132',20,15,31,0,1,'2662'),(413,'2018-07-02 13:05:21',NULL,'ravager',413,'92',10,5,23,0,1,'1100'),(414,'2018-07-02 13:29:20',NULL,'ravager',853,'789',28,13,26,0,1,'8898'),(415,'2018-07-02 13:48:57',NULL,'ravager',556,'0',16,5,17,0,0,'9626'),(416,'2018-07-02 14:03:16',NULL,'ravager',768,'532',29,15,24,0,1,'7670'),(417,'2018-07-02 15:02:32',NULL,'ravager',339,'0',18,6,16,0,0,'9170'),(418,'2018-07-02 15:22:05',NULL,'ravager',529,'0',19,13,32,0,0,'7028'),(419,'2018-07-02 15:35:59',NULL,'ravager',311,'0',19,7,17,0,0,'7767'),(420,'2018-07-02 15:47:00',NULL,'ravager',757,'0',18,12,26,0,0,'4416'),(421,'2018-07-02 16:51:25',NULL,'ravager',525,'0',16,12,25,0,0,'5370'),(422,'2018-07-02 17:17:49',NULL,'ravager',573,'0',10,7,25,0,0,'6869'),(423,'2018-07-02 17:35:34',NULL,'ravager',767,'0',25,14,28,0,0,'1767'),(424,'2018-07-02 17:49:02',NULL,'ravager',540,'111',25,12,47,0,1,'6948'),(425,'2018-07-02 18:15:52',NULL,'ravager',699,'164',26,11,25,0,1,'6702'),(426,'2018-07-02 18:44:41',NULL,'ravager',376,'0',10,8,18,0,0,'7890'),(427,'2018-07-02 19:37:09',NULL,'ravager',794,'0',24,15,29,0,0,'7660'),(428,'2018-07-02 20:21:29',NULL,'ravager',600,'0',12,8,27,0,0,'3805'),(429,'2018-07-02 20:47:26',NULL,'ravager',826,'0',20,7,40,0,0,'3017'),(430,'2018-07-02 21:37:10',NULL,'ravager',710,'0',30,11,46,0,0,'4440'),(431,'2018-07-02 21:44:25',NULL,'ravager',787,'216',25,9,40,0,1,'8944'),(432,'2018-07-02 22:20:44',NULL,'ravager',874,'0',16,15,36,0,0,'2962'),(433,'2018-07-02 22:30:27',NULL,'ravager',697,'268',16,7,31,0,1,'8812'),(434,'2018-07-02 23:02:19',NULL,'ravager',504,'34',22,15,32,0,1,'2887'),(435,'2018-07-02 23:34:10',NULL,'ravager',644,'493',22,16,40,0,1,'9656'),(436,'2018-07-03 00:02:28',NULL,'ravager',132,'0',9,8,8,0,0,'7498'),(437,'2018-07-03 00:36:45',NULL,'ravager',174,'0',6,6,11,0,0,'4346'),(438,'2018-07-03 01:17:45',NULL,'ravager',157,'0',5,9,12,0,0,'4316'),(439,'2018-07-03 01:33:04',NULL,'ravager',140,'0',6,10,13,0,0,'3554'),(440,'2018-07-03 01:49:08',NULL,'ravager',247,'0',8,5,10,0,0,'4495'),(441,'2018-07-03 02:05:50',NULL,'ravager',468,'0',14,13,20,0,0,'7482'),(442,'2018-07-03 02:21:10',NULL,'ravager',729,'133',23,23,32,0,1,'2404'),(443,'2018-07-03 02:59:28',NULL,'ravager',186,'0',7,6,9,0,0,'9244'),(444,'2018-07-03 03:34:23',NULL,'ravager',244,'0',11,8,19,0,0,'3865'),(445,'2018-07-03 04:05:53',NULL,'ravager',522,'266',16,12,48,0,1,'4705'),(446,'2018-07-03 04:19:03',NULL,'ravager',92,'0',5,6,6,0,0,'9186'),(447,'2018-07-03 04:34:28',NULL,'ravager',283,'0',6,12,14,0,0,'4171'),(448,'2018-07-03 05:06:35',NULL,'ravager',313,'0',9,12,17,0,0,'7901'),(449,'2018-07-03 06:03:58',NULL,'ravager',494,'258',22,20,23,0,1,'6573'),(450,'2018-07-03 07:03:53',NULL,'ravager',135,'0',5,6,7,0,0,'9849'),(451,'2018-07-03 07:34:50',NULL,'ravager',288,'0',9,6,13,0,0,'5240'),(452,'2018-07-03 07:49:03',NULL,'ravager',412,'126',15,10,15,0,1,'8343'),(453,'2018-07-03 08:20:23',NULL,'ravager',140,'0',6,5,4,0,0,'1575'),(454,'2018-07-03 08:59:11',NULL,'ravager',182,'0',10,6,12,0,0,'6897'),(455,'2018-07-03 09:36:29',NULL,'ravager',241,'0',16,18,15,0,0,'7172'),(456,'2018-07-03 09:50:59',NULL,'ravager',475,'302',19,20,24,0,1,'9634'),(457,'2018-07-03 10:14:48',NULL,'ravager',121,'0',6,5,7,0,0,'6260'),(458,'2018-07-03 10:35:25',NULL,'ravager',213,'0',12,9,14,0,0,'6438'),(459,'2018-07-03 10:47:07',NULL,'ravager',245,'0',10,11,21,0,0,'5757'),(460,'2018-07-03 11:03:06',NULL,'ravager',414,'0',21,18,25,0,0,'3019'),(461,'2018-07-03 11:22:21',NULL,'ravager',610,'512',30,18,32,0,1,'4786'),(462,'2018-07-03 11:35:04',NULL,'ravager',80,'0',6,4,9,0,0,'6730'),(463,'2018-07-03 11:44:33',NULL,'ravager',243,'0',9,11,15,0,0,'8975'),(464,'2018-07-03 11:59:07',NULL,'ravager',416,'0',17,12,23,0,0,'1838'),(465,'2018-07-03 12:49:46',NULL,'ravager',448,'0',16,21,29,0,0,'8944'),(466,'2018-07-03 12:59:14',NULL,'ravager',711,'646',16,23,28,0,1,'2347'),(467,'2018-07-03 13:30:46',NULL,'ravager',82,'0',3,3,9,0,0,'3183'),(468,'2018-07-03 14:07:17',NULL,'ravager',177,'0',8,11,12,0,0,'1255'),(469,'2018-07-03 14:47:07',NULL,'ravager',311,'0',16,9,15,0,0,'3616'),(470,'2018-07-03 15:07:06',NULL,'ravager',304,'0',17,12,26,0,0,'5362'),(471,'2018-07-03 15:47:34',NULL,'ravager',492,'0',24,21,32,0,0,'4913'),(472,'2018-07-03 16:31:34',NULL,'ravager',722,'197',28,23,30,0,1,'7393'),(473,'2018-07-03 16:47:06',NULL,'ravager',140,'0',6,5,9,0,0,'6726'),(474,'2018-07-03 17:02:21',NULL,'ravager',150,'0',7,11,10,0,0,'8295'),(475,'2018-07-03 17:37:04',NULL,'ravager',272,'0',9,12,23,0,0,'3716'),(476,'2018-07-03 18:20:33',NULL,'ravager',513,'0',23,17,25,0,0,'1172'),(477,'2018-07-03 18:51:09',NULL,'ravager',738,'0',22,20,32,0,0,'8868'),(478,'2018-07-03 19:06:01',NULL,'ravager',532,'459',32,32,46,0,1,'6413'),(479,'2018-07-03 19:51:55',NULL,'ravager',142,'0',5,4,4,0,0,'1484'),(480,'2018-07-03 20:20:55',NULL,'ravager',254,'0',9,8,17,0,0,'9770'),(481,'2018-07-03 20:51:31',NULL,'ravager',302,'0',14,14,25,0,0,'2778'),(482,'2018-07-03 21:07:08',NULL,'ravager',516,'0',24,13,33,0,0,'4156'),(483,'2018-07-03 21:20:58',NULL,'ravager',708,'0',21,18,32,0,0,'4684'),(484,'2018-07-03 21:36:26',NULL,'ravager',486,'0',25,35,60,0,0,'6869'),(485,'2018-07-03 22:00:38',NULL,'ravager',817,'706',39,36,53,0,1,'1345'),(486,'2018-07-03 22:45:45',NULL,'ravager',18,'0',3,3,2,0,0,'9759'),(487,'2018-07-03 23:21:42',NULL,'ravager',32,'0',3,3,6,0,0,'1383'),(488,'2018-07-03 23:31:28',NULL,'ravager',83,'0',8,7,4,0,0,'9919'),(489,'2018-07-03 23:44:28',NULL,'ravager',108,'0',11,10,7,0,0,'1836'),(490,'2018-07-04 00:05:23',NULL,'ravager',106,'0',11,13,7,0,0,'3454'),(491,'2018-07-04 00:29:18',NULL,'ravager',90,'0',14,18,18,0,0,'7943'),(492,'2018-07-04 00:47:25',NULL,'ravager',121,'0',13,17,21,0,0,'9505'),(493,'2018-07-04 01:03:57',NULL,'ravager',531,'0',13,19,8,0,0,'4380'),(494,'2018-07-04 01:22:12',NULL,'ravager',361,'0',15,22,9,0,0,'1715'),(495,'2018-07-04 01:35:05',NULL,'ravager',406,'111',26,21,19,0,1,'9002'),(496,'2018-07-04 01:48:33',NULL,'ravager',35,'0',1,2,1,0,0,'7936'),(497,'2018-07-04 02:19:24',NULL,'ravager',50,'0',6,3,2,0,0,'2091'),(498,'2018-07-04 02:31:55',NULL,'ravager',107,'0',6,7,3,0,0,'6905'),(499,'2018-07-04 03:22:20',NULL,'ravager',104,'0',9,12,6,0,0,'8367'),(500,'2018-07-04 03:46:07',NULL,'ravager',215,'0',8,9,9,0,0,'3401'),(501,'2018-07-04 04:00:04',NULL,'ravager',232,'12',14,11,14,0,1,'9985'),(502,'2018-07-04 04:35:26',NULL,'ravager',49,'0',2,1,2,0,0,'6725'),(503,'2018-07-04 05:06:12',NULL,'ravager',52,'0',6,5,4,0,0,'2253'),(504,'2018-07-04 05:45:02',NULL,'ravager',128,'0',6,8,6,0,0,'9705'),(505,'2018-07-04 06:18:32',NULL,'ravager',186,'0',6,12,7,0,0,'3229'),(506,'2018-07-04 06:44:34',NULL,'ravager',169,'0',10,9,11,0,0,'4807'),(507,'2018-07-04 07:07:29',NULL,'ravager',209,'34',9,10,11,0,1,'8925'),(508,'2018-07-04 08:00:31',NULL,'ravager',29,'0',3,2,2,0,0,'1116'),(509,'2018-07-04 08:20:45',NULL,'ravager',74,'0',3,4,6,0,0,'8037'),(510,'2018-07-04 09:04:08',NULL,'ravager',91,'0',7,5,4,0,0,'5254'),(511,'2018-07-04 09:19:58',NULL,'ravager',169,'0',7,8,7,0,0,'6849'),(512,'2018-07-04 09:33:36',NULL,'ravager',150,'0',12,13,14,0,0,'2360'),(513,'2018-07-04 10:21:55',NULL,'ravager',254,'0',10,10,15,0,0,'8924'),(514,'2018-07-04 10:31:20',NULL,'ravager',243,'0',19,12,16,0,0,'1873'),(515,'2018-07-04 11:05:16',NULL,'ravager',354,'0',13,21,20,0,0,'8202'),(516,'2018-07-04 12:03:00',NULL,'ravager',250,'0',18,25,24,0,0,'6203'),(517,'2018-07-04 12:21:50',NULL,'ravager',263,'0',19,26,21,0,0,'5018'),(518,'2018-07-04 12:35:37',NULL,'ravager',303,'223',30,26,30,0,1,'6147'),(519,'2018-07-04 12:47:08',NULL,'ravager',38,'0',3,1,3,0,0,'7427'),(520,'2018-07-04 13:20:05',NULL,'ravager',95,'0',5,5,3,0,0,'3660'),(521,'2018-07-04 14:02:02',NULL,'ravager',125,'0',9,6,6,0,0,'4936'),(522,'2018-07-04 14:47:23',NULL,'ravager',128,'0',12,6,12,0,0,'4809'),(523,'2018-07-04 14:59:48',NULL,'ravager',195,'0',11,13,10,0,0,'3917'),(524,'2018-07-04 15:32:12',NULL,'ravager',197,'0',10,12,10,0,0,'9383'),(525,'2018-07-04 16:37:13',NULL,'ravager',216,'0',18,18,18,0,0,'5730'),(526,'2018-07-04 16:50:58',NULL,'ravager',216,'0',13,16,13,0,0,'2981'),(527,'2018-07-04 16:59:23',NULL,'ravager',281,'0',20,22,18,0,0,'4515'),(528,'2018-07-04 17:34:27',NULL,'ravager',333,'0',16,24,24,0,0,'2231'),(529,'2018-07-04 17:45:38',NULL,'ravager',435,'364',19,32,21,0,1,'2589'),(530,'2018-07-04 18:15:43',NULL,'ravager',37,'0',2,2,1,0,0,'7847'),(531,'2018-07-04 18:50:51',NULL,'ravager',61,'0',3,4,6,0,0,'8421'),(532,'2018-07-04 19:15:53',NULL,'ravager',137,'0',5,7,4,0,0,'6743'),(533,'2018-07-04 20:05:07',NULL,'ravager',159,'0',6,7,9,0,0,'6667'),(534,'2018-07-04 20:17:44',NULL,'ravager',207,'0',14,12,14,0,0,'6499'),(535,'2018-07-04 21:15:30',NULL,'ravager',242,'0',12,13,12,0,0,'4101'),(536,'2018-07-04 21:30:48',NULL,'ravager',332,'0',15,16,12,0,0,'9217'),(537,'2018-07-04 21:47:51',NULL,'ravager',247,'0',12,19,24,0,0,'6205'),(538,'2018-07-04 22:06:11',NULL,'ravager',276,'0',21,18,23,0,0,'1058'),(539,'2018-07-04 22:19:00',NULL,'ravager',423,'0',16,28,20,0,0,'6232'),(540,'2018-07-04 22:46:59',NULL,'ravager',466,'0',29,16,33,0,0,'3154'),(541,'2018-07-04 23:02:06',NULL,'ravager',330,'0',24,19,24,0,0,'4107'),(542,'2018-07-04 23:34:42',NULL,'ravager',615,'572',37,20,24,0,1,'7958'),(543,'2018-07-05 00:01:40',NULL,'ravager',31,'0',2,2,1,0,0,'8859'),(544,'2018-07-05 00:14:36',NULL,'ravager',86,'0',6,3,3,0,0,'2944'),(545,'2018-07-05 00:33:57',NULL,'ravager',100,'0',4,6,6,0,0,'8024'),(546,'2018-07-05 01:06:06',NULL,'ravager',183,'0',10,10,9,0,0,'3462'),(547,'2018-07-05 01:35:00',NULL,'ravager',152,'0',14,9,10,0,0,'6665'),(548,'2018-07-05 02:00:11',NULL,'ravager',186,'0',13,12,14,0,0,'2428'),(549,'2018-07-05 02:18:02',NULL,'ravager',299,'0',15,15,11,0,0,'8016'),(550,'2018-07-05 02:45:51',NULL,'ravager',226,'0',21,17,18,0,0,'3437'),(551,'2018-07-05 03:01:51',NULL,'ravager',268,'0',22,13,14,0,0,'7656'),(552,'2018-07-05 03:33:29',NULL,'ravager',499,'0',21,15,28,0,0,'3948'),(553,'2018-07-05 03:46:07',NULL,'ravager',345,'0',28,25,21,0,0,'3971'),(554,'2018-07-05 04:01:56',NULL,'ravager',395,'285',33,35,33,0,1,'6367'),(555,'2018-07-05 04:59:38',NULL,'ravager',231,'0',14,14,13,0,0,'8387'),(556,'2018-07-05 05:47:12',NULL,'ravager',54,'0',6,6,3,0,0,'7350'),(557,'2018-07-05 06:02:34',NULL,'ravager',132,'0',6,4,9,0,0,'7775'),(558,'2018-07-05 06:19:15',NULL,'ravager',115,'0',6,7,6,0,0,'4644'),(559,'2018-07-05 06:48:26',NULL,'ravager',224,'0',7,12,13,0,0,'7366'),(560,'2018-07-05 07:32:53',NULL,'ravager',238,'0',15,10,16,0,0,'8777'),(561,'2018-07-05 08:16:41',NULL,'ravager',261,'0',21,15,12,0,0,'7418'),(562,'2018-07-05 09:05:41',NULL,'ravager',271,'0',14,19,17,0,0,'1646'),(563,'2018-07-05 09:18:18',NULL,'ravager',255,'0',26,15,19,0,0,'6685'),(564,'2018-07-05 09:36:31',NULL,'ravager',429,'0',17,27,29,0,0,'5211'),(565,'2018-07-05 09:48:10',NULL,'ravager',402,'255',32,16,23,0,1,'1977'),(566,'2018-07-05 10:04:43',NULL,'ravager',36,'0',3,1,2,0,0,'7898'),(567,'2018-07-05 10:49:30',NULL,'ravager',67,'0',6,4,3,0,0,'3495'),(568,'2018-07-05 11:30:20',NULL,'ravager',147,'0',9,6,6,0,0,'9274'),(569,'2018-07-05 12:04:23',NULL,'ravager',128,'0',11,7,8,0,0,'4423'),(570,'2018-07-05 12:21:50',NULL,'ravager',212,'0',7,12,11,0,0,'8461'),(571,'2018-07-05 12:37:21',NULL,'ravager',195,'0',10,14,12,0,0,'2673'),(572,'2018-07-05 12:51:03',NULL,'ravager',232,'0',13,13,11,0,0,'6128'),(573,'2018-07-05 13:00:40',NULL,'ravager',376,'0',13,23,21,0,0,'4870'),(574,'2018-07-05 13:31:56',NULL,'ravager',313,'113',17,18,24,0,1,'7007'),(575,'2018-07-05 14:18:01',NULL,'ravager',29,'0',3,3,1,0,0,'2618'),(576,'2018-07-05 14:30:30',NULL,'ravager',69,'0',5,3,6,0,0,'5374'),(577,'2018-07-05 15:14:54',NULL,'ravager',126,'0',4,8,9,0,0,'4409'),(578,'2018-07-05 15:46:11',NULL,'ravager',158,'0',9,12,6,0,0,'4705'),(579,'2018-07-05 16:06:53',NULL,'ravager',238,'0',13,12,9,0,0,'4240'),(580,'2018-07-05 16:44:37',NULL,'ravager',158,'0',14,14,16,0,0,'6689'),(581,'2018-07-05 17:04:02',NULL,'ravager',278,'0',13,20,19,0,0,'3520'),(582,'2018-07-05 17:22:09',NULL,'ravager',381,'0',20,24,17,0,0,'1386'),(583,'2018-07-05 17:44:09',NULL,'ravager',430,'0',27,23,17,0,0,'5417'),(584,'2018-07-05 18:14:45',NULL,'ravager',459,'351',22,25,23,0,1,'8246'),(585,'2018-07-05 18:35:02',NULL,'ravager',48,'0',2,3,2,0,0,'6840'),(586,'2018-07-05 19:18:21',NULL,'ravager',73,'0',3,5,3,0,0,'5789'),(587,'2018-07-05 19:33:22',NULL,'ravager',119,'0',8,9,4,0,0,'4769'),(588,'2018-07-05 19:50:52',NULL,'ravager',164,'0',11,6,6,0,0,'4792'),(589,'2018-07-05 20:07:18',NULL,'ravager',172,'0',12,8,12,0,0,'4029'),(590,'2018-07-05 20:14:56',NULL,'ravager',281,'0',16,10,12,0,0,'2551'),(591,'2018-07-05 20:33:41',NULL,'ravager',346,'0',16,11,18,0,0,'6770'),(592,'2018-07-05 20:45:56',NULL,'ravager',372,'0',24,22,14,0,0,'6391'),(593,'2018-07-05 21:03:41',NULL,'ravager',268,'0',24,13,13,0,0,'7061'),(594,'2018-07-05 22:01:07',NULL,'ravager',489,'0',16,16,27,0,0,'4396'),(595,'2018-07-05 22:21:01',NULL,'ravager',410,'0',19,27,18,0,0,'1786'),(596,'2018-07-05 22:36:59',NULL,'ravager',309,'243',31,25,23,0,1,'1287'),(597,'2018-07-05 23:45:05',NULL,'ravager',44,'0',2,2,2,0,0,'5758'),(598,'2018-07-06 00:19:50',NULL,'ravager',81,'0',3,3,6,0,0,'6934'),(599,'2018-07-06 00:45:31',NULL,'ravager',134,'0',8,9,4,0,0,'5592'),(600,'2018-07-06 00:59:15',NULL,'ravager',118,'0',8,8,9,0,0,'7667'),(601,'2018-07-06 01:19:20',NULL,'ravager',151,'0',7,14,12,0,0,'9368'),(602,'2018-07-06 01:32:03',NULL,'ravager',298,'0',12,16,12,0,0,'3543'),(603,'2018-07-06 01:45:42',NULL,'ravager',271,'0',10,18,10,0,0,'8358'),(604,'2018-07-06 02:50:16',NULL,'ravager',315,'0',14,12,19,0,0,'7039'),(605,'2018-07-06 03:06:40',NULL,'ravager',308,'0',21,23,13,0,0,'9484'),(606,'2018-07-06 03:14:46',NULL,'ravager',287,'0',24,29,20,0,0,'4770'),(607,'2018-07-06 03:35:25',NULL,'ravager',438,'133',22,19,30,0,1,'8150'),(608,'2018-07-06 04:01:34',NULL,'ravager',38,'0',3,3,3,0,0,'3444'),(609,'2018-07-06 04:30:48',NULL,'ravager',61,'0',3,3,3,0,0,'1126'),(610,'2018-07-06 04:48:09',NULL,'ravager',142,'0',6,6,6,0,0,'5661'),(611,'2018-07-06 04:59:07',NULL,'ravager',102,'0',6,6,9,0,0,'7784'),(612,'2018-07-06 05:20:28',NULL,'ravager',137,'0',9,11,15,0,0,'1156'),(613,'2018-07-06 05:50:10',NULL,'ravager',192,'0',15,17,15,0,0,'8719'),(614,'2018-07-06 06:07:11',NULL,'ravager',227,'0',19,21,13,0,0,'3564'),(615,'2018-07-06 06:20:09',NULL,'ravager',313,'0',23,17,23,0,0,'2865'),(616,'2018-07-06 07:16:52',NULL,'ravager',424,'109',17,17,14,0,1,'1212'),(617,'2018-07-06 08:04:48',NULL,'ravager',27,'0',3,1,3,0,0,'3920'),(618,'2018-07-06 08:34:14',NULL,'ravager',92,'0',4,6,4,0,0,'3096'),(619,'2018-07-06 08:45:32',NULL,'ravager',128,'0',6,7,9,0,0,'4201'),(620,'2018-07-06 09:07:07',NULL,'ravager',106,'0',6,11,12,0,0,'9096'),(621,'2018-07-06 09:20:52',NULL,'ravager',182,'0',9,14,14,0,0,'1305'),(622,'2018-07-06 09:37:17',NULL,'ravager',199,'0',9,18,12,0,0,'7592'),(623,'2018-07-06 09:45:26',NULL,'ravager',223,'0',12,16,10,0,0,'6128'),(624,'2018-07-06 10:00:06',NULL,'ravager',281,'0',17,12,13,0,0,'7645'),(625,'2018-07-06 10:45:28',NULL,'ravager',437,'0',15,23,26,0,0,'4779'),(626,'2018-07-06 11:20:27',NULL,'ravager',421,'0',15,24,17,0,0,'9705'),(627,'2018-07-06 12:18:18',NULL,'ravager',337,'0',27,28,18,0,0,'9116'),(628,'2018-07-06 13:02:05',NULL,'ravager',547,'0',30,23,19,0,0,'6800'),(629,'2018-07-06 13:32:14',NULL,'ravager',404,'81',32,27,29,0,1,'6844'),(630,'2018-07-06 14:36:41',NULL,'ravager',45,'0',2,2,1,0,0,'5647'),(631,'2018-07-06 14:47:12',NULL,'ravager',91,'0',5,4,6,0,0,'3321'),(632,'2018-07-06 15:35:28',NULL,'ravager',75,'0',4,7,8,0,0,'9794'),(633,'2018-07-06 16:06:58',NULL,'ravager',117,'0',9,11,9,0,0,'3739'),(634,'2018-07-06 16:19:54',NULL,'ravager',220,'0',15,12,15,0,0,'6791'),(635,'2018-07-06 16:46:49',NULL,'ravager',229,'0',13,12,17,0,0,'7483'),(636,'2018-07-06 17:01:51',NULL,'ravager',312,'0',14,19,11,0,0,'1753'),(637,'2018-07-06 17:20:35',NULL,'ravager',269,'0',20,18,20,0,0,'2310'),(638,'2018-07-06 17:46:45',NULL,'ravager',389,'0',25,19,15,0,0,'5243'),(639,'2018-07-06 18:04:49',NULL,'ravager',265,'0',29,24,18,0,0,'4490'),(640,'2018-07-06 18:29:44',NULL,'ravager',541,'324',31,25,20,0,1,'3666'),(641,'2018-07-06 18:52:20',NULL,'ravager',35,'0',3,1,3,0,0,'7450'),(642,'2018-07-06 19:05:44',NULL,'ravager',50,'0',6,6,6,0,0,'7566'),(643,'2018-07-06 19:18:29',NULL,'ravager',94,'0',8,5,5,0,0,'9770'),(644,'2018-07-06 19:35:37',NULL,'ravager',100,'0',12,11,7,0,0,'2649'),(645,'2018-07-06 20:35:15',NULL,'ravager',222,'0',9,9,15,0,0,'8756'),(646,'2018-07-06 21:20:04',NULL,'ravager',286,'0',12,14,14,0,0,'5271'),(647,'2018-07-06 21:48:12',NULL,'ravager',349,'0',15,18,16,0,0,'1613'),(648,'2018-07-06 21:59:15',NULL,'ravager',337,'0',16,22,14,0,0,'1583'),(649,'2018-07-06 22:32:42',NULL,'ravager',419,'0',14,19,26,0,0,'2114'),(650,'2018-07-06 23:21:55',NULL,'ravager',478,'0',28,15,26,0,0,'8583'),(651,'2018-07-06 23:46:53',NULL,'ravager',526,'407',29,29,24,0,1,'3175'),(652,'2018-07-06 23:59:47',NULL,'ravager',36,'0',2,3,1,0,0,'8880'),(653,'2018-07-07 00:20:49',NULL,'ravager',58,'0',5,5,4,0,0,'5572'),(654,'2018-07-07 00:32:20',NULL,'ravager',87,'0',4,4,7,0,0,'4431'),(655,'2018-07-07 00:59:07',NULL,'ravager',149,'0',12,8,12,0,0,'8496'),(656,'2018-07-07 01:16:02',NULL,'ravager',235,'0',13,13,14,0,0,'7773'),(657,'2018-07-07 01:34:04',NULL,'ravager',227,'0',12,9,10,0,0,'6517'),(658,'2018-07-07 02:18:40',NULL,'ravager',202,'43',16,21,15,0,1,'8601'),(659,'2018-07-07 02:46:14',NULL,'ravager',36,'0',1,2,1,0,0,'8846'),(660,'2018-07-07 03:01:46',NULL,'ravager',85,'0',4,6,5,0,0,'6590'),(661,'2018-07-07 03:14:36',NULL,'ravager',93,'0',4,4,4,0,0,'1344'),(662,'2018-07-07 04:00:03',NULL,'ravager',143,'0',9,12,8,0,0,'8442'),(663,'2018-07-07 04:14:16',NULL,'ravager',181,'0',8,15,11,0,0,'1197'),(664,'2018-07-07 04:52:23',NULL,'ravager',254,'209',11,10,13,0,1,'2572'),(665,'2018-07-07 04:59:54',NULL,'ravager',44,'0',2,3,1,0,0,'3246'),(666,'2018-07-07 05:30:12',NULL,'ravager',86,'0',4,3,4,0,0,'4127'),(667,'2018-07-07 06:01:46',NULL,'ravager',139,'0',5,6,4,0,0,'9509'),(668,'2018-07-07 06:17:10',NULL,'ravager',130,'130',9,7,12,0,1,'2772'),(669,'2018-07-07 06:44:16',NULL,'ravager',46,'46',3,1,2,0,1,'6268'),(670,'2018-07-07 07:03:21',NULL,'ravager',43,'43',3,3,1,0,1,'3846'),(671,'2018-07-07 07:32:16',NULL,'ravager',31,'0',1,1,2,0,0,'6822'),(672,'2018-07-07 08:00:55',NULL,'ravager',73,'0',3,4,4,0,0,'7538'),(673,'2018-07-07 08:50:56',NULL,'ravager',118,'0',7,6,6,0,0,'5175'),(674,'2018-07-07 09:29:56',NULL,'ravager',100,'0',10,11,9,0,0,'7593'),(675,'2018-07-07 10:06:23',NULL,'ravager',163,'0',8,9,9,0,0,'8160'),(676,'2018-07-07 10:16:19',NULL,'ravager',297,'0',16,12,12,0,0,'2822'),(677,'2018-07-07 10:45:40',NULL,'ravager',278,'0',14,10,14,0,0,'6671'),(678,'2018-07-07 11:49:11',NULL,'ravager',369,'0',23,15,17,0,0,'3037'),(679,'2018-07-07 12:00:54',NULL,'ravager',315,'3',27,18,20,0,1,'6537'),(680,'2018-07-07 12:14:31',NULL,'ravager',31,'0',1,2,2,0,0,'9345'),(681,'2018-07-07 13:00:14',NULL,'ravager',87,'0',5,6,3,0,0,'9118'),(682,'2018-07-07 13:16:26',NULL,'ravager',126,'0',4,8,9,0,0,'2004'),(683,'2018-07-07 14:03:33',NULL,'ravager',111,'0',11,12,10,0,0,'2432'),(684,'2018-07-07 14:51:37',NULL,'ravager',147,'0',9,11,13,0,0,'3187'),(685,'2018-07-07 15:15:28',NULL,'ravager',241,'0',18,10,16,0,0,'8526'),(686,'2018-07-07 15:30:24',NULL,'ravager',198,'0',15,11,14,0,0,'3529'),(687,'2018-07-07 16:07:22',NULL,'ravager',321,'0',20,16,23,0,0,'7135'),(688,'2018-07-07 16:17:06',NULL,'ravager',401,'0',13,25,17,0,0,'2178'),(689,'2018-07-07 17:00:41',NULL,'ravager',454,'364',28,22,25,0,1,'3325'),(690,'2018-07-07 17:46:32',NULL,'ravager',27,'0',1,2,3,0,0,'8672'),(691,'2018-07-07 19:02:09',NULL,'ravager',52,'0',3,5,3,0,0,'5098'),(692,'2018-07-07 19:30:14',NULL,'ravager',79,'0',4,7,4,0,0,'9973'),(693,'2018-07-07 19:48:50',NULL,'ravager',134,'0',8,9,7,0,0,'6890'),(694,'2018-07-07 20:17:57',NULL,'ravager',141,'0',10,8,10,0,0,'7701'),(695,'2018-07-07 20:34:01',NULL,'ravager',184,'0',17,17,13,0,0,'8075'),(696,'2018-07-07 21:00:10',NULL,'ravager',227,'0',14,20,20,0,0,'7181'),(697,'2018-07-07 21:29:09',NULL,'ravager',257,'0',20,21,24,0,0,'9173'),(698,'2018-07-07 21:49:45',NULL,'ravager',257,'0',17,13,27,0,0,'7221'),(699,'2018-07-07 22:45:30',NULL,'ravager',268,'0',27,15,27,0,0,'3686'),(700,'2018-07-07 22:59:47',NULL,'ravager',427,'0',24,23,23,0,0,'3692'),(701,'2018-07-07 23:48:36',NULL,'ravager',377,'268',18,36,32,0,1,'9851'),(702,'2018-07-08 00:21:34',NULL,'ravager',45,'0',2,1,2,0,0,'6037'),(703,'2018-07-08 00:51:56',NULL,'ravager',81,'0',4,5,3,0,0,'2490'),(704,'2018-07-08 01:06:44',NULL,'ravager',110,'0',6,5,5,0,0,'4052'),(705,'2018-07-08 01:15:38',NULL,'ravager',192,'0',10,6,12,0,0,'9482'),(706,'2018-07-08 01:36:33',NULL,'ravager',161,'161',14,9,11,0,1,'1502'),(707,'2018-07-08 01:46:15',NULL,'ravager',28,'0',1,1,2,0,0,'8249'),(708,'2018-07-08 02:15:58',NULL,'ravager',91,'0',4,3,5,0,0,'7938'),(709,'2018-07-08 02:45:16',NULL,'ravager',117,'0',7,6,8,0,0,'8685'),(710,'2018-07-08 03:03:53',NULL,'ravager',109,'0',8,8,10,0,0,'8132'),(711,'2018-07-08 03:49:53',NULL,'ravager',159,'118',8,7,7,0,1,'8858'),(712,'2018-07-08 04:15:49',NULL,'ravager',33,'0',2,3,3,0,0,'3447'),(713,'2018-07-08 04:44:21',NULL,'ravager',89,'0',3,5,6,0,0,'9515'),(714,'2018-07-08 04:59:54',NULL,'ravager',144,'0',9,9,4,0,0,'4595'),(715,'2018-07-08 05:15:04',NULL,'ravager',122,'0',12,8,11,0,0,'6568'),(716,'2018-07-08 06:02:44',NULL,'ravager',242,'0',14,10,11,0,0,'8512'),(717,'2018-07-08 06:31:52',NULL,'ravager',188,'0',9,15,18,0,0,'6295'),(718,'2018-07-08 07:14:01',NULL,'ravager',321,'0',21,19,14,0,0,'3746'),(719,'2018-07-08 07:34:00',NULL,'ravager',313,'0',17,21,24,0,0,'5721'),(720,'2018-07-08 07:45:23',NULL,'ravager',253,'0',27,13,19,0,0,'5900'),(721,'2018-07-08 08:01:02',NULL,'ravager',254,'0',23,22,30,0,0,'7069'),(722,'2018-07-08 08:46:16',NULL,'ravager',390,'58',20,32,25,0,1,'8177'),(723,'2018-07-08 09:19:55',NULL,'ravager',42,'0',2,3,2,0,0,'5973'),(724,'2018-07-08 09:29:57',NULL,'ravager',59,'0',4,5,3,0,0,'7236'),(725,'2018-07-08 09:51:45',NULL,'ravager',79,'0',7,9,7,0,0,'4412'),(726,'2018-07-08 10:20:16',NULL,'ravager',119,'0',11,10,9,0,0,'9928'),(727,'2018-07-08 11:16:47',NULL,'ravager',196,'0',8,15,9,0,0,'5101'),(728,'2018-07-08 11:31:01',NULL,'ravager',290,'0',9,10,10,0,0,'3547'),(729,'2018-07-08 11:48:59',NULL,'ravager',315,'0',16,11,14,0,0,'3536'),(730,'2018-07-08 12:17:46',NULL,'ravager',301,'0',16,24,13,0,0,'4380'),(731,'2018-07-08 12:33:30',NULL,'ravager',413,'0',21,13,17,0,0,'7529'),(732,'2018-07-08 12:47:57',NULL,'ravager',296,'0',19,15,18,0,0,'4980'),(733,'2018-07-08 13:06:30',NULL,'ravager',389,'91',18,19,20,0,1,'7752'),(734,'2018-07-08 13:17:57',NULL,'ravager',42,'0',3,3,3,0,0,'3941'),(735,'2018-07-08 13:44:21',NULL,'ravager',66,'0',4,3,3,0,0,'3807'),(736,'2018-07-08 14:05:06',NULL,'ravager',86,'0',8,5,7,0,0,'6589'),(737,'2018-07-08 14:22:19',NULL,'ravager',154,'0',10,8,7,0,0,'8652'),(738,'2018-07-08 14:45:58',NULL,'ravager',216,'0',12,11,11,0,0,'2085'),(739,'2018-07-08 15:00:25',NULL,'ravager',245,'0',18,13,12,0,0,'8878'),(740,'2018-07-08 15:35:13',NULL,'ravager',247,'0',20,10,13,0,0,'8326'),(741,'2018-07-08 16:01:48',NULL,'ravager',329,'0',14,22,14,0,0,'6925'),(742,'2018-07-08 16:47:35',NULL,'ravager',442,'0',19,15,16,0,0,'7305'),(743,'2018-07-08 16:59:02',NULL,'ravager',389,'0',24,18,25,0,0,'6256'),(744,'2018-07-08 17:16:57',NULL,'ravager',296,'0',16,16,24,0,0,'7099'),(745,'2018-07-08 17:46:00',NULL,'ravager',584,'0',27,24,20,0,0,'7444'),(746,'2018-07-08 18:17:20',NULL,'ravager',501,'0',21,26,20,0,0,'1015'),(747,'2018-07-08 18:51:00',NULL,'ravager',559,'454',26,21,21,0,1,'2847'),(748,'2018-07-08 19:02:01',NULL,'ravager',46,'0',2,3,1,0,0,'2271'),(749,'2018-07-08 19:48:40',NULL,'ravager',57,'0',6,3,5,0,0,'7518'),(750,'2018-07-08 20:00:59',NULL,'ravager',97,'0',9,8,6,0,0,'9634'),(751,'2018-07-08 20:17:52',NULL,'ravager',187,'0',7,10,8,0,0,'3292'),(752,'2018-07-08 20:31:07',NULL,'ravager',216,'0',14,15,11,0,0,'6800'),(753,'2018-07-08 21:01:19',NULL,'ravager',298,'0',18,17,9,0,0,'5119'),(754,'2018-07-08 21:19:19',NULL,'ravager',215,'0',21,18,11,0,0,'8978'),(755,'2018-07-08 21:46:11',NULL,'ravager',376,'0',21,15,13,0,0,'6903'),(756,'2018-07-08 22:00:12',NULL,'ravager',379,'0',27,16,24,0,0,'8655'),(757,'2018-07-08 22:44:51',NULL,'ravager',491,'0',29,26,27,0,0,'6348'),(758,'2018-07-08 23:04:21',NULL,'ravager',528,'528',31,26,24,0,1,'9978'),(759,'2018-07-08 23:50:47',NULL,'ravager',40,'0',1,2,3,0,0,'9611'),(760,'2018-07-09 00:00:30',NULL,'ravager',92,'0',3,6,4,0,0,'3856'),(761,'2018-07-09 00:22:07',NULL,'ravager',135,'0',5,4,6,0,0,'5800'),(762,'2018-07-09 00:32:02',NULL,'ravager',152,'0',12,6,7,0,0,'1903'),(763,'2018-07-09 00:48:08',NULL,'ravager',212,'0',15,7,11,0,0,'1044'),(764,'2018-07-09 01:20:04',NULL,'ravager',173,'0',14,9,11,0,0,'5476'),(765,'2018-07-09 01:50:56',NULL,'ravager',298,'0',15,12,21,0,0,'7458'),(766,'2018-07-09 02:06:29',NULL,'ravager',260,'0',12,23,13,0,0,'5807'),(767,'2018-07-09 02:34:09',NULL,'ravager',347,'0',14,27,25,0,0,'4418'),(768,'2018-07-09 03:05:55',NULL,'ravager',276,'201',26,22,23,0,1,'1800'),(769,'2018-07-09 03:30:22',NULL,'ravager',34,'0',2,2,1,0,0,'6540'),(770,'2018-07-09 03:44:37',NULL,'ravager',60,'0',4,5,5,0,0,'6975'),(771,'2018-07-09 04:20:24',NULL,'ravager',81,'0',8,6,4,0,0,'5899'),(772,'2018-07-09 04:31:27',NULL,'ravager',167,'0',7,7,12,0,0,'6932'),(773,'2018-07-09 05:04:46',NULL,'ravager',215,'0',10,9,12,0,0,'9844'),(774,'2018-07-09 05:18:48',NULL,'ravager',293,'0',10,12,18,0,0,'9128'),(775,'2018-07-09 06:17:52',NULL,'ravager',294,'0',13,20,10,0,0,'1957'),(776,'2018-07-09 07:01:04',NULL,'ravager',320,'0',22,17,18,0,0,'8561'),(777,'2018-07-09 07:32:05',NULL,'ravager',416,'77',27,26,19,0,1,'7156'),(778,'2018-07-09 07:50:52',NULL,'ravager',43,'0',3,1,1,0,0,'9767'),(779,'2018-07-09 08:15:00',NULL,'ravager',51,'0',6,3,6,0,0,'7076'),(780,'2018-07-09 08:36:53',NULL,'ravager',83,'0',8,5,9,0,0,'5369'),(781,'2018-07-09 08:46:39',NULL,'ravager',123,'0',6,7,12,0,0,'4539'),(782,'2018-07-09 09:17:54',NULL,'ravager',143,'0',10,8,10,0,0,'3975'),(783,'2018-07-09 09:48:51',NULL,'ravager',259,'0',13,12,14,0,0,'9811'),(784,'2018-07-09 10:30:49',NULL,'ravager',188,'0',20,14,10,0,0,'5121'),(785,'2018-07-09 11:01:05',NULL,'ravager',331,'0',20,19,16,0,0,'9824'),(786,'2018-07-09 11:21:07',NULL,'ravager',230,'0',21,14,15,0,0,'1762'),(787,'2018-07-09 11:31:20',NULL,'ravager',438,'0',17,22,15,0,0,'1149'),(788,'2018-07-09 12:19:47',NULL,'ravager',422,'0',19,24,31,0,0,'4059'),(789,'2018-07-09 13:46:54',NULL,'ravager',439,'0',25,24,31,0,0,'2689'),(790,'2018-07-09 14:50:21',NULL,'ravager',357,'0',26,37,29,0,0,'1901'),(791,'2018-07-09 15:17:17',NULL,'ravager',394,'0',23,35,36,0,0,'9301'),(792,'2018-07-09 16:00:45',NULL,'ravager',550,'0',35,26,32,0,0,'1213'),(793,'2018-07-09 16:21:15',NULL,'ravager',589,'578',41,30,38,0,1,'8850'),(794,'2018-07-09 16:45:20',NULL,'ravager',36,'0',3,1,3,0,0,'8352'),(795,'2018-07-09 17:15:52',NULL,'ravager',97,'0',4,6,6,0,0,'9098'),(796,'2018-07-09 17:36:52',NULL,'ravager',105,'0',6,7,7,0,0,'7690'),(797,'2018-07-09 18:02:12',NULL,'ravager',116,'0',9,6,8,0,0,'3557'),(798,'2018-07-09 18:16:44',NULL,'ravager',242,'0',10,8,14,0,0,'2492'),(799,'2018-07-09 18:37:16',NULL,'ravager',217,'0',17,12,11,0,0,'9765'),(800,'2018-07-09 18:50:10',NULL,'ravager',314,'0',15,20,17,0,0,'3728'),(801,'2018-07-09 19:07:02',NULL,'ravager',396,'0',23,12,22,0,0,'4324'),(802,'2018-07-09 19:19:38',NULL,'ravager',299,'0',20,16,20,0,0,'6591'),(803,'2018-07-09 19:50:39',NULL,'ravager',282,'0',22,28,20,0,0,'8545'),(804,'2018-07-09 20:03:24',NULL,'ravager',457,'0',23,32,18,0,0,'6457'),(805,'2018-07-09 20:34:22',NULL,'ravager',431,'0',28,35,27,0,0,'3032'),(806,'2018-07-09 21:06:49',NULL,'ravager',639,'189',22,28,32,0,1,'2098'),(807,'2018-07-09 21:33:32',NULL,'ravager',39,'0',1,2,3,0,0,'7771'),(808,'2018-07-09 21:44:42',NULL,'ravager',85,'0',6,4,6,0,0,'4753'),(809,'2018-07-09 22:01:40',NULL,'ravager',142,'0',8,4,7,0,0,'8780'),(810,'2018-07-09 22:22:00',NULL,'ravager',152,'0',8,11,8,0,0,'6707'),(811,'2018-07-09 22:50:34',NULL,'ravager',176,'0',8,10,13,0,0,'4575'),(812,'2018-07-09 23:15:55',NULL,'ravager',285,'0',12,13,17,0,0,'8821'),(813,'2018-07-09 23:52:15',NULL,'ravager',262,'0',10,11,21,0,0,'8325'),(814,'2018-07-10 00:04:10',NULL,'ravager',312,'0',22,19,13,0,0,'4759'),(815,'2018-07-10 00:16:41',NULL,'ravager',420,'0',24,20,23,0,0,'1207'),(816,'2018-07-10 00:29:38',NULL,'ravager',306,'0',21,16,18,0,0,'2429'),(817,'2018-07-10 01:16:46',NULL,'ravager',287,'0',17,19,25,0,0,'2585'),(818,'2018-07-10 01:51:52',NULL,'ravager',585,'497',33,28,26,0,1,'8991'),(819,'2018-07-10 02:01:47',NULL,'ravager',31,'0',1,1,1,0,0,'4020'),(820,'2018-07-10 02:35:20',NULL,'ravager',95,'0',3,5,5,0,0,'4408'),(821,'2018-07-10 03:02:48',NULL,'ravager',89,'0',6,8,6,0,0,'1392'),(822,'2018-07-10 03:15:19',NULL,'ravager',175,'0',7,10,6,0,0,'3292'),(823,'2018-07-10 03:50:51',NULL,'ravager',221,'0',13,8,8,0,0,'2476'),(824,'2018-07-10 04:03:07',NULL,'ravager',251,'0',15,14,11,0,0,'1736'),(825,'2018-07-10 04:14:03',NULL,'ravager',329,'0',16,11,20,0,0,'4084'),(826,'2018-07-10 04:30:44',NULL,'ravager',377,'0',12,13,19,0,0,'6594'),(827,'2018-07-10 04:45:52',NULL,'ravager',387,'0',27,13,13,0,0,'3250'),(828,'2018-07-10 05:19:47',NULL,'ravager',427,'0',29,29,29,0,0,'2571'),(829,'2018-07-10 05:34:23',NULL,'ravager',301,'0',32,31,22,0,0,'8584'),(830,'2018-07-10 05:50:26',NULL,'ravager',573,'573',26,27,25,0,1,'9168'),(831,'2018-07-10 06:46:29',NULL,'ravager',45,'0',2,3,3,0,0,'7584'),(832,'2018-07-10 07:16:24',NULL,'ravager',65,'0',3,5,3,0,0,'9066'),(833,'2018-07-10 07:30:12',NULL,'ravager',79,'0',7,4,4,0,0,'1314'),(834,'2018-07-10 08:21:53',NULL,'ravager',124,'0',11,7,7,0,0,'8084'),(835,'2018-07-10 08:29:31',NULL,'ravager',145,'0',7,9,9,0,0,'3838'),(836,'2018-07-10 08:51:31',NULL,'ravager',270,'0',9,18,13,0,0,'6008'),(837,'2018-07-10 09:29:14',NULL,'ravager',305,'0',21,19,18,0,0,'7324'),(838,'2018-07-10 09:44:28',NULL,'ravager',247,'0',21,24,22,0,0,'2620'),(839,'2018-07-10 10:34:10',NULL,'ravager',348,'0',13,25,14,0,0,'6321'),(840,'2018-07-10 10:44:33',NULL,'ravager',302,'0',16,22,23,0,0,'5992'),(841,'2018-07-10 11:14:32',NULL,'ravager',505,'183',32,18,25,0,1,'2791'),(842,'2018-07-10 11:35:52',NULL,'ravager',47,'0',2,3,1,0,0,'8427'),(843,'2018-07-10 12:06:00',NULL,'ravager',57,'0',6,4,5,0,0,'1624'),(844,'2018-07-10 12:31:28',NULL,'ravager',123,'0',8,6,8,0,0,'2194'),(845,'2018-07-10 13:20:06',NULL,'ravager',118,'0',12,8,9,0,0,'9243'),(846,'2018-07-10 13:34:52',NULL,'ravager',182,'0',12,12,8,0,0,'9676'),(847,'2018-07-10 14:16:51',NULL,'ravager',179,'179',10,11,15,0,1,'7781'),(848,'2018-07-10 14:44:38',NULL,'ravager',40,'0',3,1,3,0,0,'1689'),(849,'2018-07-10 15:03:23',NULL,'ravager',76,'0',5,3,5,0,0,'3730'),(850,'2018-07-10 15:34:35',NULL,'ravager',98,'0',8,7,6,0,0,'4097'),(851,'2018-07-10 16:36:36',NULL,'ravager',116,'0',8,12,9,0,0,'9256'),(852,'2018-07-10 16:49:37',NULL,'ravager',126,'0',7,14,11,0,0,'5738'),(853,'2018-07-10 16:59:27',NULL,'ravager',295,'0',12,12,14,0,0,'3067'),(854,'2018-07-10 17:22:10',NULL,'ravager',291,'84',15,16,21,0,1,'8274'),(855,'2018-07-10 17:36:31',NULL,'ravager',43,'0',3,1,2,0,0,'4673'),(856,'2018-07-10 18:17:10',NULL,'ravager',94,'0',5,5,3,0,0,'7361'),(857,'2018-07-10 18:34:57',NULL,'ravager',116,'0',8,7,6,0,0,'4083'),(858,'2018-07-10 18:50:49',NULL,'ravager',173,'0',9,10,7,0,0,'7509'),(859,'2018-07-10 19:31:15',NULL,'ravager',177,'0',8,7,11,0,0,'2447'),(860,'2018-07-10 19:48:12',NULL,'ravager',202,'0',16,14,12,0,0,'1710'),(861,'2018-07-10 20:34:26',NULL,'ravager',196,'0',18,16,12,0,0,'4830'),(862,'2018-07-10 21:03:01',NULL,'ravager',260,'0',24,14,14,0,0,'1550'),(863,'2018-07-10 21:32:01',NULL,'ravager',381,'0',21,21,19,0,0,'3277'),(864,'2018-07-10 21:47:32',NULL,'ravager',444,'0',30,26,30,0,0,'8231'),(865,'2018-07-10 22:05:58',NULL,'ravager',428,'0',30,27,18,0,0,'1940'),(866,'2018-07-10 22:45:55',NULL,'ravager',423,'0',30,30,31,0,0,'8393'),(867,'2018-07-10 23:14:17',NULL,'ravager',485,'289',24,22,25,0,1,'3133'),(868,'2018-07-10 23:50:25',NULL,'ravager',33,'0',2,3,3,0,0,'7110'),(869,'2018-07-11 00:30:15',NULL,'ravager',87,'0',5,4,4,0,0,'6822'),(870,'2018-07-11 01:14:10',NULL,'ravager',132,'0',8,7,8,0,0,'2401'),(871,'2018-07-11 01:28:59',NULL,'ravager',151,'0',11,12,10,0,0,'2674'),(872,'2018-07-11 01:47:32',NULL,'ravager',144,'0',10,9,11,0,0,'7028'),(873,'2018-07-11 02:16:16',NULL,'ravager',295,'0',18,14,10,0,0,'3527'),(874,'2018-07-11 02:31:06',NULL,'ravager',275,'0',21,14,14,0,0,'4906'),(875,'2018-07-11 02:48:00',NULL,'ravager',316,'0',14,23,16,0,0,'6171'),(876,'2018-07-11 03:02:09',NULL,'ravager',275,'0',21,19,15,0,0,'4242'),(877,'2018-07-11 03:19:12',NULL,'ravager',414,'0',22,22,19,0,0,'7121'),(878,'2018-07-11 04:17:47',NULL,'ravager',433,'227',31,19,20,0,1,'5987'),(879,'2018-07-11 04:32:30',NULL,'ravager',44,'0',2,2,2,0,0,'5565'),(880,'2018-07-11 05:20:36',NULL,'ravager',56,'0',6,3,3,0,0,'7657'),(881,'2018-07-11 05:30:31',NULL,'ravager',142,'0',8,5,6,0,0,'8097'),(882,'2018-07-11 06:29:58',NULL,'ravager',188,'0',8,9,6,0,0,'9828'),(883,'2018-07-11 07:02:19',NULL,'ravager',247,'0',11,13,8,0,0,'5075'),(884,'2018-07-11 07:16:14',NULL,'ravager',273,'0',16,12,17,0,0,'7404'),(885,'2018-07-11 07:35:29',NULL,'ravager',253,'0',12,18,21,0,0,'4698'),(886,'2018-07-11 08:49:20',NULL,'ravager',320,'0',16,22,20,0,0,'9562'),(887,'2018-07-11 09:03:33',NULL,'ravager',304,'0',19,17,25,0,0,'9769'),(888,'2018-07-11 09:18:20',NULL,'ravager',449,'0',23,20,16,0,0,'8790'),(889,'2018-07-11 09:34:02',NULL,'ravager',527,'70',20,19,22,0,1,'2812'),(890,'2018-07-11 10:01:48',NULL,'ravager',43,'0',1,3,1,0,0,'3789'),(891,'2018-07-11 10:17:49',NULL,'ravager',100,'0',5,4,6,0,0,'4647'),(892,'2018-07-11 11:04:34',NULL,'ravager',105,'0',9,4,9,0,0,'4939'),(893,'2018-07-11 12:06:26',NULL,'ravager',134,'0',9,7,8,0,0,'1644'),(894,'2018-07-11 13:04:13',NULL,'ravager',175,'0',7,8,7,0,0,'6304'),(895,'2018-07-11 13:17:53',NULL,'ravager',207,'0',18,14,12,0,0,'9255'),(896,'2018-07-11 14:05:34',NULL,'ravager',312,'312',11,17,14,0,1,'6823'),(897,'2018-07-11 14:51:43',NULL,'ravager',37,'0',2,1,2,0,0,'6637'),(898,'2018-07-11 15:30:32',NULL,'ravager',63,'0',4,5,5,0,0,'6570'),(899,'2018-07-11 16:19:43',NULL,'ravager',107,'0',8,4,6,0,0,'9012'),(900,'2018-07-11 16:51:20',NULL,'ravager',193,'0',6,12,6,0,0,'5919'),(901,'2018-07-11 17:34:19',NULL,'ravager',222,'0',7,8,14,0,0,'1640'),(902,'2018-07-11 18:04:28',NULL,'ravager',202,'0',10,12,11,0,0,'4161'),(903,'2018-07-11 18:14:10',NULL,'ravager',192,'0',10,18,17,0,0,'9709'),(904,'2018-07-11 19:20:32',NULL,'ravager',344,'0',15,17,12,0,0,'1442'),(905,'2018-07-11 19:33:02',NULL,'ravager',264,'0',23,22,20,0,0,'4233'),(906,'2018-07-11 20:16:54',NULL,'ravager',289,'0',30,25,18,0,0,'2360'),(907,'2018-07-11 20:59:19',NULL,'ravager',345,'0',18,29,17,0,0,'1655'),(908,'2018-07-11 21:20:17',NULL,'ravager',416,'0',25,25,30,0,0,'3444'),(909,'2018-07-11 21:37:06',NULL,'ravager',353,'0',28,22,37,0,0,'6493'),(910,'2018-07-11 21:59:57',NULL,'ravager',437,'0',25,25,21,0,0,'1995'),(911,'2018-07-11 22:18:38',NULL,'ravager',394,'291',41,23,35,0,1,'9228'),(912,'2018-07-11 22:49:40',NULL,'ravager',41,'0',3,1,2,0,0,'2037'),(913,'2018-07-11 23:14:44',NULL,'ravager',70,'0',5,6,3,0,0,'4224'),(914,'2018-07-12 00:03:28',NULL,'ravager',90,'0',4,5,4,0,0,'4461'),(915,'2018-07-12 00:33:53',NULL,'ravager',152,'0',10,11,9,0,0,'6561'),(916,'2018-07-12 00:59:52',NULL,'ravager',198,'0',9,14,11,0,0,'2807'),(917,'2018-07-12 01:15:44',NULL,'ravager',168,'0',13,14,10,0,0,'7619'),(918,'2018-07-12 01:48:17',NULL,'ravager',322,'0',11,20,20,0,0,'6170'),(919,'2018-07-12 02:32:09',NULL,'ravager',353,'0',24,17,20,0,0,'1844'),(920,'2018-07-12 02:50:16',NULL,'ravager',337,'0',25,23,22,0,0,'5707'),(921,'2018-07-12 03:01:50',NULL,'ravager',452,'0',27,26,23,0,0,'6488'),(922,'2018-07-12 03:20:10',NULL,'ravager',392,'392',25,32,17,0,1,'4757'),(923,'2018-07-12 03:51:29',NULL,'ravager',48,'0',1,1,3,0,0,'6485'),(924,'2018-07-12 04:16:11',NULL,'ravager',92,'0',6,6,3,0,0,'9601'),(925,'2018-07-12 04:49:00',NULL,'ravager',141,'0',6,5,6,0,0,'8350'),(926,'2018-07-12 05:16:33',NULL,'ravager',129,'0',10,10,7,0,0,'8952'),(927,'2018-07-12 05:45:01',NULL,'ravager',166,'0',7,15,8,0,0,'6027'),(928,'2018-07-12 06:00:18',NULL,'ravager',206,'0',11,17,10,0,0,'7741'),(929,'2018-07-12 06:49:07',NULL,'ravager',285,'0',11,11,13,0,0,'3549'),(930,'2018-07-12 07:32:21',NULL,'ravager',328,'0',13,20,13,0,0,'5205'),(931,'2018-07-12 07:48:34',NULL,'ravager',228,'0',24,22,17,0,0,'2967'),(932,'2018-07-12 08:06:55',NULL,'ravager',424,'152',27,17,16,0,1,'9797'),(933,'2018-07-12 08:31:57',NULL,'ravager',32,'0',3,2,1,0,0,'6619'),(934,'2018-07-12 09:29:08',NULL,'ravager',79,'0',5,3,5,0,0,'6403'),(935,'2018-07-12 09:46:10',NULL,'ravager',117,'0',8,8,6,0,0,'7052'),(936,'2018-07-12 09:59:08',NULL,'ravager',107,'0',7,8,7,0,0,'6429'),(937,'2018-07-12 10:19:12',NULL,'ravager',153,'0',15,7,12,0,0,'2318'),(938,'2018-07-12 10:45:37',NULL,'ravager',172,'0',18,13,17,0,0,'2418'),(939,'2018-07-12 11:29:40',NULL,'ravager',309,'0',14,15,13,0,0,'5354'),(940,'2018-07-12 12:01:32',NULL,'ravager',399,'0',23,24,23,0,0,'3678'),(941,'2018-07-12 12:18:47',NULL,'ravager',405,'209',25,19,23,0,1,'8730'),(942,'2018-07-12 12:49:56',NULL,'ravager',45,'0',2,2,1,0,0,'9354'),(943,'2018-07-12 13:48:33',NULL,'ravager',99,'0',5,6,3,0,0,'5236'),(944,'2018-07-12 14:30:12',NULL,'ravager',131,'0',7,9,4,0,0,'9604'),(945,'2018-07-12 14:44:33',NULL,'ravager',118,'0',12,6,9,0,0,'9285'),(946,'2018-07-12 15:04:00',NULL,'ravager',234,'0',9,13,12,0,0,'5386'),(947,'2018-07-12 15:14:19',NULL,'ravager',236,'0',12,16,15,0,0,'8990'),(948,'2018-07-12 15:31:45',NULL,'ravager',181,'0',20,13,18,0,0,'3436'),(949,'2018-07-12 16:32:09',NULL,'ravager',259,'0',16,19,14,0,0,'1994'),(950,'2018-07-12 17:37:04',NULL,'ravager',400,'0',18,18,13,0,0,'8336'),(951,'2018-07-12 17:45:50',NULL,'ravager',324,'0',26,16,29,0,0,'2782'),(952,'2018-07-12 18:03:33',NULL,'ravager',318,'0',16,20,20,0,0,'2190'),(953,'2018-07-12 18:17:27',NULL,'ravager',568,'0',25,34,18,0,0,'9266'),(954,'2018-07-12 18:45:03',NULL,'ravager',480,'0',26,27,23,0,0,'4956'),(955,'2018-07-12 19:18:41',NULL,'ravager',364,'364',31,38,24,0,1,'9772'),(956,'2018-07-12 19:30:04',NULL,'ravager',31,'0',2,3,2,0,0,'3748'),(957,'2018-07-12 20:14:48',NULL,'ravager',74,'74',6,5,3,0,1,'2450'),(958,'2018-07-12 20:36:32',NULL,'ravager',28,'0',2,2,2,0,0,'5164'),(959,'2018-07-12 21:21:44',NULL,'ravager',51,'0',4,3,3,0,0,'8939'),(960,'2018-07-12 21:34:47',NULL,'ravager',138,'0',6,8,9,0,0,'7094'),(961,'2018-07-12 21:45:12',NULL,'ravager',145,'0',8,10,6,0,0,'3613'),(962,'2018-07-12 22:04:18',NULL,'ravager',238,'0',15,7,15,0,0,'5249'),(963,'2018-07-12 22:46:06',NULL,'ravager',258,'0',12,17,15,0,0,'6842'),(964,'2018-07-12 22:59:29',NULL,'ravager',220,'0',16,15,10,0,0,'2327'),(965,'2018-07-12 23:30:12',NULL,'ravager',396,'0',16,20,22,0,0,'1234'),(966,'2018-07-12 23:46:01',NULL,'ravager',329,'0',15,21,13,0,0,'5139'),(967,'2018-07-13 00:29:17',NULL,'ravager',347,'0',17,23,27,0,0,'2509'),(968,'2018-07-13 01:05:11',NULL,'ravager',330,'310',21,31,19,0,1,'5942'),(969,'2018-07-13 01:14:38',NULL,'ravager',26,'0',1,3,1,0,0,'3502'),(970,'2018-07-13 01:47:54',NULL,'ravager',62,'0',6,5,5,0,0,'6639'),(971,'2018-07-13 01:58:55',NULL,'ravager',124,'0',5,5,9,0,0,'1804'),(972,'2018-07-13 02:34:44',NULL,'ravager',160,'0',9,9,8,0,0,'7210'),(973,'2018-07-13 03:01:48',NULL,'ravager',219,'0',15,14,7,0,0,'5379'),(974,'2018-07-13 03:30:53',NULL,'ravager',171,'0',17,16,9,0,0,'2473'),(975,'2018-07-13 04:04:04',NULL,'ravager',248,'0',15,15,18,0,0,'5381'),(976,'2018-07-13 04:29:39',NULL,'ravager',380,'0',18,18,15,0,0,'5065'),(977,'2018-07-13 04:59:59',NULL,'ravager',276,'0',18,23,20,0,0,'6182'),(978,'2018-07-13 05:20:30',NULL,'ravager',444,'0',24,29,18,0,0,'1546'),(979,'2018-07-13 05:36:45',NULL,'ravager',367,'0',29,26,27,0,0,'2324'),(980,'2018-07-13 06:20:07',NULL,'ravager',547,'120',23,32,18,0,1,'6389'),(981,'2018-07-13 06:32:36',NULL,'ravager',25,'0',1,2,3,0,0,'5833'),(982,'2018-07-13 07:32:48',NULL,'ravager',85,'0',3,5,6,0,0,'7247'),(983,'2018-07-13 07:45:57',NULL,'ravager',126,'0',9,8,4,0,0,'4340'),(984,'2018-07-13 08:30:27',NULL,'ravager',191,'0',11,8,12,0,0,'7393'),(985,'2018-07-13 08:44:43',NULL,'ravager',175,'0',7,15,15,0,0,'7447'),(986,'2018-07-13 09:06:11',NULL,'ravager',221,'0',13,17,15,0,0,'5210'),(987,'2018-07-13 09:31:37',NULL,'ravager',311,'0',16,16,19,0,0,'9077'),(988,'2018-07-13 09:46:12',NULL,'ravager',287,'0',23,21,23,0,0,'2098'),(989,'2018-07-13 10:36:16',NULL,'ravager',321,'0',22,14,13,0,0,'1564'),(990,'2018-07-13 10:47:23',NULL,'ravager',488,'0',20,23,21,0,0,'8594'),(991,'2018-07-13 11:21:28',NULL,'ravager',474,'0',28,17,22,0,0,'8501'),(992,'2018-07-13 11:30:43',NULL,'ravager',374,'0',27,34,26,0,0,'4192'),(993,'2018-07-13 12:00:49',NULL,'ravager',573,'408',23,24,29,0,1,'6878'),(994,'2018-07-13 12:34:19',NULL,'ravager',42,'0',1,2,2,0,0,'2305'),(995,'2018-07-13 12:44:04',NULL,'ravager',69,'0',3,5,3,0,0,'6594'),(996,'2018-07-13 13:00:32',NULL,'ravager',128,'0',8,4,7,0,0,'8990'),(997,'2018-07-13 13:18:41',NULL,'ravager',192,'0',8,6,11,0,0,'9328'),(998,'2018-07-13 13:36:12',NULL,'ravager',176,'0',15,10,13,0,0,'8125'),(999,'2018-07-13 14:04:58',NULL,'ravager',193,'0',10,15,16,0,0,'4882'),(1000,'2018-07-13 14:16:04',NULL,'ravager',179,'0',11,11,18,0,0,'8222'),(1001,'2018-07-13 14:49:54',NULL,'ravager',291,'0',18,17,18,0,0,'4588'),(1002,'2018-07-13 15:29:53',NULL,'ravager',410,'0',25,17,18,0,0,'9186'),(1003,'2018-07-13 15:51:13',NULL,'ravager',456,'0',18,24,16,0,0,'8554'),(1004,'2018-07-13 16:33:39',NULL,'ravager',439,'0',22,23,23,0,0,'7607'),(1005,'2018-07-13 16:59:47',NULL,'ravager',425,'0',28,24,36,0,0,'4581'),(1006,'2018-07-13 17:16:18',NULL,'ravager',327,'0',26,29,36,0,0,'1333'),(1007,'2018-07-13 17:43:56',NULL,'ravager',640,'0',31,21,28,0,0,'8079'),(1008,'2018-07-13 18:30:38',NULL,'ravager',433,'0',42,27,39,0,0,'1704'),(1009,'2018-07-13 19:20:50',NULL,'ravager',740,'0',35,42,38,0,0,'8319'),(1010,'2018-07-13 20:00:41',NULL,'ravager',454,'0',44,26,42,0,0,'4684'),(1011,'2018-07-13 20:28:58',NULL,'ravager',545,'359',35,48,47,0,1,'8572'),(1012,'2018-07-13 21:06:52',NULL,'ravager',48,'0',1,2,1,0,0,'3264'),(1013,'2018-07-13 21:15:37',NULL,'ravager',72,'72',6,3,5,0,1,'7694'),(1014,'2018-07-13 22:15:55',NULL,'ravager',38,'0',3,3,3,0,0,'6275'),(1015,'2018-07-13 22:37:00',NULL,'ravager',76,'0',6,6,5,0,0,'6483'),(1016,'2018-07-13 23:00:49',NULL,'ravager',104,'0',8,5,4,0,0,'5480'),(1017,'2018-07-13 23:17:41',NULL,'ravager',158,'0',11,9,6,0,0,'2635'),(1018,'2018-07-13 23:34:21',NULL,'ravager',204,'0',11,12,13,0,0,'2838'),(1019,'2018-07-13 23:45:47',NULL,'ravager',192,'0',15,13,10,0,0,'3617'),(1020,'2018-07-14 00:34:59',NULL,'ravager',329,'0',20,16,11,0,0,'9087'),(1021,'2018-07-14 01:19:41',NULL,'ravager',347,'0',17,18,24,0,0,'4711'),(1022,'2018-07-14 01:47:27',NULL,'ravager',443,'0',23,18,16,0,0,'3933'),(1023,'2018-07-14 03:00:13',NULL,'ravager',253,'0',19,17,17,0,0,'1532'),(1024,'2018-07-14 03:16:42',NULL,'ravager',417,'0',32,23,20,0,0,'1888'),(1025,'2018-07-14 03:51:31',NULL,'ravager',382,'100',35,34,20,0,1,'5931'),(1026,'2018-07-14 03:58:59',NULL,'ravager',29,'0',2,2,1,0,0,'1807'),(1027,'2018-07-14 04:32:55',NULL,'ravager',86,'0',6,5,4,0,0,'7351'),(1028,'2018-07-14 05:20:30',NULL,'ravager',138,'0',6,8,6,0,0,'7497'),(1029,'2018-07-14 05:32:11',NULL,'ravager',102,'0',8,10,9,0,0,'6517'),(1030,'2018-07-14 05:50:21',NULL,'ravager',225,'0',12,10,12,0,0,'7596'),(1031,'2018-07-14 05:59:22',NULL,'ravager',274,'0',17,9,18,0,0,'3865'),(1032,'2018-07-14 06:35:25',NULL,'ravager',287,'0',17,14,12,0,0,'4500'),(1033,'2018-07-14 06:46:15',NULL,'ravager',274,'0',24,12,22,0,0,'6730'),(1034,'2018-07-14 07:14:06',NULL,'ravager',260,'0',26,21,22,0,0,'8131'),(1035,'2018-07-14 07:36:41',NULL,'ravager',312,'263',19,27,19,0,1,'5896'),(1036,'2018-07-14 08:30:36',NULL,'ravager',29,'0',2,1,1,0,0,'6589'),(1037,'2018-07-14 08:58:55',NULL,'ravager',63,'0',6,6,3,0,0,'8898'),(1038,'2018-07-14 10:01:24',NULL,'ravager',129,'0',8,5,9,0,0,'1632'),(1039,'2018-07-14 10:21:54',NULL,'ravager',128,'0',12,6,9,0,0,'1315'),(1040,'2018-07-14 11:01:40',NULL,'ravager',140,'0',9,12,7,0,0,'3761'),(1041,'2018-07-14 11:16:48',NULL,'ravager',244,'29',18,16,12,0,1,'4714'),(1042,'2018-07-14 11:35:39',NULL,'ravager',37,'0',2,2,3,0,0,'4261'),(1043,'2018-07-14 12:18:31',NULL,'ravager',100,'0',3,3,4,0,0,'9541'),(1044,'2018-07-14 13:01:37',NULL,'ravager',94,'0',6,4,5,0,0,'8388'),(1045,'2018-07-14 14:01:56',NULL,'ravager',132,'0',8,8,9,0,0,'1113'),(1046,'2018-07-14 14:33:12',NULL,'ravager',150,'0',9,9,8,0,0,'3281'),(1047,'2018-07-14 14:45:06',NULL,'ravager',296,'0',12,15,9,0,0,'5723'),(1048,'2018-07-14 15:45:16',NULL,'ravager',290,'0',14,16,20,0,0,'6004'),(1049,'2018-07-14 15:59:25',NULL,'ravager',371,'0',17,21,13,0,0,'1196'),(1050,'2018-07-14 16:34:34',NULL,'ravager',347,'100',24,25,26,0,1,'6106'),(1051,'2018-07-14 17:16:15',NULL,'ravager',36,'0',1,1,3,0,0,'6006'),(1052,'2018-07-14 17:32:10',NULL,'ravager',50,'0',5,5,4,0,0,'7408'),(1053,'2018-07-14 18:20:16',NULL,'ravager',79,'0',5,5,7,0,0,'9361'),(1054,'2018-07-14 18:30:16',NULL,'ravager',166,'0',6,8,7,0,0,'6270'),(1055,'2018-07-14 19:02:46',NULL,'ravager',149,'0',15,11,13,0,0,'7102'),(1056,'2018-07-14 19:17:52',NULL,'ravager',295,'0',13,17,14,0,0,'4732'),(1057,'2018-07-14 19:51:21',NULL,'ravager',239,'0',21,11,15,0,0,'4419'),(1058,'2018-07-14 20:02:40',NULL,'ravager',352,'0',16,15,15,0,0,'2415'),(1059,'2018-07-14 20:16:59',NULL,'ravager',263,'0',13,21,17,0,0,'9661'),(1060,'2018-07-14 20:33:20',NULL,'ravager',474,'0',15,21,23,0,0,'7866'),(1061,'2018-07-14 20:51:07',NULL,'ravager',456,'0',23,17,31,0,0,'8163'),(1062,'2018-07-14 21:21:11',NULL,'ravager',517,'0',24,28,19,0,0,'3849'),(1063,'2018-07-14 21:46:47',NULL,'ravager',586,'0',20,38,20,0,0,'4513'),(1064,'2018-07-14 22:44:39',NULL,'ravager',532,'0',32,32,40,0,0,'2437'),(1065,'2018-07-14 23:44:48',NULL,'ravager',718,'640',45,33,27,0,1,'1793'),(1066,'2018-07-15 00:01:30',NULL,'ravager',35,'0',2,2,1,0,0,'8457'),(1067,'2018-07-15 00:31:06',NULL,'ravager',85,'0',5,5,4,0,0,'4976'),(1068,'2018-07-15 01:20:47',NULL,'ravager',123,'0',6,5,4,0,0,'5464'),(1069,'2018-07-15 01:34:40',NULL,'ravager',113,'0',11,8,11,0,0,'9934'),(1070,'2018-07-15 01:45:00',NULL,'ravager',142,'0',9,9,14,0,0,'8911'),(1071,'2018-07-15 02:01:07',NULL,'ravager',242,'0',14,15,14,0,0,'7836'),(1072,'2018-07-15 02:19:32',NULL,'ravager',232,'0',14,14,15,0,0,'2823'),(1073,'2018-07-15 02:48:52',NULL,'ravager',225,'0',14,12,15,0,0,'7836'),(1074,'2018-07-15 03:01:11',NULL,'ravager',413,'0',22,16,27,0,0,'4775'),(1075,'2018-07-15 03:45:08',NULL,'ravager',485,'0',17,16,28,0,0,'7155'),(1076,'2018-07-15 03:59:25',NULL,'ravager',429,'0',16,30,29,0,0,'7704'),(1077,'2018-07-15 04:21:12',NULL,'ravager',340,'0',30,22,36,0,0,'6608'),(1078,'2018-07-15 04:34:58',NULL,'ravager',520,'384',33,39,39,0,1,'5239'),(1079,'2018-07-15 04:47:52',NULL,'ravager',33,'0',3,1,1,0,0,'3371'),(1080,'2018-07-15 05:06:09',NULL,'ravager',84,'0',4,4,5,0,0,'9576'),(1081,'2018-07-15 05:31:25',NULL,'ravager',91,'0',8,8,7,0,0,'8264'),(1082,'2018-07-15 06:47:56',NULL,'ravager',194,'0',6,9,10,0,0,'8000'),(1083,'2018-07-15 07:03:52',NULL,'ravager',237,'0',7,13,11,0,0,'8722'),(1084,'2018-07-15 07:16:56',NULL,'ravager',299,'0',11,9,17,0,0,'9534'),(1085,'2018-07-15 07:34:03',NULL,'ravager',182,'0',15,16,20,0,0,'3662'),(1086,'2018-07-15 07:48:03',NULL,'ravager',279,'0',17,15,21,0,0,'8301'),(1087,'2018-07-15 07:59:31',NULL,'ravager',274,'0',14,13,24,0,0,'1924'),(1088,'2018-07-15 08:35:35',NULL,'ravager',258,'0',24,27,24,0,0,'6103'),(1089,'2018-07-15 09:19:04',NULL,'ravager',519,'0',19,19,20,0,0,'2858'),(1090,'2018-07-15 10:02:52',NULL,'ravager',600,'0',29,27,30,0,0,'8997'),(1091,'2018-07-15 10:19:59',NULL,'ravager',543,'339',32,31,35,0,1,'2870'),(1092,'2018-07-15 10:36:05',NULL,'ravager',33,'0',3,1,2,0,0,'6383'),(1093,'2018-07-15 10:44:42',NULL,'ravager',91,'0',3,4,6,0,0,'9066'),(1094,'2018-07-15 11:50:54',NULL,'ravager',76,'0',8,7,5,0,0,'2571'),(1095,'2018-07-15 12:05:34',NULL,'ravager',184,'0',8,7,7,0,0,'3960'),(1096,'2018-07-15 12:17:50',NULL,'ravager',174,'0',15,12,12,0,0,'6724'),(1097,'2018-07-15 12:34:35',NULL,'ravager',190,'0',14,11,15,0,0,'3845'),(1098,'2018-07-15 13:06:25',NULL,'ravager',309,'0',17,16,14,0,0,'9116'),(1099,'2018-07-15 13:31:23',NULL,'ravager',267,'0',14,18,20,0,0,'9697'),(1100,'2018-07-15 14:16:26',NULL,'ravager',333,'0',23,22,18,0,0,'5476'),(1101,'2018-07-15 14:45:44',NULL,'ravager',465,'0',28,25,22,0,0,'1678'),(1102,'2018-07-15 15:21:06',NULL,'ravager',405,'0',21,19,33,0,0,'8877'),(1103,'2018-07-15 15:36:51',NULL,'ravager',486,'0',23,31,35,0,0,'4236'),(1104,'2018-07-15 16:01:32',NULL,'ravager',546,'0',28,21,20,0,0,'5360'),(1105,'2018-07-15 16:32:47',NULL,'ravager',541,'390',41,27,42,0,1,'7432'),(1106,'2018-07-15 17:00:38',NULL,'ravager',35,'0',3,2,1,0,0,'4432'),(1107,'2018-07-15 17:32:46',NULL,'ravager',68,'0',4,5,6,0,0,'8418'),(1108,'2018-07-15 18:14:01',NULL,'ravager',145,'0',6,4,5,0,0,'3867'),(1109,'2018-07-15 18:31:52',NULL,'ravager',123,'0',10,11,9,0,0,'1462'),(1110,'2018-07-15 19:00:29',NULL,'ravager',212,'0',12,13,12,0,0,'2471'),(1111,'2018-07-15 19:14:41',NULL,'ravager',210,'0',18,13,17,0,0,'9437'),(1112,'2018-07-15 19:29:01',NULL,'ravager',234,'0',13,10,15,0,0,'4828'),(1113,'2018-07-15 20:37:08',NULL,'ravager',370,'0',23,13,22,0,0,'3375'),(1114,'2018-07-15 21:03:09',NULL,'ravager',239,'0',27,27,22,0,0,'8794'),(1115,'2018-07-15 21:13:55',NULL,'ravager',474,'0',16,23,16,0,0,'6203'),(1116,'2018-07-15 21:48:18',NULL,'ravager',294,'0',32,21,17,0,0,'1015'),(1117,'2018-07-15 22:06:38',NULL,'ravager',462,'0',21,33,18,0,0,'2785'),(1118,'2018-07-15 22:19:12',NULL,'ravager',494,'494',36,19,30,0,1,'2962'),(1119,'2018-07-15 22:44:12',NULL,'ravager',43,'0',2,2,3,0,0,'5332'),(1120,'2018-07-15 23:04:11',NULL,'ravager',50,'0',5,6,4,0,0,'1308'),(1121,'2018-07-15 23:46:35',NULL,'ravager',139,'0',7,8,4,0,0,'4596'),(1122,'2018-07-16 00:04:30',NULL,'ravager',162,'0',6,6,7,0,0,'6625'),(1123,'2018-07-16 00:35:21',NULL,'ravager',225,'0',14,12,11,0,0,'4664'),(1124,'2018-07-16 01:19:06',NULL,'ravager',287,'0',18,14,12,0,0,'6705'),(1125,'2018-07-16 01:32:45',NULL,'ravager',188,'0',13,11,21,0,0,'4761'),(1126,'2018-07-16 01:59:02',NULL,'ravager',392,'0',19,18,19,0,0,'8526'),(1127,'2018-07-16 02:17:21',NULL,'ravager',337,'0',24,18,17,0,0,'2329'),(1128,'2018-07-16 02:33:54',NULL,'ravager',328,'0',23,19,19,0,0,'8290'),(1129,'2018-07-16 02:47:00',NULL,'ravager',289,'289',19,17,17,0,1,'2169'),(1130,'2018-07-16 03:03:25',NULL,'ravager',41,'0',2,3,3,0,0,'2909'),(1131,'2018-07-16 03:35:20',NULL,'ravager',58,'0',4,5,3,0,0,'8810'),(1132,'2018-07-16 03:58:54',NULL,'ravager',93,'93',7,6,8,0,1,'9202'),(1133,'2018-07-16 04:17:17',NULL,'ravager',34,'0',3,1,3,0,0,'3413'),(1134,'2018-07-16 04:47:17',NULL,'ravager',62,'0',5,6,4,0,0,'5219'),(1135,'2018-07-16 05:05:05',NULL,'ravager',111,'0',6,6,7,0,0,'7194'),(1136,'2018-07-16 05:16:36',NULL,'ravager',195,'0',8,9,9,0,0,'9438'),(1137,'2018-07-16 05:44:30',NULL,'ravager',131,'0',12,12,10,0,0,'9798'),(1138,'2018-07-16 06:34:12',NULL,'ravager',161,'0',17,15,15,0,0,'9609'),(1139,'2018-07-16 07:04:26',NULL,'ravager',318,'0',14,12,17,0,0,'4269'),(1140,'2018-07-16 07:31:26',NULL,'ravager',305,'0',13,14,13,0,0,'8683'),(1141,'2018-07-16 07:47:28',NULL,'ravager',239,'0',27,19,19,0,0,'9943'),(1142,'2018-07-16 08:43:58',NULL,'ravager',405,'0',27,25,22,0,0,'4752'),(1143,'2018-07-16 09:03:24',NULL,'ravager',478,'14',27,24,33,0,1,'3732'),(1144,'2018-07-16 09:30:35',NULL,'ravager',37,'0',3,2,1,0,0,'8359'),(1145,'2018-07-16 09:45:09',NULL,'ravager',69,'0',3,5,6,0,0,'7809'),(1146,'2018-07-16 10:21:27',NULL,'ravager',121,'0',8,9,6,0,0,'9728'),(1147,'2018-07-16 11:00:17',NULL,'ravager',126,'0',11,10,7,0,0,'8939'),(1148,'2018-07-16 11:32:27',NULL,'ravager',232,'0',14,11,8,0,0,'8793'),(1149,'2018-07-16 12:21:26',NULL,'ravager',236,'0',18,10,18,0,0,'9982'),(1150,'2018-07-16 12:49:25',NULL,'ravager',310,'294',16,21,15,0,1,'4782'),(1151,'2018-07-16 13:04:58',NULL,'ravager',32,'0',1,2,3,0,0,'2176'),(1152,'2018-07-16 13:48:34',NULL,'ravager',76,'0',5,5,5,0,0,'5501'),(1153,'2018-07-16 14:06:54',NULL,'ravager',85,'0',7,5,8,0,0,'3840'),(1154,'2018-07-16 14:34:17',NULL,'ravager',120,'0',10,7,6,0,0,'6668'),(1155,'2018-07-16 14:46:14',NULL,'ravager',245,'0',13,7,8,0,0,'3199'),(1156,'2018-07-16 15:19:19',NULL,'ravager',279,'0',12,10,18,0,0,'8996'),(1157,'2018-07-16 15:33:52',NULL,'ravager',276,'0',10,19,14,0,0,'9330'),(1158,'2018-07-16 16:29:48',NULL,'ravager',376,'0',18,24,16,0,0,'5883'),(1159,'2018-07-16 16:51:23',NULL,'ravager',256,'0',26,13,23,0,0,'8526'),(1160,'2018-07-16 17:03:12',NULL,'ravager',333,'0',29,25,30,0,0,'3043'),(1161,'2018-07-16 17:17:30',NULL,'ravager',496,'88',22,28,21,0,1,'3738'),(1162,'2018-07-16 17:31:29',NULL,'ravager',46,'0',3,3,2,0,0,'1014'),(1163,'2018-07-16 17:44:42',NULL,'ravager',83,'0',4,4,3,0,0,'3687'),(1164,'2018-07-16 18:30:48',NULL,'ravager',128,'0',8,6,6,0,0,'7240'),(1165,'2018-07-16 18:43:56',NULL,'ravager',103,'0',6,7,11,0,0,'8206'),(1166,'2018-07-16 19:34:36',NULL,'ravager',215,'0',8,15,10,0,0,'1010'),(1167,'2018-07-16 19:44:28',NULL,'ravager',237,'0',17,18,14,0,0,'4244'),(1168,'2018-07-16 20:19:26',NULL,'ravager',197,'0',21,21,18,0,0,'9345'),(1169,'2018-07-16 20:33:07',NULL,'ravager',340,'0',22,14,13,0,0,'3730'),(1170,'2018-07-16 20:47:23',NULL,'ravager',426,'0',16,25,26,0,0,'1212'),(1171,'2018-07-16 21:15:23',NULL,'ravager',316,'0',24,21,21,0,0,'4881'),(1172,'2018-07-16 21:48:35',NULL,'ravager',352,'0',17,28,26,0,0,'6308'),(1173,'2018-07-16 22:21:23',NULL,'ravager',574,'0',20,31,34,0,0,'8724'),(1174,'2018-07-16 22:29:31',NULL,'ravager',470,'339',27,39,34,0,1,'9151'),(1175,'2018-07-16 22:46:57',NULL,'ravager',36,'0',2,2,3,0,0,'5971'),(1176,'2018-07-16 23:06:58',NULL,'ravager',94,'0',6,5,6,0,0,'2500'),(1177,'2018-07-16 23:20:43',NULL,'ravager',137,'137',5,9,4,0,1,'8352'),(1178,'2018-07-16 23:46:19',NULL,'ravager',26,'0',1,2,2,0,0,'1772'),(1179,'2018-07-17 00:32:37',NULL,'ravager',64,'0',5,4,5,0,0,'1651'),(1180,'2018-07-17 00:59:51',NULL,'ravager',125,'0',4,9,9,0,0,'2620'),(1181,'2018-07-17 01:16:42',NULL,'ravager',104,'0',12,11,10,0,0,'1567'),(1182,'2018-07-17 01:34:37',NULL,'ravager',131,'0',15,13,15,0,0,'4491'),(1183,'2018-07-17 01:51:28',NULL,'ravager',177,'0',18,15,16,0,0,'6195'),(1184,'2018-07-17 02:00:30',NULL,'ravager',323,'0',16,17,16,0,0,'7208'),(1185,'2018-07-17 02:49:50',NULL,'ravager',389,'0',15,14,19,0,0,'1227'),(1186,'2018-07-17 03:20:55',NULL,'ravager',293,'111',16,23,24,0,1,'6150'),(1187,'2018-07-17 03:33:21',NULL,'ravager',46,'0',1,3,2,0,0,'8387'),(1188,'2018-07-17 03:59:07',NULL,'ravager',83,'0',6,5,6,0,0,'8357'),(1189,'2018-07-17 04:30:13',NULL,'ravager',102,'0',4,4,6,0,0,'4876'),(1190,'2018-07-17 05:05:38',NULL,'ravager',130,'0',8,8,12,0,0,'9726'),(1191,'2018-07-17 05:30:25',NULL,'ravager',188,'0',13,14,11,0,0,'6965'),(1192,'2018-07-17 05:49:19',NULL,'ravager',218,'0',14,10,10,0,0,'3325'),(1193,'2018-07-17 06:32:47',NULL,'ravager',308,'0',10,19,10,0,0,'5113'),(1194,'2018-07-17 06:47:48',NULL,'ravager',222,'48',13,24,18,0,1,'8673'),(1195,'2018-07-17 07:05:18',NULL,'ravager',47,'0',1,3,1,0,0,'2363'),(1196,'2018-07-17 07:33:19',NULL,'ravager',71,'0',3,6,6,0,0,'6246'),(1197,'2018-07-17 08:03:24',NULL,'ravager',144,'0',4,5,5,0,0,'2142'),(1198,'2018-07-17 08:33:29',NULL,'ravager',136,'0',10,11,12,0,0,'4318'),(1199,'2018-07-17 09:06:51',NULL,'ravager',248,'0',10,11,8,0,0,'7365'),(1200,'2018-07-17 10:01:54',NULL,'ravager',159,'0',10,11,10,0,0,'1285'),(1201,'2018-07-17 10:19:21',NULL,'ravager',343,'0',19,12,12,0,0,'9822'),(1202,'2018-07-17 11:02:11',NULL,'ravager',387,'0',15,22,12,0,0,'5352'),(1203,'2018-07-17 11:13:48',NULL,'ravager',232,'0',13,21,19,0,0,'3356'),(1204,'2018-07-17 11:46:47',NULL,'ravager',324,'161',30,25,15,0,1,'6348'),(1205,'2018-07-17 12:19:24',NULL,'ravager',39,'0',3,1,2,0,0,'3874'),(1206,'2018-07-17 12:30:29',NULL,'ravager',60,'0',5,3,3,0,0,'9659'),(1207,'2018-07-17 12:51:54',NULL,'ravager',100,'0',6,4,4,0,0,'4094'),(1208,'2018-07-17 13:30:48',NULL,'ravager',166,'0',11,6,7,0,0,'5084'),(1209,'2018-07-17 13:44:40',NULL,'ravager',240,'0',9,15,15,0,0,'3029'),(1210,'2018-07-17 14:05:19',NULL,'ravager',272,'0',13,10,9,0,0,'1327'),(1211,'2018-07-17 14:15:09',NULL,'ravager',289,'0',16,12,15,0,0,'2206'),(1212,'2018-07-17 15:05:28',NULL,'ravager',305,'0',21,21,13,0,0,'2653'),(1213,'2018-07-17 15:47:01',NULL,'ravager',391,'0',26,20,20,0,0,'5526'),(1214,'2018-07-17 16:17:26',NULL,'ravager',416,'0',30,19,23,0,0,'1045'),(1215,'2018-07-17 17:02:40',NULL,'ravager',467,'0',29,19,32,0,0,'2508'),(1216,'2018-07-17 17:30:37',NULL,'ravager',572,'187',28,24,34,0,1,'8051'),(1217,'2018-07-17 17:45:39',NULL,'ravager',45,'0',2,2,1,0,0,'6827'),(1218,'2018-07-17 18:33:00',NULL,'ravager',77,'0',5,6,3,0,0,'4295'),(1219,'2018-07-17 19:05:16',NULL,'ravager',122,'0',8,6,6,0,0,'7755'),(1220,'2018-07-17 19:30:40',NULL,'ravager',187,'187',11,11,10,0,1,'3203'),(1221,'2018-07-17 20:06:35',NULL,'ravager',35,'0',3,3,3,0,0,'6425'),(1222,'2018-07-17 20:46:54',NULL,'ravager',67,'0',5,6,4,0,0,'6545'),(1223,'2018-07-17 21:14:21',NULL,'ravager',146,'0',4,4,8,0,0,'5529'),(1224,'2018-07-17 21:44:26',NULL,'ravager',158,'0',12,7,6,0,0,'2111'),(1225,'2018-07-17 22:20:44',NULL,'ravager',34,'0',2,1,1,0,0,'9037'),(1226,'2018-07-17 22:36:22',NULL,'ravager',61,'0',3,5,3,0,0,'8371'),(1227,'2018-07-17 22:48:26',NULL,'ravager',95,'0',5,7,8,0,0,'4182'),(1228,'2018-07-17 23:03:15',NULL,'ravager',176,'0',8,7,8,0,0,'4517'),(1229,'2018-07-17 23:33:18',NULL,'ravager',218,'0',14,11,7,0,0,'3066'),(1230,'2018-07-17 23:50:24',NULL,'ravager',171,'0',12,13,14,0,0,'3767'),(1231,'2018-07-18 01:01:02',NULL,'ravager',332,'0',18,12,14,0,0,'9078'),(1232,'2018-07-18 01:16:12',NULL,'ravager',363,'0',19,15,16,0,0,'2523'),(1233,'2018-07-18 01:34:36',NULL,'ravager',323,'0',27,21,21,0,0,'8443'),(1234,'2018-07-18 01:48:59',NULL,'ravager',273,'0',30,21,22,0,0,'7430'),(1235,'2018-07-18 02:18:17',NULL,'ravager',339,'219',33,29,21,0,1,'7407'),(1236,'2018-07-18 02:31:38',NULL,'ravager',44,'0',2,2,1,0,0,'3112'); -/*!40000 ALTER TABLE `hostiles` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `userLog` --- - -DROP TABLE IF EXISTS `userLog`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `userLog` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `discordUserID` bigint(20) DEFAULT NULL, - `actionTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP, - `actionType` varchar(16) DEFAULT NULL, - `actionData` varchar(255) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=4561 DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `userLog` --- - -LOCK TABLES `userLog` WRITE; -/*!40000 ALTER TABLE `userLog` DISABLE KEYS */; -INSERT INTO `userLog` VALUES (1,123,'2018-06-15 22:18:40','test1','test2'),(2,123,'2018-06-15 22:20:17','test1','test2'),(14,163770616581718017,'2018-06-15 23:55:54','conversion','Converted to believer.'),(16,163770616581718017,'2018-06-16 21:24:56','conversion','Converted to The Order.'),(17,123,'2018-06-16 21:42:18','checkin','Checked in for 7 crystals.'),(19,163770616581718017,'2018-06-16 21:44:45','checkin','Checked in for 7 crystals.'),(20,123,'2018-06-16 22:16:15','deposit','Deposited 1 crystals to 454460679244480512.'),(21,123,'2018-06-16 23:01:48','deposit','Deposited 2 crystals to 454460679244480512.'),(22,163770616581718017,'2018-06-16 23:04:06','deposit','Deposited 6 crystals to 454460679244480512.'),(23,163770616581718017,'2018-06-17 01:13:31','conversion','Converted to The Anarchy.'),(24,163770616581718017,'2018-06-17 02:49:51','checkin','Checked in for 9 crystals.'),(25,163770616581718017,'2018-06-17 22:43:12','deposit','Deposited 1 crystals to 454460756520337418.'),(26,163770616581718017,'2018-06-21 03:28:16','checkin','Checked in for 4 crystals.'),(27,163770616581718017,'2018-06-22 19:20:25','checkin','Checked in for 6 crystals.'),(28,163770616581718017,'2018-06-22 21:18:34','deposit','Deposited 1 crystals to 454460756520337418.'),(29,274301199841361920,'2018-06-22 21:30:14','conversion','Converted to The Anarchy.'),(30,211232684209340426,'2018-06-22 21:30:22','conversion','Converted to The Order.'),(31,218498162745278474,'2018-06-22 21:30:25','conversion','Converted to The Anarchy.'),(32,262771588946984963,'2018-06-22 21:30:43','conversion','Converted to The Religion.'),(33,280136086296985600,'2018-06-22 21:30:49','conversion','Converted to The Anarchy.'),(34,265907268942299136,'2018-06-22 21:30:54','conversion','Converted to The Order.'),(35,201102155896193024,'2018-06-22 21:31:09','conversion','Converted to The Religion.'),(36,168775748495212545,'2018-06-22 21:31:19','conversion','Converted to The Religion.'),(37,274301199841361920,'2018-06-22 21:33:24','checkin','Checked in for 8 crystals.'),(38,218498162745278474,'2018-06-22 21:33:34','checkin','Checked in for 9 crystals.'),(39,229524509047128074,'2018-06-22 21:33:38','conversion','Converted to The Anarchy.'),(40,280136086296985600,'2018-06-22 21:34:19','checkin','Checked in for 4 crystals.'),(41,229524509047128074,'2018-06-22 21:35:02','checkin','Checked in for 7 crystals.'),(42,459834182961463299,'2018-06-22 21:36:43','conversion','Converted to The Order.'),(43,211232684209340426,'2018-06-22 21:37:33','checkin','Checked in for 8 crystals.'),(44,265907268942299136,'2018-06-22 21:38:35','checkin','Checked in for 4 crystals.'),(45,459834182961463299,'2018-06-22 21:39:03','checkin','Checked in for 8 crystals.'),(46,201102155896193024,'2018-06-22 21:39:11','checkin','Checked in for 6 crystals.'),(47,168775748495212545,'2018-06-22 21:40:32','checkin','Checked in for 6 crystals.'),(48,200340393596944384,'2018-06-22 21:47:54','conversion','Converted to The Anarchy.'),(49,282656257716912139,'2018-06-22 21:48:18','conversion','Converted to The Order.'),(50,200340393596944384,'2018-06-22 21:48:30','checkin','Checked in for 7 crystals.'),(51,359521958519504926,'2018-06-22 21:48:39','conversion','Converted to The Anarchy.'),(52,218498162745278474,'2018-06-22 21:49:20','deposit','Deposited 10 crystals to 454460756520337418.'),(53,359521958519504926,'2018-06-22 21:49:37','checkin','Checked in for 5 crystals.'),(54,274301199841361920,'2018-06-22 21:50:04','deposit','Deposited 2 crystals to 454460756520337418.'),(55,280136086296985600,'2018-06-22 21:50:18','deposit','Deposited 5 crystals to 454460756520337418.'),(56,412026575203205122,'2018-06-22 21:50:46','conversion','Converted to The Order.'),(57,280136086296985600,'2018-06-22 21:51:26','deposit','Deposited -5 crystals to 454460756520337418.'),(58,282656257716912139,'2018-06-22 21:51:43','checkin','Checked in for 7 crystals.'),(59,412026575203205122,'2018-06-22 21:51:45','checkin','Checked in for 6 crystals.'),(60,280136086296985600,'2018-06-22 21:51:59','deposit','Deposited -20 crystals to 454460756520337418.'),(61,200340393596944384,'2018-06-22 21:52:08','deposit','Deposited -1000 crystals to 454460756520337418.'),(62,201102155896193024,'2018-06-22 21:52:08','deposit','Deposited 10 crystals to 457312250147897366.'),(63,218498162745278474,'2018-06-22 21:52:17','deposit','Deposited -14000000 crystals to 454460756520337418.'),(64,412026575203205122,'2018-06-22 21:52:33','deposit','Deposited 6 crystals to 454460679244480512.'),(65,200340393596944384,'2018-06-22 21:52:34','deposit','Deposited -10000000000000000000000000000 crystals to 454460756520337418.'),(66,211232684209340426,'2018-06-22 21:52:53','deposit','Deposited -100000000 crystals to 454460679244480512.'),(67,433759248800022532,'2018-06-22 21:53:13','conversion','Converted to The Anarchy.'),(68,211232684209340426,'2018-06-22 21:53:14','deposit','Deposited 1000000 crystals to 454460679244480512.'),(69,201102155896193024,'2018-06-22 21:53:25','deposit','Deposited -20 crystals to 457312250147897366.'),(70,433759248800022532,'2018-06-22 21:53:42','deposit','Deposited -6969869869549840686 crystals to 454460756520337418.'),(71,201102155896193024,'2018-06-22 21:53:43','deposit','Deposited -999999999999999999999999999999999 crystals to 457312250147897366.'),(72,211232684209340426,'2018-06-22 21:53:57','deposit','Deposited 99000008 crystals to 454460679244480512.'),(73,274301199841361920,'2018-06-22 21:54:02','deposit','Deposited -1 crystals to 454460756520337418.'),(74,201102155896193024,'2018-06-22 21:54:08','deposit','Deposited -9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999'),(75,201102155896193024,'2018-06-22 21:54:30','deposit','Deposited -9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999'),(76,201102155896193024,'2018-06-22 21:54:52','deposit','Deposited -999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 crystals to 457312250147'),(77,211232684209340426,'2018-06-22 21:54:57','deposit','Deposited -23 crystals to 454460679244480512.'),(78,201102155896193024,'2018-06-22 21:55:07','deposit','Deposited -9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999'),(79,200340393596944384,'2018-06-22 21:55:16','deposit','Deposited 69 crystals to 454460756520337418.'),(80,218498162745278474,'2018-06-22 21:55:39','deposit','Deposited 1400000 crystals to 454460756520337418.'),(81,200340393596944384,'2018-06-22 21:56:37','deposit','Deposited 147483578 crystals to 454460756520337418.'),(82,218498162745278474,'2018-06-22 21:56:38','deposit','Deposited 12600000 crystals to 454460756520337418.'),(83,200340393596944384,'2018-06-22 21:57:39','deposit','Deposited 1 crystals to 454460756520337418.'),(84,280136086296985600,'2018-06-22 21:59:51','deposit','Deposited 1.5 crystals to 454460756520337418.'),(85,280136086296985600,'2018-06-22 22:00:08','deposit','Deposited 1.04774268 crystals to 454460756520337418.'),(86,274301199841361920,'2018-06-22 22:01:23','deposit','Deposited 1.5323231 crystals to 454460756520337418.'),(87,211232684209340426,'2018-06-22 22:02:04','deposit','Deposited 0.00000000000000000000000000000000000000000000001 crystals to 454460679244480512.'),(88,211232684209340426,'2018-06-22 22:02:23','deposit','Deposited 0.000000000000000000000000000001 crystals to 454460679244480512.'),(89,280136086296985600,'2018-06-22 22:02:30','deposit','Deposited 0.5 crystals to 454460756520337418.'),(90,229524509047128074,'2018-06-22 22:02:32','deposit','Deposited 0.003 crystals to 454460756520337418.'),(91,123,'2018-06-22 22:02:36','deposit','Deposited 2 crystals to 454460679244480512.'),(92,274301199841361920,'2018-06-22 22:02:59','deposit','Deposited 1 crystals to 454460756520337418.'),(93,280136086296985600,'2018-06-22 22:03:27','deposit','Deposited 1 crystals to 454460756520337418.'),(94,229524509047128074,'2018-06-22 22:03:37','deposit','Deposited 1 crystals to 454460756520337418.'),(95,262771588946984963,'2018-06-22 22:03:44','checkin','Checked in for 4 crystals.'),(96,163770616581718017,'2018-06-22 22:04:34','deposit','Deposited 1 crystals to 454460756520337418.'),(97,262771588946984963,'2018-06-22 22:05:21','deposit','Deposited 1 crystals to 457312250147897366.'),(98,282656257716912139,'2018-06-22 22:07:42','deposit','Deposited 5 crystals to 454460679244480512.'),(99,211232684209340426,'2018-06-22 22:11:56','deposit','Deposited 23 crystals to 454460679244480512.'),(100,211232684209340426,'2018-06-22 22:12:19','deposit','Deposited 10 crystals to 454460679244480512.'),(101,229524509047128074,'2018-06-22 22:12:42','deposit','Deposited 9 crystals to 454460756520337418.'),(102,274301199841361920,'2018-06-22 22:12:54','deposit','Deposited 6 crystals to 454460756520337418.'),(103,433759248800022532,'2018-06-22 22:13:35','checkin','Checked in for 4 crystals.'),(104,457300954660995114,'2018-06-22 22:29:32','conversion','Converted to The Anarchy.'),(105,457300954660995114,'2018-06-22 22:33:58','checkin','Checked in for 8 crystals.'),(106,163770616581718017,'2018-06-22 22:40:42','gambleLost','Gambled and lost for 1 crystals.'),(107,163770616581718017,'2018-06-22 22:40:52','gambleWon','Gambled and won for 1 crystals.'),(108,262771588946984963,'2018-06-22 22:40:53','gambleWon','Gambled and won for 3 crystals.'),(109,433759248800022532,'2018-06-22 22:41:11','gambleWon','Gambled and won for 1 crystals.'),(110,280136086296985600,'2018-06-22 22:41:20','gambleWon','Gambled and won for 5 crystals.'),(111,433759248800022532,'2018-06-22 22:41:21','gambleLost','Gambled and lost for 1 crystals.'),(112,459834182961463299,'2018-06-22 22:41:26','gambleWon','Gambled and won for 8 crystals.'),(113,433759248800022532,'2018-06-22 22:41:28','gambleLost','Gambled and lost for 1 crystals.'),(114,433759248800022532,'2018-06-22 22:41:32','gambleWon','Gambled and won for 1 crystals.'),(115,433759248800022532,'2018-06-22 22:41:38','gambleWon','Gambled and won for 1 crystals.'),(116,282656257716912139,'2018-06-22 22:41:55','gambleWon','Gambled and won for 2 crystals.'),(117,262771588946984963,'2018-06-22 22:42:05','gambleLost','Gambled and lost for 6 crystals.'),(118,168775748495212545,'2018-06-22 22:42:08','gambleWon','Gambled and won for 5 crystals.'),(119,204933415252787202,'2018-06-22 22:42:25','conversion','Converted to The Anarchy.'),(120,280136086296985600,'2018-06-22 22:42:32','gambleLost','Gambled and lost for 10 crystals.'),(121,168775748495212545,'2018-06-22 22:42:46','deposit','Deposited 10 crystals to 457312250147897366.'),(122,280136086296985600,'2018-06-22 22:42:50','gambleLost','Gambled and lost for 5 crystals.'),(123,359521958519504926,'2018-06-22 22:43:22','gambleWon','Gambled and won for 5 crystals.'),(124,359521958519504926,'2018-06-22 22:43:33','gambleWon','Gambled and won for 10 crystals.'),(125,359521958519504926,'2018-06-22 22:43:44','gambleLost','Gambled and lost for 15 crystals.'),(126,204933415252787202,'2018-06-22 22:44:01','checkin','Checked in for 4 crystals.'),(127,359521958519504926,'2018-06-22 22:44:07','gambleWon','Gambled and won for 5 crystals.'),(128,359521958519504926,'2018-06-22 22:44:14','gambleWon','Gambled and won for 5 crystals.'),(129,204933415252787202,'2018-06-22 22:44:15','gambleLost','Gambled and lost for 2 crystals.'),(130,359521958519504926,'2018-06-22 22:44:25','gambleLost','Gambled and lost for 15 crystals.'),(131,286105785052954626,'2018-06-22 22:49:38','conversion','Converted to The Order.'),(132,286105785052954626,'2018-06-22 22:52:16','checkin','Checked in for 8 crystals.'),(133,433759248800022532,'2018-06-22 22:53:13','gambleWon','Gambled and won for 1 crystals.'),(134,286105785052954626,'2018-06-22 22:53:54','gambleLost','Gambled and lost for 1 crystals.'),(135,286105785052954626,'2018-06-22 22:54:03','gambleLost','Gambled and lost for 1 crystals.'),(136,286105785052954626,'2018-06-22 22:54:14','gambleLost','Gambled and lost for 1 crystals.'),(137,433759248800022532,'2018-06-22 22:54:23','gambleWon','Gambled and won for 1 crystals.'),(138,286105785052954626,'2018-06-22 22:54:29','gambleLost','Gambled and lost for 1 crystals.'),(139,286105785052954626,'2018-06-22 22:54:38','gambleWon','Gambled and won for 1 crystals.'),(140,286105785052954626,'2018-06-22 22:56:17','gambleLost','Gambled and lost for 5 crystals.'),(141,204933415252787202,'2018-06-22 23:04:09','gambleWon','Gambled and won for 2 crystals.'),(142,204933415252787202,'2018-06-22 23:04:46','gambleWon','Gambled and won for 2 crystals.'),(143,459834182961463299,'2018-06-22 23:05:35','gambleLost','Gambled and lost for 2 crystals.'),(144,433759248800022532,'2018-06-22 23:05:51','gambleLost','Gambled and lost for 1 crystals.'),(145,282656257716912139,'2018-06-22 23:13:40','gambleWon','Gambled and won for 5 crystals.'),(146,454823752925052930,'2018-06-22 23:16:55','conversion','Converted to The Anarchy.'),(147,454823752925052930,'2018-06-22 23:18:22','checkin','Checked in for 4 crystals.'),(148,454823752925052930,'2018-06-22 23:21:08','gambleWon','Gambled and won for 1 crystals.'),(149,459834182961463299,'2018-06-22 23:45:28','transfer','459834182961463299 gave 14 crystals to 201102155896193024.'),(150,163770616581718017,'2018-06-22 23:49:09','transfer','163770616581718017 gave 1 crystals to 262771588946984963.'),(151,163770616581718017,'2018-06-22 23:51:30','transfer','163770616581718017 gave 2 crystals to 200340393596944384.'),(152,201102155896193024,'2018-06-22 23:54:55','transfer','201102155896193024 gave 1 crystals to 459834182961463299.'),(153,459834182961463299,'2018-06-22 23:55:19','transfer','459834182961463299 gave 1 crystals to 201102155896193024.'),(154,163770616581718017,'2018-06-23 00:04:01','transfer','163770616581718017 gave 5 crystals to 274301199841361920.'),(155,163770616581718017,'2018-06-23 00:04:51','transfer','163770616581718017 gave 1 crystals to 457713779078332416.'),(156,177620785676943360,'2018-06-23 00:05:19','conversion','Converted to The Order.'),(157,297748308523483138,'2018-06-23 00:05:40','conversion','Converted to The Order.'),(158,402502051478896651,'2018-06-23 00:07:05','conversion','Converted to The Anarchy.'),(159,163770616581718017,'2018-06-23 00:07:23','gambleWon','Gambled and won for 1 crystals.'),(160,163770616581718017,'2018-06-23 00:07:39','gambleWon','Gambled and won for 2 crystals.'),(161,163770616581718017,'2018-06-23 00:07:44','gambleLost','Gambled and lost for 4 crystals.'),(162,412026575203205122,'2018-06-23 00:07:50','checkin','Checked in for 8 crystals.'),(163,200340393596944384,'2018-06-23 00:07:51','gambleLost','Gambled and lost for 1 crystals.'),(164,200340393596944384,'2018-06-23 00:07:56','gambleLost','Gambled and lost for 1 crystals.'),(165,274301199841361920,'2018-06-23 00:08:07','gambleLost','Gambled and lost for 2 crystals.'),(166,297748308523483138,'2018-06-23 00:08:24','checkin','Checked in for 9 crystals.'),(167,218498162745278474,'2018-06-23 00:09:19','checkin','Checked in for 6 crystals.'),(168,274301199841361920,'2018-06-23 00:09:23','checkin','Checked in for 7 crystals.'),(169,200340393596944384,'2018-06-23 00:09:56','checkin','Checked in for 8 crystals.'),(170,433759248800022532,'2018-06-23 00:10:06','checkin','Checked in for 9 crystals.'),(171,274301199841361920,'2018-06-23 00:10:30','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(172,454823752925052930,'2018-06-23 00:10:51','checkin','Checked in for 8 crystals.'),(173,262771588946984963,'2018-06-23 00:11:43','gambleWon','Gambled and won for 1 crystals.'),(174,297748308523483138,'2018-06-23 00:11:48','gambleWon','Gambled and won for 1 crystals.'),(175,297748308523483138,'2018-06-23 00:11:55','gambleWon','Gambled and won for 2 crystals.'),(176,297748308523483138,'2018-06-23 00:12:01','gambleWon','Gambled and won for 2 crystals.'),(177,297748308523483138,'2018-06-23 00:12:08','gambleWon','Gambled and won for 2 crystals.'),(178,262771588946984963,'2018-06-23 00:12:21','gambleLost','Gambled and lost for 2 crystals.'),(179,297748308523483138,'2018-06-23 00:12:30','gambleWon','Gambled and won for 5 crystals.'),(180,297748308523483138,'2018-06-23 00:12:43','gambleLost','Gambled and lost for 2 crystals.'),(181,297748308523483138,'2018-06-23 00:12:48','gambleWon','Gambled and won for 2 crystals.'),(182,454823752925052930,'2018-06-23 00:12:55','gambleLost','Gambled and lost for 1 crystals.'),(183,297748308523483138,'2018-06-23 00:13:18','gambleWon','Gambled and won for 1 crystals.'),(184,297748308523483138,'2018-06-23 00:13:23','gambleLost','Gambled and lost for 3 crystals.'),(185,297748308523483138,'2018-06-23 00:13:28','gambleWon','Gambled and won for 4 crystals.'),(186,297748308523483138,'2018-06-23 00:13:32','gambleWon','Gambled and won for 1 crystals.'),(187,297748308523483138,'2018-06-23 00:13:35','gambleWon','Gambled and won for 1 crystals.'),(188,297748308523483138,'2018-06-23 00:13:38','gambleWon','Gambled and won for 2 crystals.'),(189,297748308523483138,'2018-06-23 00:13:43','gambleLost','Gambled and lost for 1 crystals.'),(190,297748308523483138,'2018-06-23 00:13:47','gambleLost','Gambled and lost for 1 crystals.'),(191,297748308523483138,'2018-06-23 00:13:50','gambleLost','Gambled and lost for 5 crystals.'),(192,297748308523483138,'2018-06-23 00:13:54','gambleLost','Gambled and lost for 4 crystals.'),(193,297748308523483138,'2018-06-23 00:13:58','gambleLost','Gambled and lost for 4 crystals.'),(194,454823752925052930,'2018-06-23 00:14:07','gambleWon','Gambled and won for 2 crystals.'),(195,297748308523483138,'2018-06-23 00:14:13','gambleWon','Gambled and won for 1 crystals.'),(196,454823752925052930,'2018-06-23 00:14:16','gambleLost','Gambled and lost for 2 crystals.'),(197,297748308523483138,'2018-06-23 00:14:17','gambleWon','Gambled and won for 2 crystals.'),(198,297748308523483138,'2018-06-23 00:14:23','gambleWon','Gambled and won for 2 crystals.'),(199,297748308523483138,'2018-06-23 00:14:28','gambleWon','Gambled and won for 3 crystals.'),(200,454823752925052930,'2018-06-23 00:14:29','gambleLost','Gambled and lost for 3 crystals.'),(201,454823752925052930,'2018-06-23 00:14:39','gambleLost','Gambled and lost for 3 crystals.'),(202,454823752925052930,'2018-06-23 00:14:49','gambleLost','Gambled and lost for 1 crystals.'),(203,297748308523483138,'2018-06-23 00:15:04','gambleLost','Gambled and lost for 10 crystals.'),(204,297748308523483138,'2018-06-23 00:15:13','gambleWon','Gambled and won for 3 crystals.'),(205,218498162745278474,'2018-06-23 00:15:16','gambleWon','Gambled and won for 1 crystals.'),(206,297748308523483138,'2018-06-23 00:15:17','gambleLost','Gambled and lost for 2 crystals.'),(207,297748308523483138,'2018-06-23 00:15:21','gambleLost','Gambled and lost for 1 crystals.'),(208,297748308523483138,'2018-06-23 00:15:24','gambleWon','Gambled and won for 1 crystals.'),(209,297748308523483138,'2018-06-23 00:15:29','gambleWon','Gambled and won for 2 crystals.'),(210,297748308523483138,'2018-06-23 00:15:32','gambleLost','Gambled and lost for 2 crystals.'),(211,454823752925052930,'2018-06-23 00:15:35','gambleWon','Gambled and won for 1 crystals.'),(212,297748308523483138,'2018-06-23 00:15:36','gambleWon','Gambled and won for 1 crystals.'),(213,297748308523483138,'2018-06-23 00:15:40','gambleLost','Gambled and lost for 1 crystals.'),(214,218498162745278474,'2018-06-23 00:15:42','gambleWon','Gambled and won for 1 crystals.'),(215,297748308523483138,'2018-06-23 00:16:06','gambleWon','Gambled and won for 2 crystals.'),(216,297748308523483138,'2018-06-23 00:16:10','gambleWon','Gambled and won for 2 crystals.'),(217,297748308523483138,'2018-06-23 00:16:13','gambleLost','Gambled and lost for 4 crystals.'),(218,297748308523483138,'2018-06-23 00:16:18','gambleWon','Gambled and won for 1 crystals.'),(219,297748308523483138,'2018-06-23 00:16:22','gambleWon','Gambled and won for 2 crystals.'),(220,297748308523483138,'2018-06-23 00:16:26','gambleWon','Gambled and won for 2 crystals.'),(221,454823752925052930,'2018-06-23 00:16:31','gambleWon','Gambled and won for 1 crystals.'),(222,297748308523483138,'2018-06-23 00:16:32','gambleLost','Gambled and lost for 4 crystals.'),(223,297748308523483138,'2018-06-23 00:16:37','gambleLost','Gambled and lost for 1 crystals.'),(224,297748308523483138,'2018-06-23 00:16:41','gambleWon','Gambled and won for 1 crystals.'),(225,297748308523483138,'2018-06-23 00:16:45','gambleLost','Gambled and lost for 2 crystals.'),(226,297748308523483138,'2018-06-23 00:16:49','gambleLost','Gambled and lost for 1 crystals.'),(227,297748308523483138,'2018-06-23 00:16:53','gambleWon','Gambled and won for 1 crystals.'),(228,177620785676943360,'2018-06-23 00:16:57','checkin','Checked in for 8 crystals.'),(229,297748308523483138,'2018-06-23 00:16:58','gambleWon','Gambled and won for 2 crystals.'),(230,297748308523483138,'2018-06-23 00:17:02','gambleLost','Gambled and lost for 2 crystals.'),(231,459873273308643328,'2018-06-23 00:17:04','conversion','Converted to The Religion.'),(232,297748308523483138,'2018-06-23 00:17:07','gambleWon','Gambled and won for 1 crystals.'),(233,297748308523483138,'2018-06-23 00:17:14','gambleLost','Gambled and lost for 2 crystals.'),(234,297748308523483138,'2018-06-23 00:17:19','gambleLost','Gambled and lost for 1 crystals.'),(235,297748308523483138,'2018-06-23 00:17:23','gambleLost','Gambled and lost for 1 crystals.'),(236,297748308523483138,'2018-06-23 00:17:26','gambleLost','Gambled and lost for 1 crystals.'),(237,297748308523483138,'2018-06-23 00:17:30','gambleLost','Gambled and lost for 1 crystals.'),(238,297748308523483138,'2018-06-23 00:17:33','gambleWon','Gambled and won for 1 crystals.'),(239,297748308523483138,'2018-06-23 00:17:37','gambleLost','Gambled and lost for 2 crystals.'),(240,286105785052954626,'2018-06-23 00:17:47','checkin','Checked in for 8 crystals.'),(241,454823752925052930,'2018-06-23 00:18:00','gambleLost','Gambled and lost for 1 crystals.'),(242,286105785052954626,'2018-06-23 00:18:01','gambleLost','Gambled and lost for 1 crystals.'),(243,274301199841361920,'2018-06-23 00:18:02','gambleWon','Gambled and won for 8 crystals.'),(244,286105785052954626,'2018-06-23 00:18:11','gambleWon','Gambled and won for 2 crystals.'),(245,297748308523483138,'2018-06-23 00:18:16','gambleLost','Gambled and lost for 1 crystals.'),(246,286105785052954626,'2018-06-23 00:18:18','gambleWon','Gambled and won for 1 crystals.'),(247,297748308523483138,'2018-06-23 00:18:22','gambleLost','Gambled and lost for 1 crystals.'),(248,286105785052954626,'2018-06-23 00:18:24','gambleLost','Gambled and lost for 1 crystals.'),(249,200340393596944384,'2018-06-23 00:18:27','gambleWon','Gambled and won for 1 crystals.'),(250,297748308523483138,'2018-06-23 00:18:28','gambleLost','Gambled and lost for 1 crystals.'),(251,286105785052954626,'2018-06-23 00:18:31','gambleLost','Gambled and lost for 2 crystals.'),(252,297748308523483138,'2018-06-23 00:18:33','gambleLost','Gambled and lost for 1 crystals.'),(253,286105785052954626,'2018-06-23 00:18:45','gambleLost','Gambled and lost for 4 crystals.'),(254,433759248800022532,'2018-06-23 00:19:07','gambleLost','Gambled and lost for 2 crystals.'),(255,262771588946984963,'2018-06-23 00:19:07','checkin','Checked in for 9 crystals.'),(256,433759248800022532,'2018-06-23 00:19:13','gambleLost','Gambled and lost for 2 crystals.'),(257,433759248800022532,'2018-06-23 00:19:18','gambleLost','Gambled and lost for 4 crystals.'),(258,286105785052954626,'2018-06-23 00:19:29','gambleLost','Gambled and lost for 1 crystals.'),(259,286105785052954626,'2018-06-23 00:19:34','gambleWon','Gambled and won for 2 crystals.'),(260,433759248800022532,'2018-06-23 00:19:38','gambleWon','Gambled and won for 7 crystals.'),(261,262771588946984963,'2018-06-23 00:19:46','gambleLost','Gambled and lost for 9 crystals.'),(262,459873273308643328,'2018-06-23 00:19:54','checkin','Checked in for 5 crystals.'),(263,286105785052954626,'2018-06-23 00:19:57','gambleLost','Gambled and lost for 1 crystals.'),(264,459873273308643328,'2018-06-23 00:20:02','deposit','Deposited 5 crystals to 457312250147897366.'),(265,286105785052954626,'2018-06-23 00:20:06','gambleLost','Gambled and lost for 2 crystals.'),(266,433759248800022532,'2018-06-23 00:20:12','gambleLost','Gambled and lost for 1 crystals.'),(267,201102155896193024,'2018-06-23 00:20:20','deposit','Deposited 14 crystals to 457312250147897366.'),(268,286105785052954626,'2018-06-23 00:20:21','gambleLost','Gambled and lost for 1 crystals.'),(269,218498162745278474,'2018-06-23 00:20:28','gambleWon','Gambled and won for 4 crystals.'),(270,433759248800022532,'2018-06-23 00:20:32','gambleLost','Gambled and lost for 2 crystals.'),(271,218498162745278474,'2018-06-23 00:20:34','gambleWon','Gambled and won for 1 crystals.'),(272,218498162745278474,'2018-06-23 00:20:40','gambleLost','Gambled and lost for 1 crystals.'),(273,218498162745278474,'2018-06-23 00:20:45','gambleLost','Gambled and lost for 1 crystals.'),(274,433759248800022532,'2018-06-23 00:20:46','gambleWon','Gambled and won for 3 crystals.'),(275,218498162745278474,'2018-06-23 00:20:51','gambleLost','Gambled and lost for 6 crystals.'),(276,402502051478896651,'2018-06-23 00:21:03','checkin','Checked in for 5 crystals.'),(277,218498162745278474,'2018-06-23 00:21:04','gambleLost','Gambled and lost for 4 crystals.'),(278,433759248800022532,'2018-06-23 00:21:17','gambleLost','Gambled and lost for 1 crystals.'),(279,402502051478896651,'2018-06-23 00:21:45','gambleLost','Gambled and lost for 1 crystals.'),(280,200340393596944384,'2018-06-23 00:21:49','gambleWon','Gambled and won for 1 crystals.'),(281,402502051478896651,'2018-06-23 00:22:02','gambleWon','Gambled and won for 1 crystals.'),(282,433759248800022532,'2018-06-23 00:22:09','gambleWon','Gambled and won for 2 crystals.'),(283,402502051478896651,'2018-06-23 00:22:20','gambleLost','Gambled and lost for 1 crystals.'),(284,402502051478896651,'2018-06-23 00:22:33','gambleLost','Gambled and lost for 2 crystals.'),(285,177620785676943360,'2018-06-23 00:23:52','gambleLost','Gambled and lost for 8 crystals.'),(286,459876383431327746,'2018-06-23 00:25:56','conversion','Converted to The Religion.'),(287,459876383431327746,'2018-06-23 00:26:30','checkin','Checked in for 9 crystals.'),(288,459876383431327746,'2018-06-23 00:26:34','deposit','Deposited 9 crystals to 457312250147897366.'),(289,459879057295671296,'2018-06-23 00:37:25','conversion','Converted to The Religion.'),(290,459879057295671296,'2018-06-23 00:38:06','checkin','Checked in for 8 crystals.'),(291,459879057295671296,'2018-06-23 00:38:27','deposit','Deposited 8 crystals to 457312250147897366.'),(292,459881667104997376,'2018-06-23 00:45:03','conversion','Converted to The Religion.'),(293,459881667104997376,'2018-06-23 00:46:55','checkin','Checked in for 7 crystals.'),(294,459881667104997376,'2018-06-23 00:46:59','deposit','Deposited 7 crystals to 457312250147897366.'),(295,459883167160205313,'2018-06-23 00:50:43','conversion','Converted to The Religion.'),(296,459883167160205313,'2018-06-23 00:51:57','checkin','Checked in for 5 crystals.'),(297,459883167160205313,'2018-06-23 00:52:01','deposit','Deposited 5 crystals to 457312250147897366.'),(298,459884642192064512,'2018-06-23 01:01:07','conversion','Converted to The Religion.'),(299,459884642192064512,'2018-06-23 01:01:29','checkin','Checked in for 6 crystals.'),(300,459884642192064512,'2018-06-23 01:01:38','deposit','Deposited 6 crystals to 457312250147897366.'),(301,457300954660995114,'2018-06-23 01:07:53','deposit','Deposited 2 crystals to 454460756520337418.'),(302,218498162745278474,'2018-06-23 01:17:58','gambleWon','Gambled and won for 1 crystals.'),(303,218498162745278474,'2018-06-23 01:21:03','gambleLost','Gambled and lost for 1 crystals.'),(304,218498162745278474,'2018-06-23 01:24:19','gambleWon','Gambled and won for 1 crystals.'),(305,131968711312539648,'2018-06-23 01:27:00','conversion','Converted to The Anarchy.'),(306,131968711312539648,'2018-06-23 01:28:04','checkin','Checked in for 9 crystals.'),(307,131968711312539648,'2018-06-23 01:29:33','deposit','Deposited 9 crystals to 454460756520337418.'),(308,123,'2018-06-23 01:45:54','deposit','Deposited 2 crystals to 454460679244480512.'),(309,163770616581718017,'2018-06-23 01:51:05','attack','163770616581718017 attacked Ravager#1.'),(310,163770616581718017,'2018-06-23 01:51:45','attack','163770616581718017 attacked Ravager#1.'),(311,200340393596944384,'2018-06-23 01:52:09','attack','200340393596944384 attacked Ravager#1.'),(312,123,'2018-06-23 01:54:47','deposit','Deposited 2 crystals to 454460679244480512.'),(313,163770616581718017,'2018-06-23 01:55:33','attack','163770616581718017 attacked Ravager#1.'),(314,262771588946984963,'2018-06-23 01:56:34','attack','262771588946984963 attacked Ravager#1.'),(315,262771588946984963,'2018-06-23 01:58:03','attack','262771588946984963 attacked Ravager#1.'),(316,163770616581718017,'2018-06-23 01:58:05','attack','163770616581718017 attacked Ravager#1.'),(317,200340393596944384,'2018-06-23 01:59:17','attack','200340393596944384 attacked Ravager#1.'),(318,249535509280456705,'2018-06-23 02:03:16','conversion','Converted to The Anarchy.'),(319,262771588946984963,'2018-06-23 02:03:18','attack','262771588946984963 attacked Ravager#1.'),(320,163770616581718017,'2018-06-23 02:03:19','attack','163770616581718017 attacked Ravager#1.'),(321,262771588946984963,'2018-06-23 02:03:29','attack','262771588946984963 attacked Ravager#1.'),(322,262771588946984963,'2018-06-23 02:03:37','attack','262771588946984963 attacked Ravager#1.'),(323,262771588946984963,'2018-06-23 02:03:40','attack','262771588946984963 attacked Ravager#1.'),(324,262771588946984963,'2018-06-23 02:03:42','attack','262771588946984963 attacked Ravager#1.'),(325,262771588946984963,'2018-06-23 02:03:45','attack','262771588946984963 attacked Ravager#1.'),(326,262771588946984963,'2018-06-23 02:03:47','attack','262771588946984963 attacked Ravager#1.'),(327,262771588946984963,'2018-06-23 02:03:49','attack','262771588946984963 attacked Ravager#1.'),(328,262771588946984963,'2018-06-23 02:03:51','attack','262771588946984963 attacked Ravager#1.'),(329,222309309235724289,'2018-06-23 02:03:52','conversion','Converted to The Anarchy.'),(330,262771588946984963,'2018-06-23 02:03:59','attack','262771588946984963 attacked Ravager#1.'),(331,249535509280456705,'2018-06-23 02:07:41','checkin','Checked in for 5 crystals.'),(332,249535509280456705,'2018-06-23 02:13:16','deposit','Deposited 5 crystals to 454460756520337418.'),(333,218498162745278474,'2018-06-23 02:34:21','deposit','Deposited 2 crystals to 454460756520337418.'),(334,163770616581718017,'2018-06-23 03:47:16','checkin','Checked in for 9 crystals.'),(335,282656257716912139,'2018-06-23 04:32:43','checkin','Checked in for 6 crystals.'),(336,282656257716912139,'2018-06-23 04:37:25','deposit','Deposited 8 crystals to 454460679244480512.'),(337,204933415252787202,'2018-06-23 06:45:26','checkin','Checked in for 5 crystals.'),(338,457300954660995114,'2018-06-23 10:01:13','deposit','Deposited 1 crystals to 454460756520337418.'),(339,211232684209340426,'2018-06-23 12:24:57','checkin','Checked in for 6 crystals.'),(340,222309309235724289,'2018-06-23 12:52:23','checkin','Checked in for 9 crystals.'),(341,229524509047128074,'2018-06-23 15:02:11','checkin','Checked in for 4 crystals.'),(342,185698541052755968,'2018-06-23 16:24:49','conversion','Converted to The Anarchy.'),(343,274301199841361920,'2018-06-23 16:25:10','deposit','Deposited 17 crystals to 454460756520337418.'),(344,185698541052755968,'2018-06-23 16:25:13','checkin','Checked in for 7 crystals.'),(345,200340393596944384,'2018-06-23 16:26:04','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(346,200340393596944384,'2018-06-23 16:26:26','transfer','200340393596944384 gave 11 crystals to 200340393596944384.'),(347,200340393596944384,'2018-06-23 16:26:47','transfer','200340393596944384 gave 10 crystals to 200340393596944384.'),(348,200340393596944384,'2018-06-23 16:37:58','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(349,200340393596944384,'2018-06-23 16:38:00','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(350,200340393596944384,'2018-06-23 16:38:01','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(351,200340393596944384,'2018-06-23 16:38:02','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(352,200340393596944384,'2018-06-23 16:38:03','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(353,200340393596944384,'2018-06-23 16:38:04','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(354,200340393596944384,'2018-06-23 16:38:05','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(355,200340393596944384,'2018-06-23 16:38:06','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(356,200340393596944384,'2018-06-23 16:38:07','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(357,200340393596944384,'2018-06-23 16:38:08','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(358,200340393596944384,'2018-06-23 16:39:35','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(359,424563962303086594,'2018-06-23 18:21:49','conversion','Converted to The Order.'),(360,424563962303086594,'2018-06-23 18:43:27','checkin','Checked in for 8 crystals.'),(361,424563962303086594,'2018-06-23 18:50:19','deposit','Deposited 1 crystals to 454460679244480512.'),(362,457300954660995114,'2018-06-23 23:58:31','checkin','Checked in for 9 crystals.'),(363,131968711312539648,'2018-06-24 00:08:31','checkin','Checked in for 8 crystals.'),(364,200340393596944384,'2018-06-24 00:15:57','checkin','Checked in for 4 crystals.'),(365,433759248800022532,'2018-06-24 00:16:21','checkin','Checked in for 5 crystals.'),(366,454823752925052930,'2018-06-24 00:18:04','checkin','Checked in for 9 crystals.'),(367,274301199841361920,'2018-06-24 00:21:54','checkin','Checked in for 7 crystals.'),(368,218498162745278474,'2018-06-24 01:25:32','checkin','Checked in for 9 crystals.'),(369,163770616581718017,'2018-06-24 01:40:03','attack','163770616581718017 attacked Ravager#2.'),(370,200340393596944384,'2018-06-24 01:43:43','attack','200340393596944384 attacked Ravager#2.'),(371,200340393596944384,'2018-06-24 01:43:45','attack','200340393596944384 attacked Ravager#2.'),(372,200340393596944384,'2018-06-24 01:43:51','attack','200340393596944384 attacked Ravager#2.'),(373,200340393596944384,'2018-06-24 01:43:53','attack','200340393596944384 attacked Ravager#2.'),(374,200340393596944384,'2018-06-24 01:43:54','attack','200340393596944384 attacked Ravager#2.'),(375,200340393596944384,'2018-06-24 01:43:56','attack','200340393596944384 attacked Ravager#2.'),(376,200340393596944384,'2018-06-24 01:43:57','attack','200340393596944384 attacked Ravager#2.'),(377,200340393596944384,'2018-06-24 01:43:58','attack','200340393596944384 attacked Ravager#2.'),(378,200340393596944384,'2018-06-24 01:44:00','attack','200340393596944384 attacked Ravager#2.'),(379,200340393596944384,'2018-06-24 01:44:01','attack','200340393596944384 attacked Ravager#2.'),(380,200340393596944384,'2018-06-24 01:44:02','attack','200340393596944384 attacked Ravager#2.'),(381,200340393596944384,'2018-06-24 01:44:04','attack','200340393596944384 attacked Ravager#2.'),(382,200340393596944384,'2018-06-24 01:44:09','attack','200340393596944384 attacked Ravager#2.'),(383,200340393596944384,'2018-06-24 01:44:14','attack','200340393596944384 attacked Ravager#2.'),(384,200340393596944384,'2018-06-24 01:44:20','attack','200340393596944384 attacked Ravager#2.'),(385,200340393596944384,'2018-06-24 01:44:22','attack','200340393596944384 attacked Ravager#2.'),(386,200340393596944384,'2018-06-24 01:44:23','attack','200340393596944384 attacked Ravager#2.'),(387,200340393596944384,'2018-06-24 01:44:25','attack','200340393596944384 attacked Ravager#2.'),(388,200340393596944384,'2018-06-24 01:44:26','attack','200340393596944384 attacked Ravager#2.'),(389,286105785052954626,'2018-06-24 01:44:28','attack','286105785052954626 attacked Ravager#2.'),(390,200340393596944384,'2018-06-24 01:44:31','attack','200340393596944384 attacked Ravager#2.'),(391,200340393596944384,'2018-06-24 01:44:32','attack','200340393596944384 attacked Ravager#2.'),(392,200340393596944384,'2018-06-24 01:44:34','attack','200340393596944384 attacked Ravager#2.'),(393,200340393596944384,'2018-06-24 01:44:35','attack','200340393596944384 attacked Ravager#2.'),(394,200340393596944384,'2018-06-24 01:44:37','attack','200340393596944384 attacked Ravager#2.'),(395,200340393596944384,'2018-06-24 01:44:38','attack','200340393596944384 attacked Ravager#2.'),(396,200340393596944384,'2018-06-24 01:44:40','attack','200340393596944384 attacked Ravager#2.'),(397,200340393596944384,'2018-06-24 01:44:41','attack','200340393596944384 attacked Ravager#2.'),(398,200340393596944384,'2018-06-24 01:44:43','attack','200340393596944384 attacked Ravager#2.'),(399,200340393596944384,'2018-06-24 01:44:44','attack','200340393596944384 attacked Ravager#2.'),(400,200340393596944384,'2018-06-24 01:44:45','attack','200340393596944384 attacked Ravager#2.'),(401,200340393596944384,'2018-06-24 01:44:47','attack','200340393596944384 attacked Ravager#2.'),(402,200340393596944384,'2018-06-24 01:44:48','attack','200340393596944384 attacked Ravager#2.'),(403,200340393596944384,'2018-06-24 01:44:50','attack','200340393596944384 attacked Ravager#2.'),(404,200340393596944384,'2018-06-24 01:44:51','attack','200340393596944384 attacked Ravager#2.'),(405,200340393596944384,'2018-06-24 01:44:52','attack','200340393596944384 attacked Ravager#2.'),(406,200340393596944384,'2018-06-24 01:45:01','attack','200340393596944384 attacked Ravager#2.'),(407,200340393596944384,'2018-06-24 01:45:03','attack','200340393596944384 attacked Ravager#2.'),(408,200340393596944384,'2018-06-24 01:45:04','attack','200340393596944384 attacked Ravager#2.'),(409,200340393596944384,'2018-06-24 01:45:06','attack','200340393596944384 attacked Ravager#2.'),(410,200340393596944384,'2018-06-24 01:45:09','attack','200340393596944384 attacked Ravager#2.'),(411,286105785052954626,'2018-06-24 01:45:45','checkin','Checked in for 7 crystals.'),(412,200340393596944384,'2018-06-24 01:48:49','attack','200340393596944384 attacked Ravager#3.'),(413,274301199841361920,'2018-06-24 01:48:50','attack','274301199841361920 attacked Ravager#3.'),(414,200340393596944384,'2018-06-24 01:48:53','attack','200340393596944384 attacked Ravager#3.'),(415,200340393596944384,'2018-06-24 01:48:54','attack','200340393596944384 attacked Ravager#3.'),(416,200340393596944384,'2018-06-24 01:48:56','attack','200340393596944384 attacked Ravager#3.'),(417,200340393596944384,'2018-06-24 01:48:57','attack','200340393596944384 attacked Ravager#3.'),(418,200340393596944384,'2018-06-24 01:48:59','attack','200340393596944384 attacked Ravager#3.'),(419,274301199841361920,'2018-06-24 01:49:00','attack','274301199841361920 attacked Ravager#3.'),(420,200340393596944384,'2018-06-24 01:49:01','attack','200340393596944384 attacked Ravager#3.'),(421,200340393596944384,'2018-06-24 01:49:03','attack','200340393596944384 attacked Ravager#3.'),(422,200340393596944384,'2018-06-24 01:49:04','attack','200340393596944384 attacked Ravager#3.'),(423,286105785052954626,'2018-06-24 01:49:06','attack','286105785052954626 attacked Ravager#3.'),(424,286105785052954626,'2018-06-24 01:49:07','attack','286105785052954626 attacked Ravager#3.'),(425,200340393596944384,'2018-06-24 01:49:08','attack','200340393596944384 attacked Ravager#3.'),(426,200340393596944384,'2018-06-24 01:49:10','attack','200340393596944384 attacked Ravager#3.'),(427,200340393596944384,'2018-06-24 01:49:11','attack','200340393596944384 attacked Ravager#3.'),(428,200340393596944384,'2018-06-24 01:49:12','attack','200340393596944384 attacked Ravager#3.'),(429,200340393596944384,'2018-06-24 01:49:14','attack','200340393596944384 attacked Ravager#3.'),(430,200340393596944384,'2018-06-24 01:49:15','attack','200340393596944384 attacked Ravager#3.'),(431,274301199841361920,'2018-06-24 01:53:58','attack','274301199841361920 attacked Ravager#4.'),(432,274301199841361920,'2018-06-24 01:53:59','attack','274301199841361920 attacked Ravager#4.'),(433,274301199841361920,'2018-06-24 01:54:00','attack','274301199841361920 attacked Ravager#4.'),(434,274301199841361920,'2018-06-24 01:54:02','attack','274301199841361920 attacked Ravager#4.'),(435,274301199841361920,'2018-06-24 01:54:03','attack','274301199841361920 attacked Ravager#4.'),(436,274301199841361920,'2018-06-24 01:54:05','attack','274301199841361920 attacked Ravager#4.'),(437,274301199841361920,'2018-06-24 01:54:07','attack','274301199841361920 attacked Ravager#4.'),(438,274301199841361920,'2018-06-24 01:54:08','attack','274301199841361920 attacked Ravager#4.'),(439,457300954660995114,'2018-06-24 01:54:09','attack','457300954660995114 attacked Ravager#4.'),(440,200340393596944384,'2018-06-24 01:54:28','attack','200340393596944384 attacked Ravager#4.'),(441,200340393596944384,'2018-06-24 01:54:30','attack','200340393596944384 attacked Ravager#4.'),(442,200340393596944384,'2018-06-24 01:54:31','attack','200340393596944384 attacked Ravager#4.'),(443,200340393596944384,'2018-06-24 01:54:32','attack','200340393596944384 attacked Ravager#4.'),(444,163770616581718017,'2018-06-24 01:58:35','checkin','Checked in for 7 crystals.'),(445,200340393596944384,'2018-06-24 01:59:23','attack','200340393596944384 attacked Ravager#5.'),(446,200340393596944384,'2018-06-24 01:59:26','attack','200340393596944384 attacked Ravager#5.'),(447,274301199841361920,'2018-06-24 01:59:29','attack','274301199841361920 attacked Ravager#5.'),(448,200340393596944384,'2018-06-24 01:59:30','attack','200340393596944384 attacked Ravager#5.'),(449,200340393596944384,'2018-06-24 01:59:32','attack','200340393596944384 attacked Ravager#5.'),(450,200340393596944384,'2018-06-24 01:59:33','attack','200340393596944384 attacked Ravager#5.'),(451,200340393596944384,'2018-06-24 01:59:34','attack','200340393596944384 attacked Ravager#5.'),(452,274301199841361920,'2018-06-24 01:59:37','attack','274301199841361920 attacked Ravager#5.'),(453,200340393596944384,'2018-06-24 01:59:38','attack','200340393596944384 attacked Ravager#5.'),(454,274301199841361920,'2018-06-24 01:59:40','attack','274301199841361920 attacked Ravager#5.'),(455,218498162745278474,'2018-06-24 01:59:41','attack','218498162745278474 attacked Ravager#5.'),(456,200340393596944384,'2018-06-24 01:59:42','attack','200340393596944384 attacked Ravager#5.'),(457,274301199841361920,'2018-06-24 02:10:17','attack','274301199841361920 attacked Ravager#6.'),(458,274301199841361920,'2018-06-24 02:10:18','attack','274301199841361920 attacked Ravager#6.'),(459,274301199841361920,'2018-06-24 02:10:19','attack','274301199841361920 attacked Ravager#6.'),(460,274301199841361920,'2018-06-24 02:10:21','attack','274301199841361920 attacked Ravager#6.'),(461,274301199841361920,'2018-06-24 02:10:22','attack','274301199841361920 attacked Ravager#6.'),(462,274301199841361920,'2018-06-24 02:11:56','attack','274301199841361920 attacked Ravager#6.'),(463,274301199841361920,'2018-06-24 02:11:58','attack','274301199841361920 attacked Ravager#6.'),(464,274301199841361920,'2018-06-24 02:12:01','attack','274301199841361920 attacked Ravager#6.'),(465,274301199841361920,'2018-06-24 02:12:03','attack','274301199841361920 attacked Ravager#6.'),(466,274301199841361920,'2018-06-24 02:12:06','attack','274301199841361920 attacked Ravager#6.'),(467,274301199841361920,'2018-06-24 02:12:08','attack','274301199841361920 attacked Ravager#6.'),(468,274301199841361920,'2018-06-24 02:12:11','attack','274301199841361920 attacked Ravager#6.'),(469,274301199841361920,'2018-06-24 02:12:13','attack','274301199841361920 attacked Ravager#6.'),(470,274301199841361920,'2018-06-24 02:12:15','attack','274301199841361920 attacked Ravager#6.'),(471,274301199841361920,'2018-06-24 02:12:17','attack','274301199841361920 attacked Ravager#6.'),(472,274301199841361920,'2018-06-24 02:12:20','attack','274301199841361920 attacked Ravager#6.'),(473,274301199841361920,'2018-06-24 02:12:22','attack','274301199841361920 attacked Ravager#6.'),(474,274301199841361920,'2018-06-24 02:12:25','attack','274301199841361920 attacked Ravager#6.'),(475,274301199841361920,'2018-06-24 02:12:27','attack','274301199841361920 attacked Ravager#6.'),(476,274301199841361920,'2018-06-24 02:12:30','attack','274301199841361920 attacked Ravager#6.'),(477,274301199841361920,'2018-06-24 02:12:32','attack','274301199841361920 attacked Ravager#6.'),(478,274301199841361920,'2018-06-24 02:12:34','attack','274301199841361920 attacked Ravager#6.'),(479,274301199841361920,'2018-06-24 02:12:36','attack','274301199841361920 attacked Ravager#6.'),(480,274301199841361920,'2018-06-24 02:12:39','attack','274301199841361920 attacked Ravager#6.'),(481,457300954660995114,'2018-06-24 02:12:40','attack','457300954660995114 attacked Ravager#6.'),(482,274301199841361920,'2018-06-24 02:14:36','attack','274301199841361920 attacked Ravager#7.'),(483,274301199841361920,'2018-06-24 02:14:43','attack','274301199841361920 attacked Ravager#7.'),(484,274301199841361920,'2018-06-24 02:14:45','attack','274301199841361920 attacked Ravager#7.'),(485,274301199841361920,'2018-06-24 02:14:47','attack','274301199841361920 attacked Ravager#7.'),(486,274301199841361920,'2018-06-24 02:14:49','attack','274301199841361920 attacked Ravager#7.'),(487,274301199841361920,'2018-06-24 02:14:52','attack','274301199841361920 attacked Ravager#7.'),(488,274301199841361920,'2018-06-24 02:14:54','attack','274301199841361920 attacked Ravager#7.'),(489,274301199841361920,'2018-06-24 02:14:56','attack','274301199841361920 attacked Ravager#7.'),(490,274301199841361920,'2018-06-24 02:14:58','attack','274301199841361920 attacked Ravager#7.'),(491,274301199841361920,'2018-06-24 02:15:01','attack','274301199841361920 attacked Ravager#7.'),(492,274301199841361920,'2018-06-24 02:15:03','attack','274301199841361920 attacked Ravager#7.'),(493,274301199841361920,'2018-06-24 02:15:06','attack','274301199841361920 attacked Ravager#7.'),(494,163770616581718017,'2018-06-24 02:24:23','attack','163770616581718017 attacked Ravager#1.'),(495,200340393596944384,'2018-06-24 02:29:48','attack','200340393596944384 attacked Ravager#8.'),(496,200340393596944384,'2018-06-24 02:29:51','attack','200340393596944384 attacked Ravager#8.'),(497,200340393596944384,'2018-06-24 02:29:55','attack','200340393596944384 attacked Ravager#8.'),(498,200340393596944384,'2018-06-24 02:29:59','attack','200340393596944384 attacked Ravager#8.'),(499,163770616581718017,'2018-06-24 02:29:59','claim','163770616581718017 claimed 5 crystals from a Ravager.'),(500,200340393596944384,'2018-06-24 02:30:05','attack','200340393596944384 attacked Ravager#8.'),(501,200340393596944384,'2018-06-24 02:30:08','attack','200340393596944384 attacked Ravager#8.'),(502,200340393596944384,'2018-06-24 02:30:11','attack','200340393596944384 attacked Ravager#8.'),(503,200340393596944384,'2018-06-24 02:30:20','attack','200340393596944384 attacked Ravager#8.'),(504,200340393596944384,'2018-06-24 02:30:25','attack','200340393596944384 attacked Ravager#8.'),(505,200340393596944384,'2018-06-24 02:30:27','attack','200340393596944384 attacked Ravager#8.'),(506,200340393596944384,'2018-06-24 02:30:28','attack','200340393596944384 attacked Ravager#8.'),(507,200340393596944384,'2018-06-24 02:30:30','attack','200340393596944384 attacked Ravager#8.'),(508,200340393596944384,'2018-06-24 02:30:32','attack','200340393596944384 attacked Ravager#8.'),(509,200340393596944384,'2018-06-24 02:30:33','attack','200340393596944384 attacked Ravager#8.'),(510,200340393596944384,'2018-06-24 02:30:36','attack','200340393596944384 attacked Ravager#8.'),(511,200340393596944384,'2018-06-24 02:30:37','attack','200340393596944384 attacked Ravager#8.'),(512,200340393596944384,'2018-06-24 02:30:38','attack','200340393596944384 attacked Ravager#8.'),(513,200340393596944384,'2018-06-24 02:30:40','attack','200340393596944384 attacked Ravager#8.'),(514,200340393596944384,'2018-06-24 02:30:42','attack','200340393596944384 attacked Ravager#8.'),(515,200340393596944384,'2018-06-24 02:30:44','attack','200340393596944384 attacked Ravager#8.'),(516,200340393596944384,'2018-06-24 02:30:45','attack','200340393596944384 attacked Ravager#8.'),(517,200340393596944384,'2018-06-24 02:30:47','attack','200340393596944384 attacked Ravager#8.'),(518,163770616581718017,'2018-06-24 02:30:56','claim','163770616581718017 claimed 5 crystals from a Ravager.'),(519,201102155896193024,'2018-06-24 02:33:42','checkin','Checked in for 9 crystals.'),(520,201102155896193024,'2018-06-24 02:33:53','deposit','Deposited 9 crystals to 457312250147897366.'),(521,163770616581718017,'2018-06-24 02:37:30','attack','163770616581718017 attacked Ravager#1.'),(522,163770616581718017,'2018-06-24 02:41:03','claim','163770616581718017 claimed 5 crystals from a Ravager.'),(523,163770616581718017,'2018-06-24 02:41:20','claim','163770616581718017 claimed 5 crystals from a Ravager.'),(524,200340393596944384,'2018-06-24 02:45:30','claim','200340393596944384 claimed 5 crystals from a Ravager.'),(525,218498162745278474,'2018-06-24 02:45:56','claim','218498162745278474 claimed 5 crystals from a Ravager.'),(526,218498162745278474,'2018-06-24 02:49:12','attack','218498162745278474 attacked Ravager#9.'),(527,457300954660995114,'2018-06-24 02:49:21','attack','457300954660995114 attacked Ravager#9.'),(528,218498162745278474,'2018-06-24 02:49:25','attack','218498162745278474 attacked Ravager#9.'),(529,457300954660995114,'2018-06-24 02:49:35','attack','457300954660995114 attacked Ravager#9.'),(530,200340393596944384,'2018-06-24 02:49:36','attack','200340393596944384 attacked Ravager#9.'),(531,200340393596944384,'2018-06-24 02:49:38','attack','200340393596944384 attacked Ravager#9.'),(532,200340393596944384,'2018-06-24 02:49:40','attack','200340393596944384 attacked Ravager#9.'),(533,200340393596944384,'2018-06-24 02:49:41','attack','200340393596944384 attacked Ravager#9.'),(534,200340393596944384,'2018-06-24 02:49:42','attack','200340393596944384 attacked Ravager#9.'),(535,218498162745278474,'2018-06-24 02:49:44','attack','218498162745278474 attacked Ravager#9.'),(536,200340393596944384,'2018-06-24 02:49:48','attack','200340393596944384 attacked Ravager#9.'),(537,200340393596944384,'2018-06-24 02:49:50','attack','200340393596944384 attacked Ravager#9.'),(538,200340393596944384,'2018-06-24 02:49:51','attack','200340393596944384 attacked Ravager#9.'),(539,200340393596944384,'2018-06-24 02:49:52','attack','200340393596944384 attacked Ravager#9.'),(540,200340393596944384,'2018-06-24 02:49:54','attack','200340393596944384 attacked Ravager#9.'),(541,218498162745278474,'2018-06-24 02:50:09','attack','218498162745278474 attacked Ravager#9.'),(542,163770616581718017,'2018-06-24 02:55:55','attack','163770616581718017 attacked Ravager#9.'),(543,218498162745278474,'2018-06-24 02:56:14','claim','218498162745278474 claimed 5 crystals from a Ravager.'),(544,274301199841361920,'2018-06-24 02:57:06','claim','274301199841361920 claimed 5 crystals from a Ravager.'),(545,200340393596944384,'2018-06-24 03:18:50','attack','200340393596944384 attacked Ravager#10.'),(546,200340393596944384,'2018-06-24 03:18:55','attack','200340393596944384 attacked Ravager#10.'),(547,200340393596944384,'2018-06-24 03:18:57','attack','200340393596944384 attacked Ravager#10.'),(548,200340393596944384,'2018-06-24 03:18:58','attack','200340393596944384 attacked Ravager#10.'),(549,200340393596944384,'2018-06-24 03:19:00','attack','200340393596944384 attacked Ravager#10.'),(550,200340393596944384,'2018-06-24 03:19:01','attack','200340393596944384 attacked Ravager#10.'),(551,200340393596944384,'2018-06-24 03:19:02','attack','200340393596944384 attacked Ravager#10.'),(552,457300954660995114,'2018-06-24 03:19:04','attack','457300954660995114 attacked Ravager#10.'),(553,200340393596944384,'2018-06-24 03:19:05','attack','200340393596944384 attacked Ravager#10.'),(554,200340393596944384,'2018-06-24 03:19:06','attack','200340393596944384 attacked Ravager#10.'),(555,200340393596944384,'2018-06-24 03:19:09','attack','200340393596944384 attacked Ravager#10.'),(556,200340393596944384,'2018-06-24 03:19:11','attack','200340393596944384 attacked Ravager#10.'),(557,200340393596944384,'2018-06-24 03:19:12','attack','200340393596944384 attacked Ravager#10.'),(558,200340393596944384,'2018-06-24 03:19:22','claim','200340393596944384 claimed 7 crystals from a Ravager.'),(559,200340393596944384,'2018-06-24 03:20:13','transfer','200340393596944384 gave 4 crystals to 457300954660995114.'),(560,457300954660995114,'2018-06-24 03:22:39','deposit','Deposited 3 crystals to 454460756520337418.'),(561,201102155896193024,'2018-06-24 03:29:03','attack','201102155896193024 attacked Ravager#11.'),(562,201102155896193024,'2018-06-24 03:29:26','attack','201102155896193024 attacked Ravager#11.'),(563,218498162745278474,'2018-06-24 03:31:29','attack','218498162745278474 attacked Ravager#11.'),(564,218498162745278474,'2018-06-24 03:31:39','attack','218498162745278474 attacked Ravager#11.'),(565,218498162745278474,'2018-06-24 03:31:48','attack','218498162745278474 attacked Ravager#11.'),(566,201102155896193024,'2018-06-24 03:31:51','attack','201102155896193024 attacked Ravager#11.'),(567,201102155896193024,'2018-06-24 03:31:54','attack','201102155896193024 attacked Ravager#11.'),(568,218498162745278474,'2018-06-24 03:31:56','attack','218498162745278474 attacked Ravager#11.'),(569,218498162745278474,'2018-06-24 03:32:03','attack','218498162745278474 attacked Ravager#11.'),(570,218498162745278474,'2018-06-24 03:32:08','attack','218498162745278474 attacked Ravager#11.'),(571,218498162745278474,'2018-06-24 03:32:18','attack','218498162745278474 attacked Ravager#11.'),(572,201102155896193024,'2018-06-24 03:32:19','attack','201102155896193024 attacked Ravager#11.'),(573,218498162745278474,'2018-06-24 03:32:29','attack','218498162745278474 attacked Ravager#11.'),(574,200340393596944384,'2018-06-24 03:32:30','attack','200340393596944384 attacked Ravager#11.'),(575,200340393596944384,'2018-06-24 03:32:37','claim','200340393596944384 claimed 19 crystals from a Ravager.'),(576,200340393596944384,'2018-06-24 03:33:10','transfer','200340393596944384 gave 10 crystals to 218498162745278474.'),(577,334750493085794304,'2018-06-24 03:37:02','conversion','Converted to The Religion.'),(578,236304169533833216,'2018-06-24 03:39:25','conversion','Converted to The Religion.'),(579,236304169533833216,'2018-06-24 03:42:35','checkin','Checked in for 4 crystals.'),(580,201102155896193024,'2018-06-24 03:48:53','attack','201102155896193024 attacked Ravager#12.'),(581,218498162745278474,'2018-06-24 03:48:57','attack','218498162745278474 attacked Ravager#12.'),(582,201102155896193024,'2018-06-24 03:48:58','attack','201102155896193024 attacked Ravager#12.'),(583,201102155896193024,'2018-06-24 03:49:00','attack','201102155896193024 attacked Ravager#12.'),(584,218498162745278474,'2018-06-24 03:49:02','attack','218498162745278474 attacked Ravager#12.'),(585,201102155896193024,'2018-06-24 03:49:06','attack','201102155896193024 attacked Ravager#12.'),(586,200340393596944384,'2018-06-24 03:49:07','attack','200340393596944384 attacked Ravager#12.'),(587,218498162745278474,'2018-06-24 03:49:08','attack','218498162745278474 attacked Ravager#12.'),(588,334750493085794304,'2018-06-24 03:49:14','attack','334750493085794304 attacked Ravager#12.'),(589,334750493085794304,'2018-06-24 03:49:16','attack','334750493085794304 attacked Ravager#12.'),(590,334750493085794304,'2018-06-24 03:49:19','attack','334750493085794304 attacked Ravager#12.'),(591,334750493085794304,'2018-06-24 03:49:21','attack','334750493085794304 attacked Ravager#12.'),(592,334750493085794304,'2018-06-24 03:49:24','attack','334750493085794304 attacked Ravager#12.'),(593,218498162745278474,'2018-06-24 03:49:26','attack','218498162745278474 attacked Ravager#12.'),(594,218498162745278474,'2018-06-24 03:49:37','attack','218498162745278474 attacked Ravager#12.'),(595,218498162745278474,'2018-06-24 03:49:51','attack','218498162745278474 attacked Ravager#12.'),(596,201102155896193024,'2018-06-24 03:49:56','claim','201102155896193024 claimed 10 crystals from a Ravager.'),(597,201102155896193024,'2018-06-24 03:50:05','claim','201102155896193024 claimed 6 crystals from a Ravager.'),(598,201102155896193024,'2018-06-24 03:52:35','deposit','Deposited 16 crystals to 457312250147897366.'),(599,218498162745278474,'2018-06-24 03:59:05','attack','218498162745278474 attacked Ravager#13.'),(600,218498162745278474,'2018-06-24 03:59:12','attack','218498162745278474 attacked Ravager#13.'),(601,218498162745278474,'2018-06-24 03:59:17','attack','218498162745278474 attacked Ravager#13.'),(602,218498162745278474,'2018-06-24 03:59:22','attack','218498162745278474 attacked Ravager#13.'),(603,201102155896193024,'2018-06-24 03:59:24','attack','201102155896193024 attacked Ravager#13.'),(604,201102155896193024,'2018-06-24 03:59:27','attack','201102155896193024 attacked Ravager#13.'),(605,218498162745278474,'2018-06-24 03:59:28','attack','218498162745278474 attacked Ravager#13.'),(606,201102155896193024,'2018-06-24 03:59:30','attack','201102155896193024 attacked Ravager#13.'),(607,218498162745278474,'2018-06-24 03:59:33','attack','218498162745278474 attacked Ravager#13.'),(608,201102155896193024,'2018-06-24 03:59:34','attack','201102155896193024 attacked Ravager#13.'),(609,201102155896193024,'2018-06-24 03:59:37','attack','201102155896193024 attacked Ravager#13.'),(610,201102155896193024,'2018-06-24 03:59:39','attack','201102155896193024 attacked Ravager#13.'),(611,201102155896193024,'2018-06-24 03:59:42','attack','201102155896193024 attacked Ravager#13.'),(612,200340393596944384,'2018-06-24 03:59:43','attack','200340393596944384 attacked Ravager#13.'),(613,201102155896193024,'2018-06-24 03:59:46','attack','201102155896193024 attacked Ravager#13.'),(614,201102155896193024,'2018-06-24 03:59:49','attack','201102155896193024 attacked Ravager#13.'),(615,200340393596944384,'2018-06-24 03:59:51','attack','200340393596944384 attacked Ravager#13.'),(616,201102155896193024,'2018-06-24 03:59:52','attack','201102155896193024 attacked Ravager#13.'),(617,200340393596944384,'2018-06-24 03:59:54','attack','200340393596944384 attacked Ravager#13.'),(618,200340393596944384,'2018-06-24 03:59:55','attack','200340393596944384 attacked Ravager#13.'),(619,201102155896193024,'2018-06-24 03:59:56','attack','201102155896193024 attacked Ravager#13.'),(620,218498162745278474,'2018-06-24 03:59:58','attack','218498162745278474 attacked Ravager#13.'),(621,200340393596944384,'2018-06-24 03:59:59','attack','200340393596944384 attacked Ravager#13.'),(622,201102155896193024,'2018-06-24 04:00:48','claim','201102155896193024 claimed 10 crystals from a Ravager.'),(623,200340393596944384,'2018-06-24 04:00:50','claim','200340393596944384 claimed 5 crystals from a Ravager.'),(624,201102155896193024,'2018-06-24 04:02:04','deposit','Deposited 10 crystals to 457312250147897366.'),(625,218498162745278474,'2018-06-24 04:08:52','attack','218498162745278474 attacked Ravager#14.'),(626,457300954660995114,'2018-06-24 04:08:53','attack','457300954660995114 attacked Ravager#14.'),(627,457300954660995114,'2018-06-24 04:08:57','attack','457300954660995114 attacked Ravager#14.'),(628,200340393596944384,'2018-06-24 04:08:57','attack','200340393596944384 attacked Ravager#14.'),(629,201102155896193024,'2018-06-24 04:08:58','attack','201102155896193024 attacked Ravager#14.'),(630,218498162745278474,'2018-06-24 04:09:00','attack','218498162745278474 attacked Ravager#14.'),(631,200340393596944384,'2018-06-24 04:09:00','attack','200340393596944384 attacked Ravager#14.'),(632,457300954660995114,'2018-06-24 04:09:02','attack','457300954660995114 attacked Ravager#14.'),(633,200340393596944384,'2018-06-24 04:09:08','attack','200340393596944384 attacked Ravager#14.'),(634,457300954660995114,'2018-06-24 04:09:09','attack','457300954660995114 attacked Ravager#14.'),(635,200340393596944384,'2018-06-24 04:09:14','attack','200340393596944384 attacked Ravager#14.'),(636,200340393596944384,'2018-06-24 04:09:17','attack','200340393596944384 attacked Ravager#14.'),(637,457300954660995114,'2018-06-24 04:09:18','attack','457300954660995114 attacked Ravager#14.'),(638,200340393596944384,'2018-06-24 04:09:18','attack','200340393596944384 attacked Ravager#14.'),(639,200340393596944384,'2018-06-24 04:09:21','attack','200340393596944384 attacked Ravager#14.'),(640,457300954660995114,'2018-06-24 04:09:22','attack','457300954660995114 attacked Ravager#14.'),(641,200340393596944384,'2018-06-24 04:09:23','attack','200340393596944384 attacked Ravager#14.'),(642,200340393596944384,'2018-06-24 04:09:24','attack','200340393596944384 attacked Ravager#14.'),(643,218498162745278474,'2018-06-24 04:09:26','attack','218498162745278474 attacked Ravager#14.'),(644,200340393596944384,'2018-06-24 04:09:26','attack','200340393596944384 attacked Ravager#14.'),(645,457300954660995114,'2018-06-24 04:09:28','attack','457300954660995114 attacked Ravager#14.'),(646,200340393596944384,'2018-06-24 04:09:31','attack','200340393596944384 attacked Ravager#14.'),(647,200340393596944384,'2018-06-24 04:09:31','attack','200340393596944384 attacked Ravager#14.'),(648,200340393596944384,'2018-06-24 04:09:32','attack','200340393596944384 attacked Ravager#14.'),(649,200340393596944384,'2018-06-24 04:09:32','attack','200340393596944384 attacked Ravager#14.'),(650,200340393596944384,'2018-06-24 04:09:32','attack','200340393596944384 attacked Ravager#14.'),(651,457300954660995114,'2018-06-24 04:09:32','attack','457300954660995114 attacked Ravager#14.'),(652,457300954660995114,'2018-06-24 04:09:39','attack','457300954660995114 attacked Ravager#14.'),(653,200340393596944384,'2018-06-24 04:09:55','attack','200340393596944384 attacked Ravager#14.'),(654,201102155896193024,'2018-06-24 04:09:58','claim','201102155896193024 claimed 10 crystals from a Ravager.'),(655,200340393596944384,'2018-06-24 04:10:03','claim','200340393596944384 claimed 7 crystals from a Ravager.'),(656,200340393596944384,'2018-06-24 04:10:24','transfer','200340393596944384 gave 3 crystals to 218498162745278474.'),(657,201102155896193024,'2018-06-24 04:10:28','deposit','Deposited 10 crystals to 457312250147897366.'),(658,200340393596944384,'2018-06-24 04:10:29','transfer','200340393596944384 gave 3 crystals to 457300954660995114.'),(659,200340393596944384,'2018-06-24 04:18:49','attack','200340393596944384 attacked Ravager#15.'),(660,200340393596944384,'2018-06-24 04:18:50','attack','200340393596944384 attacked Ravager#15.'),(661,200340393596944384,'2018-06-24 04:18:52','attack','200340393596944384 attacked Ravager#15.'),(662,200340393596944384,'2018-06-24 04:18:53','attack','200340393596944384 attacked Ravager#15.'),(663,201102155896193024,'2018-06-24 04:18:53','attack','201102155896193024 attacked Ravager#15.'),(664,457300954660995114,'2018-06-24 04:18:55','attack','457300954660995114 attacked Ravager#15.'),(665,200340393596944384,'2018-06-24 04:18:55','attack','200340393596944384 attacked Ravager#15.'),(666,201102155896193024,'2018-06-24 04:18:56','attack','201102155896193024 attacked Ravager#15.'),(667,201102155896193024,'2018-06-24 04:18:58','attack','201102155896193024 attacked Ravager#15.'),(668,457300954660995114,'2018-06-24 04:19:00','attack','457300954660995114 attacked Ravager#15.'),(669,201102155896193024,'2018-06-24 04:19:00','attack','201102155896193024 attacked Ravager#15.'),(670,457300954660995114,'2018-06-24 04:19:04','attack','457300954660995114 attacked Ravager#15.'),(671,200340393596944384,'2018-06-24 04:19:07','attack','200340393596944384 attacked Ravager#15.'),(672,200340393596944384,'2018-06-24 04:19:08','attack','200340393596944384 attacked Ravager#15.'),(673,457300954660995114,'2018-06-24 04:19:10','attack','457300954660995114 attacked Ravager#15.'),(674,200340393596944384,'2018-06-24 04:19:11','attack','200340393596944384 attacked Ravager#15.'),(675,201102155896193024,'2018-06-24 04:19:24','claim','201102155896193024 claimed 5 crystals from a Ravager.'),(676,457300954660995114,'2018-06-24 04:31:40','deposit','Deposited 2 crystals to 454460756520337418.'),(677,390618369545601028,'2018-06-24 05:01:05','conversion','Converted to The Anarchy.'),(678,390618369545601028,'2018-06-24 05:06:57','checkin','Checked in for 8 crystals.'),(679,200340393596944384,'2018-06-24 05:07:20','transfer','200340393596944384 gave 5 crystals to 390618369545601028.'),(680,201102155896193024,'2018-06-24 05:08:48','attack','201102155896193024 attacked Ravager#16.'),(681,201102155896193024,'2018-06-24 05:08:55','attack','201102155896193024 attacked Ravager#16.'),(682,457300954660995114,'2018-06-24 05:08:56','attack','457300954660995114 attacked Ravager#16.'),(683,201102155896193024,'2018-06-24 05:08:59','attack','201102155896193024 attacked Ravager#16.'),(684,457300954660995114,'2018-06-24 05:09:00','attack','457300954660995114 attacked Ravager#16.'),(685,201102155896193024,'2018-06-24 05:09:01','attack','201102155896193024 attacked Ravager#16.'),(686,457300954660995114,'2018-06-24 05:09:02','attack','457300954660995114 attacked Ravager#16.'),(687,201102155896193024,'2018-06-24 05:09:03','attack','201102155896193024 attacked Ravager#16.'),(688,457300954660995114,'2018-06-24 05:09:05','attack','457300954660995114 attacked Ravager#16.'),(689,201102155896193024,'2018-06-24 05:09:06','attack','201102155896193024 attacked Ravager#16.'),(690,201102155896193024,'2018-06-24 05:09:08','attack','201102155896193024 attacked Ravager#16.'),(691,457300954660995114,'2018-06-24 05:09:08','attack','457300954660995114 attacked Ravager#16.'),(692,201102155896193024,'2018-06-24 05:09:10','attack','201102155896193024 attacked Ravager#16.'),(693,457300954660995114,'2018-06-24 05:09:11','attack','457300954660995114 attacked Ravager#16.'),(694,201102155896193024,'2018-06-24 05:09:13','attack','201102155896193024 attacked Ravager#16.'),(695,457300954660995114,'2018-06-24 05:09:14','attack','457300954660995114 attacked Ravager#16.'),(696,201102155896193024,'2018-06-24 05:09:15','attack','201102155896193024 attacked Ravager#16.'),(697,457300954660995114,'2018-06-24 05:09:17','attack','457300954660995114 attacked Ravager#16.'),(698,457300954660995114,'2018-06-24 05:09:19','attack','457300954660995114 attacked Ravager#16.'),(699,457300954660995114,'2018-06-24 05:09:23','attack','457300954660995114 attacked Ravager#16.'),(700,457300954660995114,'2018-06-24 05:09:25','attack','457300954660995114 attacked Ravager#16.'),(701,457300954660995114,'2018-06-24 05:09:28','attack','457300954660995114 attacked Ravager#16.'),(702,457300954660995114,'2018-06-24 05:09:31','attack','457300954660995114 attacked Ravager#16.'),(703,201102155896193024,'2018-06-24 05:09:36','claim','201102155896193024 claimed 10 crystals from a Ravager.'),(704,201102155896193024,'2018-06-24 05:09:43','claim','201102155896193024 claimed 8 crystals from a Ravager.'),(705,201102155896193024,'2018-06-24 05:11:13','deposit','Deposited 18 crystals to 457312250147897366.'),(706,359521958519504926,'2018-06-24 05:14:07','conversion','Converted to The Anarchy.'),(707,359521958519504926,'2018-06-24 05:15:16','checkin','Checked in for 6 crystals.'),(708,388505302292627456,'2018-06-24 05:16:38','conversion','Converted to The Anarchy.'),(709,200340393596944384,'2018-06-24 05:18:51','attack','200340393596944384 attacked Ravager#17.'),(710,218498162745278474,'2018-06-24 05:18:53','attack','218498162745278474 attacked Ravager#17.'),(711,201102155896193024,'2018-06-24 05:18:54','attack','201102155896193024 attacked Ravager#17.'),(712,201102155896193024,'2018-06-24 05:18:57','attack','201102155896193024 attacked Ravager#17.'),(713,201102155896193024,'2018-06-24 05:19:01','attack','201102155896193024 attacked Ravager#17.'),(714,201102155896193024,'2018-06-24 05:19:04','attack','201102155896193024 attacked Ravager#17.'),(715,201102155896193024,'2018-06-24 05:19:09','attack','201102155896193024 attacked Ravager#17.'),(716,200340393596944384,'2018-06-24 05:19:11','attack','200340393596944384 attacked Ravager#17.'),(717,218498162745278474,'2018-06-24 05:19:11','attack','218498162745278474 attacked Ravager#17.'),(718,200340393596944384,'2018-06-24 05:19:12','attack','200340393596944384 attacked Ravager#17.'),(719,201102155896193024,'2018-06-24 05:19:13','attack','201102155896193024 attacked Ravager#17.'),(720,218498162745278474,'2018-06-24 05:19:31','attack','218498162745278474 attacked Ravager#17.'),(721,218498162745278474,'2018-06-24 05:19:37','attack','218498162745278474 attacked Ravager#17.'),(722,201102155896193024,'2018-06-24 05:19:40','claim','201102155896193024 claimed 10 crystals from a Ravager.'),(723,201102155896193024,'2018-06-24 05:19:46','claim','201102155896193024 claimed 6 crystals from a Ravager.'),(724,388505302292627456,'2018-06-24 05:21:10','checkin','Checked in for 8 crystals.'),(725,459879057295671296,'2018-06-24 05:21:56','checkin','Checked in for 9 crystals.'),(726,459879057295671296,'2018-06-24 05:22:02','deposit','Deposited 9 crystals to 457312250147897366.'),(727,201102155896193024,'2018-06-24 05:30:54','deposit','Deposited 21 crystals to 457312250147897366.'),(728,359521958519504926,'2018-06-24 05:32:34','deposit','Deposited 6 crystals to 454460756520337418.'),(729,459873273308643328,'2018-06-24 05:34:48','checkin','Checked in for 7 crystals.'),(730,459873273308643328,'2018-06-24 05:34:53','deposit','Deposited 7 crystals to 457312250147897366.'),(731,352537678538866688,'2018-06-24 05:36:21','conversion','Converted to The Anarchy.'),(732,352537678538866688,'2018-06-24 05:38:18','checkin','Checked in for 8 crystals.'),(733,200340393596944384,'2018-06-24 05:38:32','transfer','200340393596944384 gave 5 crystals to 352537678538866688.'),(734,148942504077557760,'2018-06-24 05:39:14','conversion','Converted to The Religion.'),(735,352537678538866688,'2018-06-24 05:39:37','deposit','Deposited 3 crystals to 454460756520337418.'),(736,454823752925052930,'2018-06-24 05:45:07','conversion','Converted to The Religion.'),(737,201102155896193024,'2018-06-24 05:58:48','attack','201102155896193024 attacked Ravager#18.'),(738,359521958519504926,'2018-06-24 05:58:49','attack','359521958519504926 attacked Ravager#18.'),(739,459873273308643328,'2018-06-24 05:58:50','attack','459873273308643328 attacked Ravager#18.'),(740,148942504077557760,'2018-06-24 05:58:53','attack','148942504077557760 attacked Ravager#18.'),(741,200340393596944384,'2018-06-24 05:58:53','attack','200340393596944384 attacked Ravager#18.'),(742,201102155896193024,'2018-06-24 05:58:54','attack','201102155896193024 attacked Ravager#18.'),(743,200340393596944384,'2018-06-24 05:58:54','attack','200340393596944384 attacked Ravager#18.'),(744,359521958519504926,'2018-06-24 05:58:54','attack','359521958519504926 attacked Ravager#18.'),(745,218498162745278474,'2018-06-24 05:58:55','attack','218498162745278474 attacked Ravager#18.'),(746,201102155896193024,'2018-06-24 05:58:56','attack','201102155896193024 attacked Ravager#18.'),(747,148942504077557760,'2018-06-24 05:58:57','attack','148942504077557760 attacked Ravager#18.'),(748,200340393596944384,'2018-06-24 05:58:57','attack','200340393596944384 attacked Ravager#18.'),(749,201102155896193024,'2018-06-24 05:58:58','attack','201102155896193024 attacked Ravager#18.'),(750,201102155896193024,'2018-06-24 05:59:00','attack','201102155896193024 attacked Ravager#18.'),(751,359521958519504926,'2018-06-24 05:59:00','attack','359521958519504926 attacked Ravager#18.'),(752,457300954660995114,'2018-06-24 05:59:01','attack','457300954660995114 attacked Ravager#18.'),(753,201102155896193024,'2018-06-24 05:59:02','attack','201102155896193024 attacked Ravager#18.'),(754,148942504077557760,'2018-06-24 05:59:02','attack','148942504077557760 attacked Ravager#18.'),(755,200340393596944384,'2018-06-24 05:59:03','attack','200340393596944384 attacked Ravager#18.'),(756,201102155896193024,'2018-06-24 05:59:03','attack','201102155896193024 attacked Ravager#18.'),(757,148942504077557760,'2018-06-24 05:59:04','attack','148942504077557760 attacked Ravager#18.'),(758,359521958519504926,'2018-06-24 05:59:04','attack','359521958519504926 attacked Ravager#18.'),(759,218498162745278474,'2018-06-24 05:59:05','attack','218498162745278474 attacked Ravager#18.'),(760,201102155896193024,'2018-06-24 05:59:05','attack','201102155896193024 attacked Ravager#18.'),(761,359521958519504926,'2018-06-24 05:59:05','attack','359521958519504926 attacked Ravager#18.'),(762,457300954660995114,'2018-06-24 05:59:06','attack','457300954660995114 attacked Ravager#18.'),(763,359521958519504926,'2018-06-24 05:59:06','attack','359521958519504926 attacked Ravager#18.'),(764,359521958519504926,'2018-06-24 05:59:06','attack','359521958519504926 attacked Ravager#18.'),(765,200340393596944384,'2018-06-24 05:59:17','claim','200340393596944384 claimed 8 crystals from a Ravager.'),(766,200340393596944384,'2018-06-24 06:00:50','transfer','200340393596944384 gave 2 crystals to 218498162745278474.'),(767,200340393596944384,'2018-06-24 06:00:55','transfer','200340393596944384 gave 2 crystals to 359521958519504926.'),(768,200340393596944384,'2018-06-24 06:00:59','transfer','200340393596944384 gave 2 crystals to 457300954660995114.'),(769,359521958519504926,'2018-06-24 06:08:49','attack','359521958519504926 attacked Ravager#19.'),(770,459873273308643328,'2018-06-24 06:08:51','attack','459873273308643328 attacked Ravager#19.'),(771,457300954660995114,'2018-06-24 06:08:52','attack','457300954660995114 attacked Ravager#19.'),(772,200340393596944384,'2018-06-24 06:08:53','attack','200340393596944384 attacked Ravager#19.'),(773,201102155896193024,'2018-06-24 06:08:55','attack','201102155896193024 attacked Ravager#19.'),(774,457300954660995114,'2018-06-24 06:08:55','attack','457300954660995114 attacked Ravager#19.'),(775,200340393596944384,'2018-06-24 06:08:56','attack','200340393596944384 attacked Ravager#19.'),(776,359521958519504926,'2018-06-24 06:08:58','attack','359521958519504926 attacked Ravager#19.'),(777,359521958519504926,'2018-06-24 06:08:58','attack','359521958519504926 attacked Ravager#19.'),(778,201102155896193024,'2018-06-24 06:08:58','attack','201102155896193024 attacked Ravager#19.'),(779,359521958519504926,'2018-06-24 06:08:58','attack','359521958519504926 attacked Ravager#19.'),(780,148942504077557760,'2018-06-24 06:08:58','checkin','Checked in for 4 crystals.'),(781,359521958519504926,'2018-06-24 06:08:58','attack','359521958519504926 attacked Ravager#19.'),(782,359521958519504926,'2018-06-24 06:08:59','attack','359521958519504926 attacked Ravager#19.'),(783,359521958519504926,'2018-06-24 06:08:59','attack','359521958519504926 attacked Ravager#19.'),(784,457300954660995114,'2018-06-24 06:08:59','attack','457300954660995114 attacked Ravager#19.'),(785,359521958519504926,'2018-06-24 06:08:59','attack','359521958519504926 attacked Ravager#19.'),(786,359521958519504926,'2018-06-24 06:08:59','attack','359521958519504926 attacked Ravager#19.'),(787,244472475662942216,'2018-06-24 06:11:19','conversion','Converted to The Religion.'),(788,117627480591958025,'2018-06-24 06:12:33','conversion','Converted to The Order.'),(789,117627480591958025,'2018-06-24 06:16:51','checkin','Checked in for 9 crystals.'),(790,218498162745278474,'2018-06-24 06:18:52','attack','218498162745278474 attacked Ravager#20.'),(791,200340393596944384,'2018-06-24 06:19:02','attack','200340393596944384 attacked Ravager#20.'),(792,200340393596944384,'2018-06-24 06:19:03','attack','200340393596944384 attacked Ravager#20.'),(793,200340393596944384,'2018-06-24 06:19:04','attack','200340393596944384 attacked Ravager#20.'),(794,200340393596944384,'2018-06-24 06:19:06','attack','200340393596944384 attacked Ravager#20.'),(795,201102155896193024,'2018-06-24 06:19:06','attack','201102155896193024 attacked Ravager#20.'),(796,201102155896193024,'2018-06-24 06:19:08','attack','201102155896193024 attacked Ravager#20.'),(797,200340393596944384,'2018-06-24 06:19:08','attack','200340393596944384 attacked Ravager#20.'),(798,201102155896193024,'2018-06-24 06:19:10','attack','201102155896193024 attacked Ravager#20.'),(799,457300954660995114,'2018-06-24 06:19:10','attack','457300954660995114 attacked Ravager#20.'),(800,201102155896193024,'2018-06-24 06:19:13','attack','201102155896193024 attacked Ravager#20.'),(801,200340393596944384,'2018-06-24 06:19:14','attack','200340393596944384 attacked Ravager#20.'),(802,201102155896193024,'2018-06-24 06:19:15','attack','201102155896193024 attacked Ravager#20.'),(803,201102155896193024,'2018-06-24 06:19:17','attack','201102155896193024 attacked Ravager#20.'),(804,200340393596944384,'2018-06-24 06:19:17','attack','200340393596944384 attacked Ravager#20.'),(805,201102155896193024,'2018-06-24 06:19:19','attack','201102155896193024 attacked Ravager#20.'),(806,201102155896193024,'2018-06-24 06:19:21','attack','201102155896193024 attacked Ravager#20.'),(807,200340393596944384,'2018-06-24 06:19:22','attack','200340393596944384 attacked Ravager#20.'),(808,457300954660995114,'2018-06-24 06:19:23','attack','457300954660995114 attacked Ravager#20.'),(809,117627480591958025,'2018-06-24 06:19:25','attack','117627480591958025 attacked Ravager#20.'),(810,457300954660995114,'2018-06-24 06:19:28','attack','457300954660995114 attacked Ravager#20.'),(811,148942504077557760,'2018-06-24 06:19:33','attack','148942504077557760 attacked Ravager#20.'),(812,201102155896193024,'2018-06-24 06:19:33','attack','201102155896193024 attacked Ravager#20.'),(813,457300954660995114,'2018-06-24 06:19:33','attack','457300954660995114 attacked Ravager#20.'),(814,117627480591958025,'2018-06-24 06:19:38','attack','117627480591958025 attacked Ravager#20.'),(815,457300954660995114,'2018-06-24 06:19:38','attack','457300954660995114 attacked Ravager#20.'),(816,117627480591958025,'2018-06-24 06:19:45','attack','117627480591958025 attacked Ravager#20.'),(817,148942504077557760,'2018-06-24 06:19:47','claim','148942504077557760 claimed 5 crystals from a Ravager.'),(818,278947007035604993,'2018-06-24 06:19:52','conversion','Converted to The Order.'),(819,200340393596944384,'2018-06-24 06:19:55','claim','200340393596944384 claimed 4 crystals from a Ravager.'),(820,201102155896193024,'2018-06-24 06:19:57','claim','201102155896193024 claimed 1 crystals from a Ravager.'),(821,200340393596944384,'2018-06-24 06:20:03','claim','200340393596944384 claimed 3 crystals from a Ravager.'),(822,201102155896193024,'2018-06-24 06:20:10','claim','201102155896193024 claimed 1 crystals from a Ravager.'),(823,200340393596944384,'2018-06-24 06:23:47','transfer','200340393596944384 gave 2 crystals to 359521958519504926.'),(824,200340393596944384,'2018-06-24 06:23:51','transfer','200340393596944384 gave 2 crystals to 218498162745278474.'),(825,200340393596944384,'2018-06-24 06:23:59','transfer','200340393596944384 gave 2 crystals to 457300954660995114.'),(826,200340393596944384,'2018-06-24 06:49:09','attack','200340393596944384 attacked Ravager#21.'),(827,148942504077557760,'2018-06-24 06:49:09','attack','148942504077557760 attacked Ravager#21.'),(828,200340393596944384,'2018-06-24 06:49:10','attack','200340393596944384 attacked Ravager#21.'),(829,201102155896193024,'2018-06-24 06:49:10','attack','201102155896193024 attacked Ravager#21.'),(830,200340393596944384,'2018-06-24 06:49:11','attack','200340393596944384 attacked Ravager#21.'),(831,148942504077557760,'2018-06-24 06:49:11','attack','148942504077557760 attacked Ravager#21.'),(832,200340393596944384,'2018-06-24 06:49:12','attack','200340393596944384 attacked Ravager#21.'),(833,148942504077557760,'2018-06-24 06:49:13','attack','148942504077557760 attacked Ravager#21.'),(834,200340393596944384,'2018-06-24 06:49:13','attack','200340393596944384 attacked Ravager#21.'),(835,201102155896193024,'2018-06-24 06:49:14','attack','201102155896193024 attacked Ravager#21.'),(836,148942504077557760,'2018-06-24 06:49:15','attack','148942504077557760 attacked Ravager#21.'),(837,201102155896193024,'2018-06-24 06:49:15','attack','201102155896193024 attacked Ravager#21.'),(838,148942504077557760,'2018-06-24 06:49:17','attack','148942504077557760 attacked Ravager#21.'),(839,201102155896193024,'2018-06-24 06:49:18','attack','201102155896193024 attacked Ravager#21.'),(840,148942504077557760,'2018-06-24 06:49:20','attack','148942504077557760 attacked Ravager#21.'),(841,218498162745278474,'2018-06-24 06:49:21','attack','218498162745278474 attacked Ravager#21.'),(842,148942504077557760,'2018-06-24 06:49:35','attack','148942504077557760 attacked Ravager#21.'),(843,148942504077557760,'2018-06-24 06:49:41','attack','148942504077557760 attacked Ravager#21.'),(844,148942504077557760,'2018-06-24 06:49:45','claim','148942504077557760 claimed 8 crystals from a Ravager.'),(845,200340393596944384,'2018-06-24 06:49:47','claim','200340393596944384 claimed 2 crystals from a Ravager.'),(846,148942504077557760,'2018-06-24 06:49:52','claim','148942504077557760 claimed 2 crystals from a Ravager.'),(847,148942504077557760,'2018-06-24 07:04:57','deposit','Deposited 19 crystals to 457312250147897366.'),(848,148942504077557760,'2018-06-24 07:20:12','attack','148942504077557760 attacked Ravager#22.'),(849,148942504077557760,'2018-06-24 07:20:16','attack','148942504077557760 attacked Ravager#22.'),(850,148942504077557760,'2018-06-24 07:20:17','attack','148942504077557760 attacked Ravager#22.'),(851,148942504077557760,'2018-06-24 07:20:19','attack','148942504077557760 attacked Ravager#22.'),(852,201102155896193024,'2018-06-24 07:20:19','attack','201102155896193024 attacked Ravager#22.'),(853,148942504077557760,'2018-06-24 07:20:20','attack','148942504077557760 attacked Ravager#22.'),(854,148942504077557760,'2018-06-24 07:20:21','attack','148942504077557760 attacked Ravager#22.'),(855,201102155896193024,'2018-06-24 07:20:21','attack','201102155896193024 attacked Ravager#22.'),(856,148942504077557760,'2018-06-24 07:20:22','attack','148942504077557760 attacked Ravager#22.'),(857,201102155896193024,'2018-06-24 07:20:23','attack','201102155896193024 attacked Ravager#22.'),(858,148942504077557760,'2018-06-24 07:20:23','attack','148942504077557760 attacked Ravager#22.'),(859,148942504077557760,'2018-06-24 07:20:24','attack','148942504077557760 attacked Ravager#22.'),(860,148942504077557760,'2018-06-24 07:20:25','attack','148942504077557760 attacked Ravager#22.'),(861,201102155896193024,'2018-06-24 07:20:25','attack','201102155896193024 attacked Ravager#22.'),(862,201102155896193024,'2018-06-24 07:20:27','attack','201102155896193024 attacked Ravager#22.'),(863,148942504077557760,'2018-06-24 07:20:28','attack','148942504077557760 attacked Ravager#22.'),(864,148942504077557760,'2018-06-24 07:20:28','attack','148942504077557760 attacked Ravager#22.'),(865,148942504077557760,'2018-06-24 07:20:29','attack','148942504077557760 attacked Ravager#22.'),(866,201102155896193024,'2018-06-24 07:20:29','attack','201102155896193024 attacked Ravager#22.'),(867,148942504077557760,'2018-06-24 07:20:29','attack','148942504077557760 attacked Ravager#22.'),(868,148942504077557760,'2018-06-24 07:20:30','attack','148942504077557760 attacked Ravager#22.'),(869,148942504077557760,'2018-06-24 07:20:30','attack','148942504077557760 attacked Ravager#22.'),(870,148942504077557760,'2018-06-24 07:20:31','attack','148942504077557760 attacked Ravager#22.'),(871,201102155896193024,'2018-06-24 07:20:31','attack','201102155896193024 attacked Ravager#22.'),(872,148942504077557760,'2018-06-24 07:20:31','attack','148942504077557760 attacked Ravager#22.'),(873,148942504077557760,'2018-06-24 07:20:32','attack','148942504077557760 attacked Ravager#22.'),(874,148942504077557760,'2018-06-24 07:20:33','attack','148942504077557760 attacked Ravager#22.'),(875,148942504077557760,'2018-06-24 07:20:34','attack','148942504077557760 attacked Ravager#22.'),(876,148942504077557760,'2018-06-24 07:20:40','claim','148942504077557760 claimed 11 crystals from a Ravager.'),(877,148942504077557760,'2018-06-24 07:22:59','deposit','Deposited 11 crystals to 457312250147897366.'),(878,249535509280456705,'2018-06-24 07:49:07','attack','249535509280456705 attacked Ravager#23.'),(879,249535509280456705,'2018-06-24 07:49:09','attack','249535509280456705 attacked Ravager#23.'),(880,249535509280456705,'2018-06-24 07:49:10','attack','249535509280456705 attacked Ravager#23.'),(881,249535509280456705,'2018-06-24 07:49:10','attack','249535509280456705 attacked Ravager#23.'),(882,249535509280456705,'2018-06-24 07:49:11','attack','249535509280456705 attacked Ravager#23.'),(883,249535509280456705,'2018-06-24 07:49:11','attack','249535509280456705 attacked Ravager#23.'),(884,249535509280456705,'2018-06-24 07:49:11','attack','249535509280456705 attacked Ravager#23.'),(885,249535509280456705,'2018-06-24 07:49:12','attack','249535509280456705 attacked Ravager#23.'),(886,249535509280456705,'2018-06-24 07:49:18','attack','249535509280456705 attacked Ravager#23.'),(887,249535509280456705,'2018-06-24 07:49:20','attack','249535509280456705 attacked Ravager#23.'),(888,249535509280456705,'2018-06-24 07:49:22','attack','249535509280456705 attacked Ravager#23.'),(889,249535509280456705,'2018-06-24 07:49:24','attack','249535509280456705 attacked Ravager#23.'),(890,249535509280456705,'2018-06-24 07:49:25','attack','249535509280456705 attacked Ravager#23.'),(891,249535509280456705,'2018-06-24 07:49:27','attack','249535509280456705 attacked Ravager#23.'),(892,249535509280456705,'2018-06-24 07:49:28','attack','249535509280456705 attacked Ravager#23.'),(893,249535509280456705,'2018-06-24 07:49:29','attack','249535509280456705 attacked Ravager#23.'),(894,249535509280456705,'2018-06-24 07:49:30','attack','249535509280456705 attacked Ravager#23.'),(895,249535509280456705,'2018-06-24 07:49:31','attack','249535509280456705 attacked Ravager#23.'),(896,249535509280456705,'2018-06-24 07:49:33','attack','249535509280456705 attacked Ravager#23.'),(897,249535509280456705,'2018-06-24 07:49:33','attack','249535509280456705 attacked Ravager#23.'),(898,249535509280456705,'2018-06-24 07:49:34','attack','249535509280456705 attacked Ravager#23.'),(899,201102155896193024,'2018-06-24 07:50:18','claim','201102155896193024 claimed 3 crystals from a Ravager.'),(900,249535509280456705,'2018-06-24 07:51:06','claim','249535509280456705 claimed 3 crystals from a Ravager.'),(901,249535509280456705,'2018-06-24 07:51:24','checkin','Checked in for 9 crystals.'),(902,249535509280456705,'2018-06-24 07:52:20','deposit','Deposited 12 crystals to 454460756520337418.'),(903,204933415252787202,'2018-06-24 08:18:40','attack','204933415252787202 attacked Ravager#24.'),(904,204933415252787202,'2018-06-24 08:18:54','attack','204933415252787202 attacked Ravager#24.'),(905,204933415252787202,'2018-06-24 08:19:05','attack','204933415252787202 attacked Ravager#24.'),(906,204933415252787202,'2018-06-24 08:19:06','attack','204933415252787202 attacked Ravager#24.'),(907,204933415252787202,'2018-06-24 08:19:09','attack','204933415252787202 attacked Ravager#24.'),(908,204933415252787202,'2018-06-24 08:19:10','attack','204933415252787202 attacked Ravager#24.'),(909,204933415252787202,'2018-06-24 08:19:13','attack','204933415252787202 attacked Ravager#24.'),(910,204933415252787202,'2018-06-24 08:19:14','attack','204933415252787202 attacked Ravager#24.'),(911,204933415252787202,'2018-06-24 08:19:17','attack','204933415252787202 attacked Ravager#24.'),(912,204933415252787202,'2018-06-24 08:19:18','attack','204933415252787202 attacked Ravager#24.'),(913,204933415252787202,'2018-06-24 08:19:20','attack','204933415252787202 attacked Ravager#24.'),(914,204933415252787202,'2018-06-24 08:19:22','attack','204933415252787202 attacked Ravager#24.'),(915,204933415252787202,'2018-06-24 08:19:23','attack','204933415252787202 attacked Ravager#24.'),(916,204933415252787202,'2018-06-24 08:19:24','attack','204933415252787202 attacked Ravager#24.'),(917,204933415252787202,'2018-06-24 08:19:25','attack','204933415252787202 attacked Ravager#24.'),(918,204933415252787202,'2018-06-24 08:19:26','attack','204933415252787202 attacked Ravager#24.'),(919,204933415252787202,'2018-06-24 08:19:27','attack','204933415252787202 attacked Ravager#24.'),(920,204933415252787202,'2018-06-24 08:19:35','attack','204933415252787202 attacked Ravager#24.'),(921,204933415252787202,'2018-06-24 08:19:41','attack','204933415252787202 attacked Ravager#24.'),(922,204933415252787202,'2018-06-24 08:19:43','attack','204933415252787202 attacked Ravager#24.'),(923,204933415252787202,'2018-06-24 08:19:47','attack','204933415252787202 attacked Ravager#24.'),(924,204933415252787202,'2018-06-24 08:19:49','attack','204933415252787202 attacked Ravager#24.'),(925,204933415252787202,'2018-06-24 08:20:40','claim','204933415252787202 claimed 15 crystals from a Ravager.'),(926,204933415252787202,'2018-06-24 08:21:07','checkin','Checked in for 9 crystals.'),(927,204933415252787202,'2018-06-24 08:21:25','deposit','Deposited 30 crystals to 454460679244480512.'),(928,457300954660995114,'2018-06-24 09:01:32','attack','457300954660995114 attacked Ravager#25.'),(929,457300954660995114,'2018-06-24 09:01:37','attack','457300954660995114 attacked Ravager#25.'),(930,457300954660995114,'2018-06-24 09:01:40','attack','457300954660995114 attacked Ravager#25.'),(931,457300954660995114,'2018-06-24 09:01:44','attack','457300954660995114 attacked Ravager#25.'),(932,457300954660995114,'2018-06-24 09:01:47','attack','457300954660995114 attacked Ravager#25.'),(933,457300954660995114,'2018-06-24 09:01:51','attack','457300954660995114 attacked Ravager#25.'),(934,457300954660995114,'2018-06-24 09:01:55','attack','457300954660995114 attacked Ravager#25.'),(935,457300954660995114,'2018-06-24 09:01:58','attack','457300954660995114 attacked Ravager#25.'),(936,457300954660995114,'2018-06-24 09:02:01','attack','457300954660995114 attacked Ravager#25.'),(937,457300954660995114,'2018-06-24 09:02:04','attack','457300954660995114 attacked Ravager#25.'),(938,457300954660995114,'2018-06-24 09:02:07','attack','457300954660995114 attacked Ravager#25.'),(939,457300954660995114,'2018-06-24 09:02:10','attack','457300954660995114 attacked Ravager#25.'),(940,457300954660995114,'2018-06-24 09:02:13','attack','457300954660995114 attacked Ravager#25.'),(941,457300954660995114,'2018-06-24 09:02:16','attack','457300954660995114 attacked Ravager#25.'),(942,457300954660995114,'2018-06-24 09:02:21','attack','457300954660995114 attacked Ravager#25.'),(943,457300954660995114,'2018-06-24 09:02:25','attack','457300954660995114 attacked Ravager#25.'),(944,457300954660995114,'2018-06-24 09:02:28','attack','457300954660995114 attacked Ravager#25.'),(945,457300954660995114,'2018-06-24 09:02:32','attack','457300954660995114 attacked Ravager#25.'),(946,457300954660995114,'2018-06-24 09:02:35','attack','457300954660995114 attacked Ravager#25.'),(947,457300954660995114,'2018-06-24 09:02:38','attack','457300954660995114 attacked Ravager#25.'),(948,457300954660995114,'2018-06-24 09:02:41','attack','457300954660995114 attacked Ravager#25.'),(949,457300954660995114,'2018-06-24 09:02:45','attack','457300954660995114 attacked Ravager#25.'),(950,457300954660995114,'2018-06-24 09:02:48','attack','457300954660995114 attacked Ravager#25.'),(951,457300954660995114,'2018-06-24 09:02:51','attack','457300954660995114 attacked Ravager#25.'),(952,457300954660995114,'2018-06-24 09:02:55','attack','457300954660995114 attacked Ravager#25.'),(953,457300954660995114,'2018-06-24 09:02:58','attack','457300954660995114 attacked Ravager#25.'),(954,457300954660995114,'2018-06-24 09:03:02','attack','457300954660995114 attacked Ravager#25.'),(955,457300954660995114,'2018-06-24 09:03:05','attack','457300954660995114 attacked Ravager#25.'),(956,457300954660995114,'2018-06-24 09:03:08','attack','457300954660995114 attacked Ravager#25.'),(957,457300954660995114,'2018-06-24 09:03:24','claim','457300954660995114 claimed 13 crystals from a Ravager.'),(958,204933415252787202,'2018-06-24 09:09:00','attack','204933415252787202 attacked Ravager#26.'),(959,204933415252787202,'2018-06-24 09:09:05','attack','204933415252787202 attacked Ravager#26.'),(960,204933415252787202,'2018-06-24 09:09:07','attack','204933415252787202 attacked Ravager#26.'),(961,204933415252787202,'2018-06-24 09:09:08','attack','204933415252787202 attacked Ravager#26.'),(962,204933415252787202,'2018-06-24 09:09:10','attack','204933415252787202 attacked Ravager#26.'),(963,204933415252787202,'2018-06-24 09:09:11','attack','204933415252787202 attacked Ravager#26.'),(964,204933415252787202,'2018-06-24 09:09:12','attack','204933415252787202 attacked Ravager#26.'),(965,204933415252787202,'2018-06-24 09:09:14','attack','204933415252787202 attacked Ravager#26.'),(966,204933415252787202,'2018-06-24 09:09:15','attack','204933415252787202 attacked Ravager#26.'),(967,204933415252787202,'2018-06-24 09:09:17','attack','204933415252787202 attacked Ravager#26.'),(968,204933415252787202,'2018-06-24 09:09:18','attack','204933415252787202 attacked Ravager#26.'),(969,204933415252787202,'2018-06-24 09:09:21','attack','204933415252787202 attacked Ravager#26.'),(970,204933415252787202,'2018-06-24 09:09:25','attack','204933415252787202 attacked Ravager#26.'),(971,204933415252787202,'2018-06-24 09:09:27','attack','204933415252787202 attacked Ravager#26.'),(972,204933415252787202,'2018-06-24 09:09:29','attack','204933415252787202 attacked Ravager#26.'),(973,204933415252787202,'2018-06-24 09:09:30','attack','204933415252787202 attacked Ravager#26.'),(974,204933415252787202,'2018-06-24 09:09:32','attack','204933415252787202 attacked Ravager#26.'),(975,204933415252787202,'2018-06-24 09:09:33','attack','204933415252787202 attacked Ravager#26.'),(976,204933415252787202,'2018-06-24 09:09:34','attack','204933415252787202 attacked Ravager#26.'),(977,204933415252787202,'2018-06-24 09:09:35','attack','204933415252787202 attacked Ravager#26.'),(978,204933415252787202,'2018-06-24 09:09:37','attack','204933415252787202 attacked Ravager#26.'),(979,204933415252787202,'2018-06-24 09:09:38','attack','204933415252787202 attacked Ravager#26.'),(980,204933415252787202,'2018-06-24 09:09:40','attack','204933415252787202 attacked Ravager#26.'),(981,204933415252787202,'2018-06-24 09:09:41','attack','204933415252787202 attacked Ravager#26.'),(982,204933415252787202,'2018-06-24 09:09:42','attack','204933415252787202 attacked Ravager#26.'),(983,204933415252787202,'2018-06-24 09:09:44','attack','204933415252787202 attacked Ravager#26.'),(984,204933415252787202,'2018-06-24 09:09:45','attack','204933415252787202 attacked Ravager#26.'),(985,204933415252787202,'2018-06-24 09:09:58','claim','204933415252787202 claimed 17 crystals from a Ravager.'),(986,457300954660995114,'2018-06-24 09:19:11','attack','457300954660995114 attacked Ravager#27.'),(987,457300954660995114,'2018-06-24 09:19:14','attack','457300954660995114 attacked Ravager#27.'),(988,457300954660995114,'2018-06-24 09:19:16','attack','457300954660995114 attacked Ravager#27.'),(989,457300954660995114,'2018-06-24 09:19:18','attack','457300954660995114 attacked Ravager#27.'),(990,457300954660995114,'2018-06-24 09:19:20','attack','457300954660995114 attacked Ravager#27.'),(991,457300954660995114,'2018-06-24 09:19:22','attack','457300954660995114 attacked Ravager#27.'),(992,457300954660995114,'2018-06-24 09:19:24','attack','457300954660995114 attacked Ravager#27.'),(993,457300954660995114,'2018-06-24 09:19:26','attack','457300954660995114 attacked Ravager#27.'),(994,457300954660995114,'2018-06-24 09:19:28','attack','457300954660995114 attacked Ravager#27.'),(995,457300954660995114,'2018-06-24 09:19:31','attack','457300954660995114 attacked Ravager#27.'),(996,457300954660995114,'2018-06-24 09:19:33','attack','457300954660995114 attacked Ravager#27.'),(997,457300954660995114,'2018-06-24 09:19:35','attack','457300954660995114 attacked Ravager#27.'),(998,457300954660995114,'2018-06-24 09:19:38','attack','457300954660995114 attacked Ravager#27.'),(999,457300954660995114,'2018-06-24 09:19:41','attack','457300954660995114 attacked Ravager#27.'),(1000,457300954660995114,'2018-06-24 09:19:43','attack','457300954660995114 attacked Ravager#27.'),(1001,457300954660995114,'2018-06-24 09:19:45','attack','457300954660995114 attacked Ravager#27.'),(1002,457300954660995114,'2018-06-24 09:19:48','attack','457300954660995114 attacked Ravager#27.'),(1003,457300954660995114,'2018-06-24 09:20:02','claim','457300954660995114 claimed 6 crystals from a Ravager.'),(1004,222309309235724289,'2018-06-24 09:23:59','checkin','Checked in for 5 crystals.'),(1005,204933415252787202,'2018-06-24 09:36:43','attack','204933415252787202 attacked Ravager#28.'),(1006,204933415252787202,'2018-06-24 09:36:45','attack','204933415252787202 attacked Ravager#28.'),(1007,204933415252787202,'2018-06-24 09:36:47','attack','204933415252787202 attacked Ravager#28.'),(1008,204933415252787202,'2018-06-24 09:36:48','attack','204933415252787202 attacked Ravager#28.'),(1009,204933415252787202,'2018-06-24 09:36:49','attack','204933415252787202 attacked Ravager#28.'),(1010,204933415252787202,'2018-06-24 09:36:50','attack','204933415252787202 attacked Ravager#28.'),(1011,204933415252787202,'2018-06-24 09:36:52','attack','204933415252787202 attacked Ravager#28.'),(1012,204933415252787202,'2018-06-24 09:36:55','attack','204933415252787202 attacked Ravager#28.'),(1013,204933415252787202,'2018-06-24 09:36:57','attack','204933415252787202 attacked Ravager#28.'),(1014,204933415252787202,'2018-06-24 09:36:58','attack','204933415252787202 attacked Ravager#28.'),(1015,204933415252787202,'2018-06-24 09:36:59','attack','204933415252787202 attacked Ravager#28.'),(1016,204933415252787202,'2018-06-24 09:37:00','attack','204933415252787202 attacked Ravager#28.'),(1017,204933415252787202,'2018-06-24 09:37:01','attack','204933415252787202 attacked Ravager#28.'),(1018,204933415252787202,'2018-06-24 09:37:02','attack','204933415252787202 attacked Ravager#28.'),(1019,204933415252787202,'2018-06-24 09:37:04','attack','204933415252787202 attacked Ravager#28.'),(1020,204933415252787202,'2018-06-24 09:37:05','attack','204933415252787202 attacked Ravager#28.'),(1021,204933415252787202,'2018-06-24 09:37:07','attack','204933415252787202 attacked Ravager#28.'),(1022,204933415252787202,'2018-06-24 09:37:08','attack','204933415252787202 attacked Ravager#28.'),(1023,204933415252787202,'2018-06-24 09:37:09','attack','204933415252787202 attacked Ravager#28.'),(1024,204933415252787202,'2018-06-24 09:37:10','attack','204933415252787202 attacked Ravager#28.'),(1025,204933415252787202,'2018-06-24 09:37:11','attack','204933415252787202 attacked Ravager#28.'),(1026,204933415252787202,'2018-06-24 09:37:12','attack','204933415252787202 attacked Ravager#28.'),(1027,204933415252787202,'2018-06-24 09:37:14','attack','204933415252787202 attacked Ravager#28.'),(1028,204933415252787202,'2018-06-24 09:37:15','attack','204933415252787202 attacked Ravager#28.'),(1029,204933415252787202,'2018-06-24 09:37:17','attack','204933415252787202 attacked Ravager#28.'),(1030,204933415252787202,'2018-06-24 09:37:19','attack','204933415252787202 attacked Ravager#28.'),(1031,204933415252787202,'2018-06-24 09:37:20','attack','204933415252787202 attacked Ravager#28.'),(1032,204933415252787202,'2018-06-24 09:37:21','attack','204933415252787202 attacked Ravager#28.'),(1033,204933415252787202,'2018-06-24 09:37:23','attack','204933415252787202 attacked Ravager#28.'),(1034,204933415252787202,'2018-06-24 09:37:36','claim','204933415252787202 claimed 14 crystals from a Ravager.'),(1035,148942504077557760,'2018-06-24 10:08:52','attack','148942504077557760 attacked Ravager#29.'),(1036,148942504077557760,'2018-06-24 10:08:55','attack','148942504077557760 attacked Ravager#29.'),(1037,204933415252787202,'2018-06-24 10:08:56','attack','204933415252787202 attacked Ravager#29.'),(1038,148942504077557760,'2018-06-24 10:08:57','attack','148942504077557760 attacked Ravager#29.'),(1039,148942504077557760,'2018-06-24 10:08:58','attack','148942504077557760 attacked Ravager#29.'),(1040,148942504077557760,'2018-06-24 10:08:59','attack','148942504077557760 attacked Ravager#29.'),(1041,148942504077557760,'2018-06-24 10:09:02','attack','148942504077557760 attacked Ravager#29.'),(1042,204933415252787202,'2018-06-24 10:09:04','attack','204933415252787202 attacked Ravager#29.'),(1043,148942504077557760,'2018-06-24 10:09:05','attack','148942504077557760 attacked Ravager#29.'),(1044,204933415252787202,'2018-06-24 10:09:07','attack','204933415252787202 attacked Ravager#29.'),(1045,148942504077557760,'2018-06-24 10:09:07','attack','148942504077557760 attacked Ravager#29.'),(1046,148942504077557760,'2018-06-24 10:09:09','attack','148942504077557760 attacked Ravager#29.'),(1047,204933415252787202,'2018-06-24 10:09:09','attack','204933415252787202 attacked Ravager#29.'),(1048,148942504077557760,'2018-06-24 10:09:11','attack','148942504077557760 attacked Ravager#29.'),(1049,148942504077557760,'2018-06-24 10:09:12','attack','148942504077557760 attacked Ravager#29.'),(1050,204933415252787202,'2018-06-24 10:09:13','attack','204933415252787202 attacked Ravager#29.'),(1051,148942504077557760,'2018-06-24 10:09:14','attack','148942504077557760 attacked Ravager#29.'),(1052,204933415252787202,'2018-06-24 10:09:15','attack','204933415252787202 attacked Ravager#29.'),(1053,148942504077557760,'2018-06-24 10:09:23','attack','148942504077557760 attacked Ravager#29.'),(1054,204933415252787202,'2018-06-24 10:09:26','attack','204933415252787202 attacked Ravager#29.'),(1055,148942504077557760,'2018-06-24 10:09:31','attack','148942504077557760 attacked Ravager#29.'),(1056,204933415252787202,'2018-06-24 10:09:48','claim','204933415252787202 claimed 3 crystals from a Ravager.'),(1057,148942504077557760,'2018-06-24 10:09:55','claim','148942504077557760 claimed 3 crystals from a Ravager.'),(1058,148942504077557760,'2018-06-24 10:17:12','deposit','Deposited 3 crystals to 457312250147897366.'),(1059,204933415252787202,'2018-06-24 10:18:53','attack','204933415252787202 attacked Ravager#30.'),(1060,204933415252787202,'2018-06-24 10:18:55','attack','204933415252787202 attacked Ravager#30.'),(1061,204933415252787202,'2018-06-24 10:18:57','attack','204933415252787202 attacked Ravager#30.'),(1062,204933415252787202,'2018-06-24 10:18:58','attack','204933415252787202 attacked Ravager#30.'),(1063,148942504077557760,'2018-06-24 10:18:59','attack','148942504077557760 attacked Ravager#30.'),(1064,204933415252787202,'2018-06-24 10:19:00','attack','204933415252787202 attacked Ravager#30.'),(1065,148942504077557760,'2018-06-24 10:19:00','attack','148942504077557760 attacked Ravager#30.'),(1066,204933415252787202,'2018-06-24 10:19:01','attack','204933415252787202 attacked Ravager#30.'),(1067,148942504077557760,'2018-06-24 10:19:02','attack','148942504077557760 attacked Ravager#30.'),(1068,204933415252787202,'2018-06-24 10:19:02','attack','204933415252787202 attacked Ravager#30.'),(1069,148942504077557760,'2018-06-24 10:19:03','attack','148942504077557760 attacked Ravager#30.'),(1070,204933415252787202,'2018-06-24 10:19:04','attack','204933415252787202 attacked Ravager#30.'),(1071,148942504077557760,'2018-06-24 10:19:05','attack','148942504077557760 attacked Ravager#30.'),(1072,204933415252787202,'2018-06-24 10:19:06','attack','204933415252787202 attacked Ravager#30.'),(1073,204933415252787202,'2018-06-24 10:19:07','attack','204933415252787202 attacked Ravager#30.'),(1074,148942504077557760,'2018-06-24 10:19:07','attack','148942504077557760 attacked Ravager#30.'),(1075,204933415252787202,'2018-06-24 10:19:09','attack','204933415252787202 attacked Ravager#30.'),(1076,148942504077557760,'2018-06-24 10:19:10','attack','148942504077557760 attacked Ravager#30.'),(1077,204933415252787202,'2018-06-24 10:19:10','attack','204933415252787202 attacked Ravager#30.'),(1078,148942504077557760,'2018-06-24 10:19:11','attack','148942504077557760 attacked Ravager#30.'),(1079,204933415252787202,'2018-06-24 10:19:11','attack','204933415252787202 attacked Ravager#30.'),(1080,148942504077557760,'2018-06-24 10:19:12','attack','148942504077557760 attacked Ravager#30.'),(1081,204933415252787202,'2018-06-24 10:19:13','attack','204933415252787202 attacked Ravager#30.'),(1082,148942504077557760,'2018-06-24 10:29:09','attack','148942504077557760 attacked Ravager#31.'),(1083,204933415252787202,'2018-06-24 10:29:09','attack','204933415252787202 attacked Ravager#31.'),(1084,148942504077557760,'2018-06-24 10:29:10','attack','148942504077557760 attacked Ravager#31.'),(1085,148942504077557760,'2018-06-24 10:29:10','attack','148942504077557760 attacked Ravager#31.'),(1086,148942504077557760,'2018-06-24 10:29:11','attack','148942504077557760 attacked Ravager#31.'),(1087,148942504077557760,'2018-06-24 10:29:12','attack','148942504077557760 attacked Ravager#31.'),(1088,204933415252787202,'2018-06-24 10:29:14','attack','204933415252787202 attacked Ravager#31.'),(1089,148942504077557760,'2018-06-24 10:29:17','attack','148942504077557760 attacked Ravager#31.'),(1090,204933415252787202,'2018-06-24 10:29:19','attack','204933415252787202 attacked Ravager#31.'),(1091,148942504077557760,'2018-06-24 10:29:19','attack','148942504077557760 attacked Ravager#31.'),(1092,148942504077557760,'2018-06-24 10:29:21','attack','148942504077557760 attacked Ravager#31.'),(1093,204933415252787202,'2018-06-24 10:29:22','attack','204933415252787202 attacked Ravager#31.'),(1094,148942504077557760,'2018-06-24 10:29:23','attack','148942504077557760 attacked Ravager#31.'),(1095,204933415252787202,'2018-06-24 10:29:25','attack','204933415252787202 attacked Ravager#31.'),(1096,204933415252787202,'2018-06-24 10:29:28','attack','204933415252787202 attacked Ravager#31.'),(1097,148942504077557760,'2018-06-24 10:29:32','claim','148942504077557760 claimed 18 crystals from a Ravager.'),(1098,262771588946984963,'2018-06-24 10:46:27','checkin','Checked in for 5 crystals.'),(1099,262771588946984963,'2018-06-24 10:49:05','deposit','Deposited 5 crystals to 457312250147897366.'),(1100,204933415252787202,'2018-06-24 11:08:51','attack','204933415252787202 attacked Ravager#32.'),(1101,204933415252787202,'2018-06-24 11:08:53','attack','204933415252787202 attacked Ravager#32.'),(1102,204933415252787202,'2018-06-24 11:08:54','attack','204933415252787202 attacked Ravager#32.'),(1103,204933415252787202,'2018-06-24 11:08:55','attack','204933415252787202 attacked Ravager#32.'),(1104,204933415252787202,'2018-06-24 11:08:56','attack','204933415252787202 attacked Ravager#32.'),(1105,204933415252787202,'2018-06-24 11:08:58','attack','204933415252787202 attacked Ravager#32.'),(1106,204933415252787202,'2018-06-24 11:08:59','attack','204933415252787202 attacked Ravager#32.'),(1107,204933415252787202,'2018-06-24 11:09:00','attack','204933415252787202 attacked Ravager#32.'),(1108,204933415252787202,'2018-06-24 11:09:01','attack','204933415252787202 attacked Ravager#32.'),(1109,204933415252787202,'2018-06-24 11:09:02','attack','204933415252787202 attacked Ravager#32.'),(1110,204933415252787202,'2018-06-24 11:09:03','attack','204933415252787202 attacked Ravager#32.'),(1111,204933415252787202,'2018-06-24 11:09:05','attack','204933415252787202 attacked Ravager#32.'),(1112,204933415252787202,'2018-06-24 11:09:06','attack','204933415252787202 attacked Ravager#32.'),(1113,204933415252787202,'2018-06-24 11:09:07','attack','204933415252787202 attacked Ravager#32.'),(1114,204933415252787202,'2018-06-24 11:09:14','claim','204933415252787202 claimed 13 crystals from a Ravager.'),(1115,204933415252787202,'2018-06-24 11:18:48','attack','204933415252787202 attacked Ravager#33.'),(1116,204933415252787202,'2018-06-24 11:18:51','attack','204933415252787202 attacked Ravager#33.'),(1117,204933415252787202,'2018-06-24 11:18:55','attack','204933415252787202 attacked Ravager#33.'),(1118,204933415252787202,'2018-06-24 11:18:57','attack','204933415252787202 attacked Ravager#33.'),(1119,204933415252787202,'2018-06-24 11:18:59','attack','204933415252787202 attacked Ravager#33.'),(1120,204933415252787202,'2018-06-24 11:19:01','attack','204933415252787202 attacked Ravager#33.'),(1121,204933415252787202,'2018-06-24 11:19:02','attack','204933415252787202 attacked Ravager#33.'),(1122,204933415252787202,'2018-06-24 11:19:04','attack','204933415252787202 attacked Ravager#33.'),(1123,204933415252787202,'2018-06-24 11:19:06','attack','204933415252787202 attacked Ravager#33.'),(1124,204933415252787202,'2018-06-24 11:19:08','attack','204933415252787202 attacked Ravager#33.'),(1125,204933415252787202,'2018-06-24 11:19:10','attack','204933415252787202 attacked Ravager#33.'),(1126,204933415252787202,'2018-06-24 11:19:11','attack','204933415252787202 attacked Ravager#33.'),(1127,204933415252787202,'2018-06-24 11:19:12','attack','204933415252787202 attacked Ravager#33.'),(1128,204933415252787202,'2018-06-24 11:19:14','attack','204933415252787202 attacked Ravager#33.'),(1129,204933415252787202,'2018-06-24 11:19:15','attack','204933415252787202 attacked Ravager#33.'),(1130,204933415252787202,'2018-06-24 11:19:16','attack','204933415252787202 attacked Ravager#33.'),(1131,204933415252787202,'2018-06-24 11:19:17','attack','204933415252787202 attacked Ravager#33.'),(1132,204933415252787202,'2018-06-24 11:19:20','attack','204933415252787202 attacked Ravager#33.'),(1133,204933415252787202,'2018-06-24 11:19:21','attack','204933415252787202 attacked Ravager#33.'),(1134,204933415252787202,'2018-06-24 11:19:22','attack','204933415252787202 attacked Ravager#33.'),(1135,204933415252787202,'2018-06-24 11:19:23','attack','204933415252787202 attacked Ravager#33.'),(1136,204933415252787202,'2018-06-24 11:19:25','attack','204933415252787202 attacked Ravager#33.'),(1137,204933415252787202,'2018-06-24 11:19:26','attack','204933415252787202 attacked Ravager#33.'),(1138,204933415252787202,'2018-06-24 11:19:27','attack','204933415252787202 attacked Ravager#33.'),(1139,148942504077557760,'2018-06-24 11:19:33','claim','148942504077557760 claimed 10 crystals from a Ravager.'),(1140,204933415252787202,'2018-06-24 11:19:50','claim','204933415252787202 claimed 10 crystals from a Ravager.'),(1141,204933415252787202,'2018-06-24 11:29:02','attack','204933415252787202 attacked Ravager#34.'),(1142,148942504077557760,'2018-06-24 11:29:17','attack','148942504077557760 attacked Ravager#34.'),(1143,204933415252787202,'2018-06-24 11:29:18','attack','204933415252787202 attacked Ravager#34.'),(1144,148942504077557760,'2018-06-24 11:29:19','attack','148942504077557760 attacked Ravager#34.'),(1145,204933415252787202,'2018-06-24 11:29:19','attack','204933415252787202 attacked Ravager#34.'),(1146,204933415252787202,'2018-06-24 11:29:21','attack','204933415252787202 attacked Ravager#34.'),(1147,148942504077557760,'2018-06-24 11:29:22','attack','148942504077557760 attacked Ravager#34.'),(1148,204933415252787202,'2018-06-24 11:29:23','attack','204933415252787202 attacked Ravager#34.'),(1149,148942504077557760,'2018-06-24 11:29:24','attack','148942504077557760 attacked Ravager#34.'),(1150,204933415252787202,'2018-06-24 11:29:25','attack','204933415252787202 attacked Ravager#34.'),(1151,148942504077557760,'2018-06-24 11:29:26','attack','148942504077557760 attacked Ravager#34.'),(1152,204933415252787202,'2018-06-24 11:29:27','attack','204933415252787202 attacked Ravager#34.'),(1153,148942504077557760,'2018-06-24 11:29:28','attack','148942504077557760 attacked Ravager#34.'),(1154,204933415252787202,'2018-06-24 11:29:29','attack','204933415252787202 attacked Ravager#34.'),(1155,148942504077557760,'2018-06-24 11:29:30','attack','148942504077557760 attacked Ravager#34.'),(1156,204933415252787202,'2018-06-24 11:29:30','attack','204933415252787202 attacked Ravager#34.'),(1157,148942504077557760,'2018-06-24 11:29:31','attack','148942504077557760 attacked Ravager#34.'),(1158,204933415252787202,'2018-06-24 11:29:32','attack','204933415252787202 attacked Ravager#34.'),(1159,204933415252787202,'2018-06-24 11:29:38','attack','204933415252787202 attacked Ravager#34.'),(1160,148942504077557760,'2018-06-24 11:29:40','attack','148942504077557760 attacked Ravager#34.'),(1161,204933415252787202,'2018-06-24 11:29:42','attack','204933415252787202 attacked Ravager#34.'),(1162,148942504077557760,'2018-06-24 11:29:43','attack','148942504077557760 attacked Ravager#34.'),(1163,204933415252787202,'2018-06-24 11:29:45','attack','204933415252787202 attacked Ravager#34.'),(1164,148942504077557760,'2018-06-24 11:29:45','attack','148942504077557760 attacked Ravager#34.'),(1165,204933415252787202,'2018-06-24 11:29:47','attack','204933415252787202 attacked Ravager#34.'),(1166,204933415252787202,'2018-06-24 11:29:54','claim','204933415252787202 claimed 7 crystals from a Ravager.'),(1167,148942504077557760,'2018-06-24 11:29:55','claim','148942504077557760 claimed 7 crystals from a Ravager.'),(1168,148942504077557760,'2018-06-24 11:43:37','deposit','Deposited 35 crystals to 457312250147897366.'),(1169,205371990800990208,'2018-06-24 12:11:57','conversion','Converted to The Religion.'),(1170,211232684209340426,'2018-06-24 12:28:51','attack','211232684209340426 attacked Ravager#35.'),(1171,204933415252787202,'2018-06-24 12:28:53','attack','204933415252787202 attacked Ravager#35.'),(1172,211232684209340426,'2018-06-24 12:28:57','attack','211232684209340426 attacked Ravager#35.'),(1173,204933415252787202,'2018-06-24 12:29:02','attack','204933415252787202 attacked Ravager#35.'),(1174,211232684209340426,'2018-06-24 12:29:06','attack','211232684209340426 attacked Ravager#35.'),(1175,211232684209340426,'2018-06-24 12:29:08','attack','211232684209340426 attacked Ravager#35.'),(1176,211232684209340426,'2018-06-24 12:29:15','attack','211232684209340426 attacked Ravager#35.'),(1177,211232684209340426,'2018-06-24 12:29:17','attack','211232684209340426 attacked Ravager#35.'),(1178,148942504077557760,'2018-06-24 12:29:18','attack','148942504077557760 attacked Ravager#35.'),(1179,148942504077557760,'2018-06-24 12:29:20','attack','148942504077557760 attacked Ravager#35.'),(1180,211232684209340426,'2018-06-24 12:29:21','attack','211232684209340426 attacked Ravager#35.'),(1181,148942504077557760,'2018-06-24 12:29:21','attack','148942504077557760 attacked Ravager#35.'),(1182,148942504077557760,'2018-06-24 12:29:22','attack','148942504077557760 attacked Ravager#35.'),(1183,148942504077557760,'2018-06-24 12:29:24','attack','148942504077557760 attacked Ravager#35.'),(1184,204933415252787202,'2018-06-24 12:29:25','attack','204933415252787202 attacked Ravager#35.'),(1185,148942504077557760,'2018-06-24 12:29:26','attack','148942504077557760 attacked Ravager#35.'),(1186,148942504077557760,'2018-06-24 12:29:35','attack','148942504077557760 attacked Ravager#35.'),(1187,148942504077557760,'2018-06-24 12:29:38','attack','148942504077557760 attacked Ravager#35.'),(1188,204933415252787202,'2018-06-24 12:29:39','attack','204933415252787202 attacked Ravager#35.'),(1189,148942504077557760,'2018-06-24 12:29:40','attack','148942504077557760 attacked Ravager#35.'),(1190,148942504077557760,'2018-06-24 12:29:41','attack','148942504077557760 attacked Ravager#35.'),(1191,148942504077557760,'2018-06-24 12:29:43','attack','148942504077557760 attacked Ravager#35.'),(1192,148942504077557760,'2018-06-24 12:29:44','attack','148942504077557760 attacked Ravager#35.'),(1193,204933415252787202,'2018-06-24 12:29:44','attack','204933415252787202 attacked Ravager#35.'),(1194,148942504077557760,'2018-06-24 12:29:46','attack','148942504077557760 attacked Ravager#35.'),(1195,204933415252787202,'2018-06-24 12:30:07','attack','204933415252787202 attacked Ravager#35.'),(1196,148942504077557760,'2018-06-24 12:30:26','claim','148942504077557760 claimed 16 crystals from a Ravager.'),(1197,204933415252787202,'2018-06-24 13:19:09','attack','204933415252787202 attacked Ravager#36.'),(1198,204933415252787202,'2018-06-24 13:19:24','attack','204933415252787202 attacked Ravager#36.'),(1199,204933415252787202,'2018-06-24 13:19:30','attack','204933415252787202 attacked Ravager#36.'),(1200,204933415252787202,'2018-06-24 13:19:32','attack','204933415252787202 attacked Ravager#36.'),(1201,204933415252787202,'2018-06-24 13:19:35','attack','204933415252787202 attacked Ravager#36.'),(1202,204933415252787202,'2018-06-24 13:19:37','attack','204933415252787202 attacked Ravager#36.'),(1203,204933415252787202,'2018-06-24 13:19:40','attack','204933415252787202 attacked Ravager#36.'),(1204,204933415252787202,'2018-06-24 13:19:44','attack','204933415252787202 attacked Ravager#36.'),(1205,204933415252787202,'2018-06-24 13:19:47','attack','204933415252787202 attacked Ravager#36.'),(1206,204933415252787202,'2018-06-24 13:19:50','attack','204933415252787202 attacked Ravager#36.'),(1207,204933415252787202,'2018-06-24 13:19:53','attack','204933415252787202 attacked Ravager#36.'),(1208,204933415252787202,'2018-06-24 13:19:56','attack','204933415252787202 attacked Ravager#36.'),(1209,204933415252787202,'2018-06-24 13:20:01','attack','204933415252787202 attacked Ravager#36.'),(1210,204933415252787202,'2018-06-24 13:20:07','attack','204933415252787202 attacked Ravager#36.'),(1211,204933415252787202,'2018-06-24 13:20:10','attack','204933415252787202 attacked Ravager#36.'),(1212,204933415252787202,'2018-06-24 13:20:26','attack','204933415252787202 attacked Ravager#36.'),(1213,204933415252787202,'2018-06-24 13:20:28','attack','204933415252787202 attacked Ravager#36.'),(1214,204933415252787202,'2018-06-24 13:20:31','attack','204933415252787202 attacked Ravager#36.'),(1215,204933415252787202,'2018-06-24 13:20:35','attack','204933415252787202 attacked Ravager#36.'),(1216,204933415252787202,'2018-06-24 13:20:39','claim','204933415252787202 claimed 10 crystals from a Ravager.'),(1217,204933415252787202,'2018-06-24 13:28:51','attack','204933415252787202 attacked Ravager#37.'),(1218,204933415252787202,'2018-06-24 13:28:54','attack','204933415252787202 attacked Ravager#37.'),(1219,204933415252787202,'2018-06-24 13:28:56','attack','204933415252787202 attacked Ravager#37.'),(1220,204933415252787202,'2018-06-24 13:29:00','attack','204933415252787202 attacked Ravager#37.'),(1221,204933415252787202,'2018-06-24 13:29:03','attack','204933415252787202 attacked Ravager#37.'),(1222,262771588946984963,'2018-06-24 13:29:04','attack','262771588946984963 attacked Ravager#37.'),(1223,204933415252787202,'2018-06-24 13:29:07','attack','204933415252787202 attacked Ravager#37.'),(1224,262771588946984963,'2018-06-24 13:29:08','attack','262771588946984963 attacked Ravager#37.'),(1225,204933415252787202,'2018-06-24 13:29:17','attack','204933415252787202 attacked Ravager#37.'),(1226,262771588946984963,'2018-06-24 13:29:19','attack','262771588946984963 attacked Ravager#37.'),(1227,262771588946984963,'2018-06-24 13:29:20','attack','262771588946984963 attacked Ravager#37.'),(1228,204933415252787202,'2018-06-24 13:29:20','attack','204933415252787202 attacked Ravager#37.'),(1229,262771588946984963,'2018-06-24 13:29:21','attack','262771588946984963 attacked Ravager#37.'),(1230,262771588946984963,'2018-06-24 13:29:21','attack','262771588946984963 attacked Ravager#37.'),(1231,262771588946984963,'2018-06-24 13:29:22','attack','262771588946984963 attacked Ravager#37.'),(1232,204933415252787202,'2018-06-24 13:29:23','attack','204933415252787202 attacked Ravager#37.'),(1233,262771588946984963,'2018-06-24 13:29:23','attack','262771588946984963 attacked Ravager#37.'),(1234,262771588946984963,'2018-06-24 13:29:24','attack','262771588946984963 attacked Ravager#37.'),(1235,262771588946984963,'2018-06-24 13:29:24','attack','262771588946984963 attacked Ravager#37.'),(1236,204933415252787202,'2018-06-24 13:29:25','attack','204933415252787202 attacked Ravager#37.'),(1237,262771588946984963,'2018-06-24 13:29:25','attack','262771588946984963 attacked Ravager#37.'),(1238,262771588946984963,'2018-06-24 13:29:26','attack','262771588946984963 attacked Ravager#37.'),(1239,262771588946984963,'2018-06-24 13:29:27','attack','262771588946984963 attacked Ravager#37.'),(1240,204933415252787202,'2018-06-24 13:29:27','attack','204933415252787202 attacked Ravager#37.'),(1241,262771588946984963,'2018-06-24 13:29:28','attack','262771588946984963 attacked Ravager#37.'),(1242,262771588946984963,'2018-06-24 13:29:28','attack','262771588946984963 attacked Ravager#37.'),(1243,262771588946984963,'2018-06-24 13:29:29','attack','262771588946984963 attacked Ravager#37.'),(1244,262771588946984963,'2018-06-24 13:29:29','attack','262771588946984963 attacked Ravager#37.'),(1245,262771588946984963,'2018-06-24 13:29:30','attack','262771588946984963 attacked Ravager#37.'),(1246,262771588946984963,'2018-06-24 13:29:31','attack','262771588946984963 attacked Ravager#37.'),(1247,433759248800022532,'2018-06-24 14:18:50','attack','433759248800022532 attacked Ravager#38.'),(1248,433759248800022532,'2018-06-24 14:18:52','attack','433759248800022532 attacked Ravager#38.'),(1249,433759248800022532,'2018-06-24 14:18:54','attack','433759248800022532 attacked Ravager#38.'),(1250,433759248800022532,'2018-06-24 14:18:55','attack','433759248800022532 attacked Ravager#38.'),(1251,433759248800022532,'2018-06-24 14:18:56','attack','433759248800022532 attacked Ravager#38.'),(1252,204933415252787202,'2018-06-24 14:18:57','attack','204933415252787202 attacked Ravager#38.'),(1253,433759248800022532,'2018-06-24 14:19:01','attack','433759248800022532 attacked Ravager#38.'),(1254,433759248800022532,'2018-06-24 14:19:02','attack','433759248800022532 attacked Ravager#38.'),(1255,433759248800022532,'2018-06-24 14:19:03','attack','433759248800022532 attacked Ravager#38.'),(1256,433759248800022532,'2018-06-24 14:19:04','attack','433759248800022532 attacked Ravager#38.'),(1257,433759248800022532,'2018-06-24 14:19:06','attack','433759248800022532 attacked Ravager#38.'),(1258,433759248800022532,'2018-06-24 14:19:09','attack','433759248800022532 attacked Ravager#38.'),(1259,433759248800022532,'2018-06-24 14:19:09','attack','433759248800022532 attacked Ravager#38.'),(1260,433759248800022532,'2018-06-24 14:19:12','attack','433759248800022532 attacked Ravager#38.'),(1261,433759248800022532,'2018-06-24 14:19:13','attack','433759248800022532 attacked Ravager#38.'),(1262,262771588946984963,'2018-06-24 14:19:13','attack','262771588946984963 attacked Ravager#38.'),(1263,433759248800022532,'2018-06-24 14:19:14','attack','433759248800022532 attacked Ravager#38.'),(1264,204933415252787202,'2018-06-24 14:19:16','attack','204933415252787202 attacked Ravager#38.'),(1265,433759248800022532,'2018-06-24 14:19:16','attack','433759248800022532 attacked Ravager#38.'),(1266,433759248800022532,'2018-06-24 14:19:17','attack','433759248800022532 attacked Ravager#38.'),(1267,433759248800022532,'2018-06-24 14:19:18','attack','433759248800022532 attacked Ravager#38.'),(1268,262771588946984963,'2018-06-24 14:19:19','attack','262771588946984963 attacked Ravager#38.'),(1269,204933415252787202,'2018-06-24 14:19:21','attack','204933415252787202 attacked Ravager#38.'),(1270,204933415252787202,'2018-06-24 14:19:24','attack','204933415252787202 attacked Ravager#38.'),(1271,433759248800022532,'2018-06-24 14:19:25','attack','433759248800022532 attacked Ravager#38.'),(1272,262771588946984963,'2018-06-24 14:19:26','attack','262771588946984963 attacked Ravager#38.'),(1273,433759248800022532,'2018-06-24 14:19:26','attack','433759248800022532 attacked Ravager#38.'),(1274,433759248800022532,'2018-06-24 14:19:28','attack','433759248800022532 attacked Ravager#38.'),(1275,262771588946984963,'2018-06-24 14:19:29','attack','262771588946984963 attacked Ravager#38.'),(1276,433759248800022532,'2018-06-24 14:19:29','attack','433759248800022532 attacked Ravager#38.'),(1277,262771588946984963,'2018-06-24 14:19:39','attack','262771588946984963 attacked Ravager#38.'),(1278,433759248800022532,'2018-06-24 14:19:44','claim','433759248800022532 claimed 10 crystals from a Ravager.'),(1279,424563962303086594,'2018-06-24 14:37:47','checkin','Checked in for 6 crystals.'),(1280,459883167160205313,'2018-06-24 14:45:43','checkin','Checked in for 9 crystals.'),(1281,459883167160205313,'2018-06-24 14:45:46','deposit','Deposited 9 crystals to 457312250147897366.'),(1282,201102155896193024,'2018-06-24 14:48:57','attack','201102155896193024 attacked Ravager#39.'),(1283,201102155896193024,'2018-06-24 14:48:59','attack','201102155896193024 attacked Ravager#39.'),(1284,201102155896193024,'2018-06-24 14:49:01','attack','201102155896193024 attacked Ravager#39.'),(1285,201102155896193024,'2018-06-24 14:49:03','attack','201102155896193024 attacked Ravager#39.'),(1286,201102155896193024,'2018-06-24 14:49:04','attack','201102155896193024 attacked Ravager#39.'),(1287,201102155896193024,'2018-06-24 14:49:06','attack','201102155896193024 attacked Ravager#39.'),(1288,201102155896193024,'2018-06-24 14:49:08','attack','201102155896193024 attacked Ravager#39.'),(1289,201102155896193024,'2018-06-24 14:49:09','attack','201102155896193024 attacked Ravager#39.'),(1290,201102155896193024,'2018-06-24 14:49:13','attack','201102155896193024 attacked Ravager#39.'),(1291,201102155896193024,'2018-06-24 14:49:16','attack','201102155896193024 attacked Ravager#39.'),(1292,201102155896193024,'2018-06-24 14:49:18','attack','201102155896193024 attacked Ravager#39.'),(1293,201102155896193024,'2018-06-24 14:49:20','attack','201102155896193024 attacked Ravager#39.'),(1294,201102155896193024,'2018-06-24 14:49:22','attack','201102155896193024 attacked Ravager#39.'),(1295,201102155896193024,'2018-06-24 14:49:24','attack','201102155896193024 attacked Ravager#39.'),(1296,204933415252787202,'2018-06-24 14:49:29','attack','204933415252787202 attacked Ravager#39.'),(1297,204933415252787202,'2018-06-24 14:49:38','claim','204933415252787202 claimed 5 crystals from a Ravager.'),(1298,205371990800990208,'2018-06-24 15:03:38','checkin','Checked in for 9 crystals.'),(1299,205371990800990208,'2018-06-24 15:03:46','deposit','Deposited 9 crystals to 457312250147897366.'),(1300,459876383431327746,'2018-06-24 15:07:20','checkin','Checked in for 4 crystals.'),(1301,459876383431327746,'2018-06-24 15:07:25','deposit','Deposited 4 crystals to 457312250147897366.'),(1302,200340393596944384,'2018-06-24 15:19:02','attack','200340393596944384 attacked Ravager#40.'),(1303,200340393596944384,'2018-06-24 15:19:04','attack','200340393596944384 attacked Ravager#40.'),(1304,200340393596944384,'2018-06-24 15:19:06','attack','200340393596944384 attacked Ravager#40.'),(1305,200340393596944384,'2018-06-24 15:19:07','attack','200340393596944384 attacked Ravager#40.'),(1306,200340393596944384,'2018-06-24 15:19:08','attack','200340393596944384 attacked Ravager#40.'),(1307,204933415252787202,'2018-06-24 15:19:11','attack','204933415252787202 attacked Ravager#40.'),(1308,204933415252787202,'2018-06-24 15:19:22','attack','204933415252787202 attacked Ravager#40.'),(1309,200340393596944384,'2018-06-24 15:19:23','attack','200340393596944384 attacked Ravager#40.'),(1310,200340393596944384,'2018-06-24 15:19:26','attack','200340393596944384 attacked Ravager#40.'),(1311,204933415252787202,'2018-06-24 15:19:26','attack','204933415252787202 attacked Ravager#40.'),(1312,200340393596944384,'2018-06-24 15:19:28','attack','200340393596944384 attacked Ravager#40.'),(1313,200340393596944384,'2018-06-24 15:19:29','attack','200340393596944384 attacked Ravager#40.'),(1314,200340393596944384,'2018-06-24 15:19:30','attack','200340393596944384 attacked Ravager#40.'),(1315,200340393596944384,'2018-06-24 15:19:33','attack','200340393596944384 attacked Ravager#40.'),(1316,204933415252787202,'2018-06-24 15:19:33','attack','204933415252787202 attacked Ravager#40.'),(1317,200340393596944384,'2018-06-24 15:19:36','attack','200340393596944384 attacked Ravager#40.'),(1318,200340393596944384,'2018-06-24 15:19:39','claim','200340393596944384 claimed 5 crystals from a Ravager.'),(1319,297748308523483138,'2018-06-24 15:28:13','checkin','Checked in for 7 crystals.'),(1320,201102155896193024,'2018-06-24 15:38:48','attack','201102155896193024 attacked Ravager#41.'),(1321,201102155896193024,'2018-06-24 15:38:50','attack','201102155896193024 attacked Ravager#41.'),(1322,200340393596944384,'2018-06-24 15:38:52','attack','200340393596944384 attacked Ravager#41.'),(1323,201102155896193024,'2018-06-24 15:38:52','attack','201102155896193024 attacked Ravager#41.'),(1324,201102155896193024,'2018-06-24 15:38:54','attack','201102155896193024 attacked Ravager#41.'),(1325,201102155896193024,'2018-06-24 15:38:56','attack','201102155896193024 attacked Ravager#41.'),(1326,200340393596944384,'2018-06-24 15:38:56','attack','200340393596944384 attacked Ravager#41.'),(1327,286105785052954626,'2018-06-24 15:38:57','attack','286105785052954626 attacked Ravager#41.'),(1328,201102155896193024,'2018-06-24 15:38:59','attack','201102155896193024 attacked Ravager#41.'),(1329,200340393596944384,'2018-06-24 15:38:59','attack','200340393596944384 attacked Ravager#41.'),(1330,200340393596944384,'2018-06-24 15:39:01','attack','200340393596944384 attacked Ravager#41.'),(1331,200340393596944384,'2018-06-24 15:39:03','attack','200340393596944384 attacked Ravager#41.'),(1332,200340393596944384,'2018-06-24 15:39:15','attack','200340393596944384 attacked Ravager#41.'),(1333,201102155896193024,'2018-06-24 15:39:20','claim','201102155896193024 claimed 5 crystals from a Ravager.'),(1334,201102155896193024,'2018-06-24 15:39:25','claim','201102155896193024 claimed 3 crystals from a Ravager.'),(1335,201102155896193024,'2018-06-24 15:45:18','deposit','Deposited 13 crystals to 457312250147897366.'),(1336,244472475662942216,'2018-06-24 15:58:24','checkin','Checked in for 4 crystals.'),(1337,274301199841361920,'2018-06-24 16:30:08','attack','274301199841361920 attacked Ravager#42.'),(1338,274301199841361920,'2018-06-24 16:30:08','attack','274301199841361920 attacked Ravager#42.'),(1339,274301199841361920,'2018-06-24 16:30:09','attack','274301199841361920 attacked Ravager#42.'),(1340,274301199841361920,'2018-06-24 16:30:09','attack','274301199841361920 attacked Ravager#42.'),(1341,274301199841361920,'2018-06-24 16:30:10','attack','274301199841361920 attacked Ravager#42.'),(1342,274301199841361920,'2018-06-24 16:30:10','attack','274301199841361920 attacked Ravager#42.'),(1343,274301199841361920,'2018-06-24 16:30:10','attack','274301199841361920 attacked Ravager#42.'),(1344,274301199841361920,'2018-06-24 16:30:11','attack','274301199841361920 attacked Ravager#42.'),(1345,274301199841361920,'2018-06-24 16:30:11','attack','274301199841361920 attacked Ravager#42.'),(1346,200340393596944384,'2018-06-24 16:30:16','attack','200340393596944384 attacked Ravager#42.'),(1347,200340393596944384,'2018-06-24 16:30:33','attack','200340393596944384 attacked Ravager#42.'),(1348,200340393596944384,'2018-06-24 16:30:33','attack','200340393596944384 attacked Ravager#42.'),(1349,200340393596944384,'2018-06-24 16:30:34','attack','200340393596944384 attacked Ravager#42.'),(1350,200340393596944384,'2018-06-24 16:30:35','attack','200340393596944384 attacked Ravager#42.'),(1351,200340393596944384,'2018-06-24 16:30:36','attack','200340393596944384 attacked Ravager#42.'),(1352,200340393596944384,'2018-06-24 16:30:37','attack','200340393596944384 attacked Ravager#42.'),(1353,200340393596944384,'2018-06-24 16:30:44','attack','200340393596944384 attacked Ravager#42.'),(1354,200340393596944384,'2018-06-24 16:30:47','attack','200340393596944384 attacked Ravager#42.'),(1355,274301199841361920,'2018-06-24 16:30:48','attack','274301199841361920 attacked Ravager#42.'),(1356,200340393596944384,'2018-06-24 16:30:54','claim','200340393596944384 claimed 9 crystals from a Ravager.'),(1357,200340393596944384,'2018-06-24 16:31:02','transfer','200340393596944384 gave 5 crystals to 274301199841361920.'),(1358,274301199841361920,'2018-06-24 16:31:17','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(1359,262771588946984963,'2018-06-24 16:38:47','attack','262771588946984963 attacked Ravager#43.'),(1360,200340393596944384,'2018-06-24 16:38:52','attack','200340393596944384 attacked Ravager#43.'),(1361,200340393596944384,'2018-06-24 16:38:57','attack','200340393596944384 attacked Ravager#43.'),(1362,200340393596944384,'2018-06-24 16:38:58','attack','200340393596944384 attacked Ravager#43.'),(1363,200340393596944384,'2018-06-24 16:38:59','attack','200340393596944384 attacked Ravager#43.'),(1364,200340393596944384,'2018-06-24 16:39:00','attack','200340393596944384 attacked Ravager#43.'),(1365,200340393596944384,'2018-06-24 16:39:01','attack','200340393596944384 attacked Ravager#43.'),(1366,200340393596944384,'2018-06-24 16:39:02','attack','200340393596944384 attacked Ravager#43.'),(1367,200340393596944384,'2018-06-24 16:39:04','attack','200340393596944384 attacked Ravager#43.'),(1368,200340393596944384,'2018-06-24 16:39:07','attack','200340393596944384 attacked Ravager#43.'),(1369,200340393596944384,'2018-06-24 16:39:12','attack','200340393596944384 attacked Ravager#43.'),(1370,200340393596944384,'2018-06-24 16:39:15','attack','200340393596944384 attacked Ravager#43.'),(1371,274301199841361920,'2018-06-24 16:39:18','attack','274301199841361920 attacked Ravager#43.'),(1372,200340393596944384,'2018-06-24 16:39:18','attack','200340393596944384 attacked Ravager#43.'),(1373,274301199841361920,'2018-06-24 16:39:19','attack','274301199841361920 attacked Ravager#43.'),(1374,274301199841361920,'2018-06-24 16:39:19','attack','274301199841361920 attacked Ravager#43.'),(1375,274301199841361920,'2018-06-24 16:39:21','attack','274301199841361920 attacked Ravager#43.'),(1376,262771588946984963,'2018-06-24 16:39:24','claim','262771588946984963 claimed 8 crystals from a Ravager.'),(1377,200340393596944384,'2018-06-24 16:39:30','claim','200340393596944384 claimed 4 crystals from a Ravager.'),(1378,200340393596944384,'2018-06-24 16:39:47','transfer','200340393596944384 gave 2 crystals to 274301199841361920.'),(1379,262771588946984963,'2018-06-24 16:39:55','deposit','Deposited 8 crystals to 457312250147897366.'),(1380,204933415252787202,'2018-06-24 17:01:49','deposit','Deposited 72 crystals to 454460679244480512.'),(1381,204933415252787202,'2018-06-24 17:08:50','attack','204933415252787202 attacked Ravager#44.'),(1382,274301199841361920,'2018-06-24 17:08:56','attack','274301199841361920 attacked Ravager#44.'),(1383,274301199841361920,'2018-06-24 17:08:59','attack','274301199841361920 attacked Ravager#44.'),(1384,274301199841361920,'2018-06-24 17:09:02','attack','274301199841361920 attacked Ravager#44.'),(1385,204933415252787202,'2018-06-24 17:09:04','attack','204933415252787202 attacked Ravager#44.'),(1386,274301199841361920,'2018-06-24 17:09:06','attack','274301199841361920 attacked Ravager#44.'),(1387,204933415252787202,'2018-06-24 17:09:06','attack','204933415252787202 attacked Ravager#44.'),(1388,274301199841361920,'2018-06-24 17:09:09','attack','274301199841361920 attacked Ravager#44.'),(1389,274301199841361920,'2018-06-24 17:09:14','attack','274301199841361920 attacked Ravager#44.'),(1390,274301199841361920,'2018-06-24 17:09:18','attack','274301199841361920 attacked Ravager#44.'),(1391,274301199841361920,'2018-06-24 17:09:21','attack','274301199841361920 attacked Ravager#44.'),(1392,274301199841361920,'2018-06-24 17:09:25','attack','274301199841361920 attacked Ravager#44.'),(1393,204933415252787202,'2018-06-24 17:09:25','attack','204933415252787202 attacked Ravager#44.'),(1394,274301199841361920,'2018-06-24 17:09:29','attack','274301199841361920 attacked Ravager#44.'),(1395,204933415252787202,'2018-06-24 17:09:30','attack','204933415252787202 attacked Ravager#44.'),(1396,274301199841361920,'2018-06-24 17:09:32','attack','274301199841361920 attacked Ravager#44.'),(1397,204933415252787202,'2018-06-24 17:09:33','attack','204933415252787202 attacked Ravager#44.'),(1398,274301199841361920,'2018-06-24 17:09:36','claim','274301199841361920 claimed 8 crystals from a Ravager.'),(1399,204933415252787202,'2018-06-24 17:09:43','claim','204933415252787202 claimed 7 crystals from a Ravager.'),(1400,274301199841361920,'2018-06-24 17:10:07','transfer','274301199841361920 gave 4 crystals to 200340393596944384.'),(1401,262771588946984963,'2018-06-24 17:18:48','attack','262771588946984963 attacked Ravager#45.'),(1402,262771588946984963,'2018-06-24 17:18:56','attack','262771588946984963 attacked Ravager#45.'),(1403,262771588946984963,'2018-06-24 17:18:56','attack','262771588946984963 attacked Ravager#45.'),(1404,262771588946984963,'2018-06-24 17:18:57','attack','262771588946984963 attacked Ravager#45.'),(1405,262771588946984963,'2018-06-24 17:18:58','attack','262771588946984963 attacked Ravager#45.'),(1406,262771588946984963,'2018-06-24 17:18:58','attack','262771588946984963 attacked Ravager#45.'),(1407,262771588946984963,'2018-06-24 17:18:59','attack','262771588946984963 attacked Ravager#45.'),(1408,262771588946984963,'2018-06-24 17:18:59','attack','262771588946984963 attacked Ravager#45.'),(1409,262771588946984963,'2018-06-24 17:19:00','attack','262771588946984963 attacked Ravager#45.'),(1410,262771588946984963,'2018-06-24 17:19:01','attack','262771588946984963 attacked Ravager#45.'),(1411,274301199841361920,'2018-06-24 17:19:01','attack','274301199841361920 attacked Ravager#45.'),(1412,274301199841361920,'2018-06-24 17:19:04','attack','274301199841361920 attacked Ravager#45.'),(1413,274301199841361920,'2018-06-24 17:19:06','attack','274301199841361920 attacked Ravager#45.'),(1414,274301199841361920,'2018-06-24 17:19:09','attack','274301199841361920 attacked Ravager#45.'),(1415,274301199841361920,'2018-06-24 17:19:11','attack','274301199841361920 attacked Ravager#45.'),(1416,274301199841361920,'2018-06-24 17:19:15','attack','274301199841361920 attacked Ravager#45.'),(1417,274301199841361920,'2018-06-24 17:19:17','attack','274301199841361920 attacked Ravager#45.'),(1418,274301199841361920,'2018-06-24 17:19:19','attack','274301199841361920 attacked Ravager#45.'),(1419,274301199841361920,'2018-06-24 17:19:22','attack','274301199841361920 attacked Ravager#45.'),(1420,262771588946984963,'2018-06-24 17:19:26','claim','262771588946984963 claimed 8 crystals from a Ravager.'),(1421,262771588946984963,'2018-06-24 17:19:42','claim','262771588946984963 claimed 1 crystals from a Ravager.'),(1422,274301199841361920,'2018-06-24 17:19:46','claim','274301199841361920 claimed 8 crystals from a Ravager.'),(1423,262771588946984963,'2018-06-24 17:20:06','deposit','Deposited 9 crystals to 457312250147897366.'),(1424,274301199841361920,'2018-06-24 17:23:54','transfer','274301199841361920 gave 4 crystals to 249535509280456705.'),(1425,201102155896193024,'2018-06-24 17:28:47','attack','201102155896193024 attacked Ravager#46.'),(1426,262771588946984963,'2018-06-24 17:28:48','attack','262771588946984963 attacked Ravager#46.'),(1427,201102155896193024,'2018-06-24 17:28:49','attack','201102155896193024 attacked Ravager#46.'),(1428,201102155896193024,'2018-06-24 17:28:51','attack','201102155896193024 attacked Ravager#46.'),(1429,201102155896193024,'2018-06-24 17:28:53','attack','201102155896193024 attacked Ravager#46.'),(1430,204933415252787202,'2018-06-24 17:28:54','attack','204933415252787202 attacked Ravager#46.'),(1431,274301199841361920,'2018-06-24 17:28:54','attack','274301199841361920 attacked Ravager#46.'),(1432,204933415252787202,'2018-06-24 17:28:56','attack','204933415252787202 attacked Ravager#46.'),(1433,274301199841361920,'2018-06-24 17:28:56','attack','274301199841361920 attacked Ravager#46.'),(1434,201102155896193024,'2018-06-24 17:28:56','attack','201102155896193024 attacked Ravager#46.'),(1435,204933415252787202,'2018-06-24 17:28:58','attack','204933415252787202 attacked Ravager#46.'),(1436,201102155896193024,'2018-06-24 17:28:59','attack','201102155896193024 attacked Ravager#46.'),(1437,274301199841361920,'2018-06-24 17:28:59','attack','274301199841361920 attacked Ravager#46.'),(1438,204933415252787202,'2018-06-24 17:29:01','attack','204933415252787202 attacked Ravager#46.'),(1439,201102155896193024,'2018-06-24 17:29:01','attack','201102155896193024 attacked Ravager#46.'),(1440,274301199841361920,'2018-06-24 17:29:02','attack','274301199841361920 attacked Ravager#46.'),(1441,204933415252787202,'2018-06-24 17:29:03','attack','204933415252787202 attacked Ravager#46.'),(1442,201102155896193024,'2018-06-24 17:29:04','attack','201102155896193024 attacked Ravager#46.'),(1443,274301199841361920,'2018-06-24 17:29:06','attack','274301199841361920 attacked Ravager#46.'),(1444,204933415252787202,'2018-06-24 17:29:07','attack','204933415252787202 attacked Ravager#46.'),(1445,204933415252787202,'2018-06-24 17:29:22','attack','204933415252787202 attacked Ravager#46.'),(1446,274301199841361920,'2018-06-24 17:29:25','claim','274301199841361920 claimed 10 crystals from a Ravager.'),(1447,201102155896193024,'2018-06-24 17:29:27','claim','201102155896193024 claimed 5 crystals from a Ravager.'),(1448,201102155896193024,'2018-06-24 17:29:32','claim','201102155896193024 claimed 3 crystals from a Ravager.'),(1449,201102155896193024,'2018-06-24 17:30:19','deposit','Deposited 8 crystals to 457312250147897366.'),(1450,274301199841361920,'2018-06-24 17:31:44','deposit','Deposited 36 crystals to 454460756520337418.'),(1451,201102155896193024,'2018-06-24 17:38:47','attack','201102155896193024 attacked Ravager#47.'),(1452,201102155896193024,'2018-06-24 17:38:53','attack','201102155896193024 attacked Ravager#47.'),(1453,204933415252787202,'2018-06-24 17:38:54','attack','204933415252787202 attacked Ravager#47.'),(1454,201102155896193024,'2018-06-24 17:38:55','attack','201102155896193024 attacked Ravager#47.'),(1455,201102155896193024,'2018-06-24 17:38:56','attack','201102155896193024 attacked Ravager#47.'),(1456,204933415252787202,'2018-06-24 17:38:57','attack','204933415252787202 attacked Ravager#47.'),(1457,201102155896193024,'2018-06-24 17:38:58','attack','201102155896193024 attacked Ravager#47.'),(1458,204933415252787202,'2018-06-24 17:38:59','attack','204933415252787202 attacked Ravager#47.'),(1459,201102155896193024,'2018-06-24 17:38:59','attack','201102155896193024 attacked Ravager#47.'),(1460,201102155896193024,'2018-06-24 17:39:01','attack','201102155896193024 attacked Ravager#47.'),(1461,201102155896193024,'2018-06-24 17:39:03','attack','201102155896193024 attacked Ravager#47.'),(1462,204933415252787202,'2018-06-24 17:39:03','attack','204933415252787202 attacked Ravager#47.'),(1463,201102155896193024,'2018-06-24 17:39:05','attack','201102155896193024 attacked Ravager#47.'),(1464,204933415252787202,'2018-06-24 17:39:06','attack','204933415252787202 attacked Ravager#47.'),(1465,201102155896193024,'2018-06-24 17:39:06','attack','201102155896193024 attacked Ravager#47.'),(1466,204933415252787202,'2018-06-24 17:39:08','attack','204933415252787202 attacked Ravager#47.'),(1467,201102155896193024,'2018-06-24 17:39:08','attack','201102155896193024 attacked Ravager#47.'),(1468,201102155896193024,'2018-06-24 17:39:11','attack','201102155896193024 attacked Ravager#47.'),(1469,201102155896193024,'2018-06-24 17:39:14','attack','201102155896193024 attacked Ravager#47.'),(1470,204933415252787202,'2018-06-24 17:39:16','attack','204933415252787202 attacked Ravager#47.'),(1471,201102155896193024,'2018-06-24 17:39:16','attack','201102155896193024 attacked Ravager#47.'),(1472,201102155896193024,'2018-06-24 17:39:18','attack','201102155896193024 attacked Ravager#47.'),(1473,204933415252787202,'2018-06-24 17:39:19','attack','204933415252787202 attacked Ravager#47.'),(1474,201102155896193024,'2018-06-24 17:39:20','attack','201102155896193024 attacked Ravager#47.'),(1475,204933415252787202,'2018-06-24 17:39:22','attack','204933415252787202 attacked Ravager#47.'),(1476,201102155896193024,'2018-06-24 17:39:24','claim','201102155896193024 claimed 5 crystals from a Ravager.'),(1477,201102155896193024,'2018-06-24 17:39:28','claim','201102155896193024 claimed 5 crystals from a Ravager.'),(1478,201102155896193024,'2018-06-24 17:39:31','claim','201102155896193024 claimed 1 crystals from a Ravager.'),(1479,201102155896193024,'2018-06-24 17:39:35','claim','201102155896193024 claimed 6 crystals from a Ravager.'),(1480,201102155896193024,'2018-06-24 17:40:36','deposit','Deposited 17 crystals to 457312250147897366.'),(1481,204933415252787202,'2018-06-24 18:08:54','attack','204933415252787202 attacked Ravager#48.'),(1482,204933415252787202,'2018-06-24 18:08:57','attack','204933415252787202 attacked Ravager#48.'),(1483,204933415252787202,'2018-06-24 18:08:59','attack','204933415252787202 attacked Ravager#48.'),(1484,204933415252787202,'2018-06-24 18:09:02','attack','204933415252787202 attacked Ravager#48.'),(1485,204933415252787202,'2018-06-24 18:09:05','attack','204933415252787202 attacked Ravager#48.'),(1486,204933415252787202,'2018-06-24 18:09:06','attack','204933415252787202 attacked Ravager#48.'),(1487,204933415252787202,'2018-06-24 18:09:10','attack','204933415252787202 attacked Ravager#48.'),(1488,204933415252787202,'2018-06-24 18:09:11','attack','204933415252787202 attacked Ravager#48.'),(1489,204933415252787202,'2018-06-24 18:09:13','attack','204933415252787202 attacked Ravager#48.'),(1490,204933415252787202,'2018-06-24 18:09:15','attack','204933415252787202 attacked Ravager#48.'),(1491,204933415252787202,'2018-06-24 18:09:17','attack','204933415252787202 attacked Ravager#48.'),(1492,204933415252787202,'2018-06-24 18:09:20','attack','204933415252787202 attacked Ravager#48.'),(1493,204933415252787202,'2018-06-24 18:09:23','attack','204933415252787202 attacked Ravager#48.'),(1494,204933415252787202,'2018-06-24 18:09:27','attack','204933415252787202 attacked Ravager#48.'),(1495,204933415252787202,'2018-06-24 18:09:29','attack','204933415252787202 attacked Ravager#48.'),(1496,204933415252787202,'2018-06-24 18:09:31','attack','204933415252787202 attacked Ravager#48.'),(1497,204933415252787202,'2018-06-24 18:09:34','attack','204933415252787202 attacked Ravager#48.'),(1498,204933415252787202,'2018-06-24 18:09:37','attack','204933415252787202 attacked Ravager#48.'),(1499,204933415252787202,'2018-06-24 18:09:39','attack','204933415252787202 attacked Ravager#48.'),(1500,204933415252787202,'2018-06-24 18:09:47','claim','204933415252787202 claimed 8 crystals from a Ravager.'),(1501,204933415252787202,'2018-06-24 18:18:54','attack','204933415252787202 attacked Ravager#49.'),(1502,204933415252787202,'2018-06-24 18:18:58','attack','204933415252787202 attacked Ravager#49.'),(1503,204933415252787202,'2018-06-24 18:19:09','attack','204933415252787202 attacked Ravager#49.'),(1504,204933415252787202,'2018-06-24 18:19:13','attack','204933415252787202 attacked Ravager#49.'),(1505,204933415252787202,'2018-06-24 18:19:18','attack','204933415252787202 attacked Ravager#49.'),(1506,204933415252787202,'2018-06-24 18:19:27','attack','204933415252787202 attacked Ravager#49.'),(1507,204933415252787202,'2018-06-24 18:19:33','attack','204933415252787202 attacked Ravager#49.'),(1508,204933415252787202,'2018-06-24 18:19:39','attack','204933415252787202 attacked Ravager#49.'),(1509,204933415252787202,'2018-06-24 18:19:46','attack','204933415252787202 attacked Ravager#49.'),(1510,204933415252787202,'2018-06-24 18:19:47','attack','204933415252787202 attacked Ravager#49.'),(1511,204933415252787202,'2018-06-24 18:19:51','attack','204933415252787202 attacked Ravager#49.'),(1512,204933415252787202,'2018-06-24 18:19:53','attack','204933415252787202 attacked Ravager#49.'),(1513,204933415252787202,'2018-06-24 18:19:56','attack','204933415252787202 attacked Ravager#49.'),(1514,204933415252787202,'2018-06-24 18:20:00','attack','204933415252787202 attacked Ravager#49.'),(1515,204933415252787202,'2018-06-24 18:20:04','attack','204933415252787202 attacked Ravager#49.'),(1516,204933415252787202,'2018-06-24 18:20:06','attack','204933415252787202 attacked Ravager#49.'),(1517,204933415252787202,'2018-06-24 18:20:09','attack','204933415252787202 attacked Ravager#49.'),(1518,204933415252787202,'2018-06-24 18:20:11','attack','204933415252787202 attacked Ravager#49.'),(1519,204933415252787202,'2018-06-24 18:20:13','attack','204933415252787202 attacked Ravager#49.'),(1520,204933415252787202,'2018-06-24 18:20:17','attack','204933415252787202 attacked Ravager#49.'),(1521,204933415252787202,'2018-06-24 18:20:22','attack','204933415252787202 attacked Ravager#49.'),(1522,204933415252787202,'2018-06-24 18:20:25','attack','204933415252787202 attacked Ravager#49.'),(1523,204933415252787202,'2018-06-24 18:20:28','attack','204933415252787202 attacked Ravager#49.'),(1524,204933415252787202,'2018-06-24 18:20:30','attack','204933415252787202 attacked Ravager#49.'),(1525,204933415252787202,'2018-06-24 18:20:45','attack','204933415252787202 attacked Ravager#49.'),(1526,204933415252787202,'2018-06-24 18:21:02','claim','204933415252787202 claimed 14 crystals from a Ravager.'),(1527,424563962303086594,'2018-06-24 18:25:15','deposit','Deposited 13 crystals to 454460679244480512.'),(1528,274301199841361920,'2018-06-24 18:28:07','claim','274301199841361920 claimed 1 crystals from a Ravager.'),(1529,204933415252787202,'2018-06-24 18:28:50','attack','204933415252787202 attacked Ravager#50.'),(1530,204933415252787202,'2018-06-24 18:28:53','attack','204933415252787202 attacked Ravager#50.'),(1531,286105785052954626,'2018-06-24 18:28:55','attack','286105785052954626 attacked Ravager#50.'),(1532,204933415252787202,'2018-06-24 18:28:56','attack','204933415252787202 attacked Ravager#50.'),(1533,204933415252787202,'2018-06-24 18:28:58','attack','204933415252787202 attacked Ravager#50.'),(1534,286105785052954626,'2018-06-24 18:29:00','attack','286105785052954626 attacked Ravager#50.'),(1535,204933415252787202,'2018-06-24 18:29:01','attack','204933415252787202 attacked Ravager#50.'),(1536,204933415252787202,'2018-06-24 18:29:03','attack','204933415252787202 attacked Ravager#50.'),(1537,204933415252787202,'2018-06-24 18:29:06','attack','204933415252787202 attacked Ravager#50.'),(1538,204933415252787202,'2018-06-24 18:29:09','attack','204933415252787202 attacked Ravager#50.'),(1539,204933415252787202,'2018-06-24 18:29:11','attack','204933415252787202 attacked Ravager#50.'),(1540,204933415252787202,'2018-06-24 18:29:14','attack','204933415252787202 attacked Ravager#50.'),(1541,204933415252787202,'2018-06-24 18:29:19','claim','204933415252787202 claimed 18 crystals from a Ravager.'),(1542,286105785052954626,'2018-06-24 18:29:26','claim','286105785052954626 claimed 1 crystals from a Ravager.'),(1543,204933415252787202,'2018-06-24 18:48:51','attack','204933415252787202 attacked Ravager#51.'),(1544,204933415252787202,'2018-06-24 18:48:55','attack','204933415252787202 attacked Ravager#51.'),(1545,204933415252787202,'2018-06-24 18:48:58','attack','204933415252787202 attacked Ravager#51.'),(1546,201102155896193024,'2018-06-24 18:48:58','attack','201102155896193024 attacked Ravager#51.'),(1547,286105785052954626,'2018-06-24 18:48:59','attack','286105785052954626 attacked Ravager#51.'),(1548,201102155896193024,'2018-06-24 18:49:00','attack','201102155896193024 attacked Ravager#51.'),(1549,204933415252787202,'2018-06-24 18:49:01','attack','204933415252787202 attacked Ravager#51.'),(1550,201102155896193024,'2018-06-24 18:49:01','attack','201102155896193024 attacked Ravager#51.'),(1551,201102155896193024,'2018-06-24 18:49:03','attack','201102155896193024 attacked Ravager#51.'),(1552,286105785052954626,'2018-06-24 18:49:04','attack','286105785052954626 attacked Ravager#51.'),(1553,204933415252787202,'2018-06-24 18:49:04','attack','204933415252787202 attacked Ravager#51.'),(1554,204933415252787202,'2018-06-24 18:49:07','attack','204933415252787202 attacked Ravager#51.'),(1555,201102155896193024,'2018-06-24 18:49:15','claim','201102155896193024 claimed 5 crystals from a Ravager.'),(1556,201102155896193024,'2018-06-24 18:52:03','deposit','Deposited 5 crystals to 457312250147897366.'),(1557,286105785052954626,'2018-06-24 19:28:52','attack','286105785052954626 attacked Ravager#52.'),(1558,201102155896193024,'2018-06-24 19:28:54','attack','201102155896193024 attacked Ravager#52.'),(1559,200340393596944384,'2018-06-24 19:28:54','attack','200340393596944384 attacked Ravager#52.'),(1560,204933415252787202,'2018-06-24 19:28:55','attack','204933415252787202 attacked Ravager#52.'),(1561,201102155896193024,'2018-06-24 19:28:56','attack','201102155896193024 attacked Ravager#52.'),(1562,204933415252787202,'2018-06-24 19:28:56','attack','204933415252787202 attacked Ravager#52.'),(1563,201102155896193024,'2018-06-24 19:28:58','attack','201102155896193024 attacked Ravager#52.'),(1564,204933415252787202,'2018-06-24 19:28:59','attack','204933415252787202 attacked Ravager#52.'),(1565,201102155896193024,'2018-06-24 19:29:00','attack','201102155896193024 attacked Ravager#52.'),(1566,201102155896193024,'2018-06-24 19:29:01','attack','201102155896193024 attacked Ravager#52.'),(1567,204933415252787202,'2018-06-24 19:29:01','attack','204933415252787202 attacked Ravager#52.'),(1568,201102155896193024,'2018-06-24 19:29:03','attack','201102155896193024 attacked Ravager#52.'),(1569,204933415252787202,'2018-06-24 19:29:04','attack','204933415252787202 attacked Ravager#52.'),(1570,201102155896193024,'2018-06-24 19:29:06','attack','201102155896193024 attacked Ravager#52.'),(1571,204933415252787202,'2018-06-24 19:29:07','attack','204933415252787202 attacked Ravager#52.'),(1572,201102155896193024,'2018-06-24 19:29:08','attack','201102155896193024 attacked Ravager#52.'),(1573,204933415252787202,'2018-06-24 19:29:19','attack','204933415252787202 attacked Ravager#52.'),(1574,204933415252787202,'2018-06-24 19:29:25','attack','204933415252787202 attacked Ravager#52.'),(1575,218498162745278474,'2018-06-24 19:29:27','attack','218498162745278474 attacked Ravager#52.'),(1576,286105785052954626,'2018-06-24 19:29:29','attack','286105785052954626 attacked Ravager#52.'),(1577,286105785052954626,'2018-06-24 19:29:36','attack','286105785052954626 attacked Ravager#52.'),(1578,201102155896193024,'2018-06-24 19:29:39','claim','201102155896193024 claimed 5 crystals from a Ravager.'),(1579,200340393596944384,'2018-06-24 19:29:45','claim','200340393596944384 claimed 4 crystals from a Ravager.'),(1580,201102155896193024,'2018-06-24 19:30:10','deposit','Deposited 5 crystals to 457312250147897366.'),(1581,204933415252787202,'2018-06-24 19:48:51','attack','204933415252787202 attacked Ravager#53.'),(1582,286105785052954626,'2018-06-24 19:48:53','attack','286105785052954626 attacked Ravager#53.'),(1583,204933415252787202,'2018-06-24 19:48:54','attack','204933415252787202 attacked Ravager#53.'),(1584,204933415252787202,'2018-06-24 19:48:57','attack','204933415252787202 attacked Ravager#53.'),(1585,286105785052954626,'2018-06-24 19:48:57','attack','286105785052954626 attacked Ravager#53.'),(1586,204933415252787202,'2018-06-24 19:48:59','attack','204933415252787202 attacked Ravager#53.'),(1587,286105785052954626,'2018-06-24 19:49:00','attack','286105785052954626 attacked Ravager#53.'),(1588,204933415252787202,'2018-06-24 19:49:01','attack','204933415252787202 attacked Ravager#53.'),(1589,286105785052954626,'2018-06-24 19:49:01','attack','286105785052954626 attacked Ravager#53.'),(1590,454823752925052930,'2018-06-24 19:49:05','attack','454823752925052930 attacked Ravager#53.'),(1591,204933415252787202,'2018-06-24 19:49:08','attack','204933415252787202 attacked Ravager#53.'),(1592,286105785052954626,'2018-06-24 19:49:09','attack','286105785052954626 attacked Ravager#53.'),(1593,204933415252787202,'2018-06-24 19:49:09','attack','204933415252787202 attacked Ravager#53.'),(1594,454823752925052930,'2018-06-24 19:49:09','attack','454823752925052930 attacked Ravager#53.'),(1595,286105785052954626,'2018-06-24 19:49:12','attack','286105785052954626 attacked Ravager#53.'),(1596,204933415252787202,'2018-06-24 19:49:13','attack','204933415252787202 attacked Ravager#53.'),(1597,286105785052954626,'2018-06-24 19:49:13','claim','286105785052954626 claimed 13 crystals from a Ravager.'),(1598,142612779377885185,'2018-06-24 19:53:45','conversion','Converted to The Order.'),(1599,142612779377885185,'2018-06-24 19:57:33','checkin','Checked in for 8 crystals.'),(1600,142612779377885185,'2018-06-24 19:57:54','deposit','Deposited 8 crystals to 454460679244480512.'),(1601,286105785052954626,'2018-06-24 19:58:40','deposit','Deposited 21 crystals to 454460679244480512.'),(1602,201102155896193024,'2018-06-24 19:58:52','attack','201102155896193024 attacked Ravager#54.'),(1603,201102155896193024,'2018-06-24 19:58:55','attack','201102155896193024 attacked Ravager#54.'),(1604,201102155896193024,'2018-06-24 19:58:59','attack','201102155896193024 attacked Ravager#54.'),(1605,201102155896193024,'2018-06-24 19:59:01','attack','201102155896193024 attacked Ravager#54.'),(1606,286105785052954626,'2018-06-24 19:59:01','attack','286105785052954626 attacked Ravager#54.'),(1607,201102155896193024,'2018-06-24 19:59:02','attack','201102155896193024 attacked Ravager#54.'),(1608,204933415252787202,'2018-06-24 19:59:02','attack','204933415252787202 attacked Ravager#54.'),(1609,286105785052954626,'2018-06-24 19:59:02','attack','286105785052954626 attacked Ravager#54.'),(1610,201102155896193024,'2018-06-24 19:59:05','attack','201102155896193024 attacked Ravager#54.'),(1611,286105785052954626,'2018-06-24 19:59:06','attack','286105785052954626 attacked Ravager#54.'),(1612,204933415252787202,'2018-06-24 19:59:07','attack','204933415252787202 attacked Ravager#54.'),(1613,142612779377885185,'2018-06-24 19:59:07','attack','142612779377885185 attacked Ravager#54.'),(1614,286105785052954626,'2018-06-24 19:59:08','attack','286105785052954626 attacked Ravager#54.'),(1615,201102155896193024,'2018-06-24 19:59:08','attack','201102155896193024 attacked Ravager#54.'),(1616,204933415252787202,'2018-06-24 19:59:10','attack','204933415252787202 attacked Ravager#54.'),(1617,142612779377885185,'2018-06-24 19:59:16','attack','142612779377885185 attacked Ravager#54.'),(1618,204933415252787202,'2018-06-24 19:59:18','attack','204933415252787202 attacked Ravager#54.'),(1619,142612779377885185,'2018-06-24 19:59:21','attack','142612779377885185 attacked Ravager#54.'),(1620,204933415252787202,'2018-06-24 19:59:21','attack','204933415252787202 attacked Ravager#54.'),(1621,286105785052954626,'2018-06-24 19:59:21','attack','286105785052954626 attacked Ravager#54.'),(1622,286105785052954626,'2018-06-24 19:59:22','claim','286105785052954626 claimed 10 crystals from a Ravager.'),(1623,204933415252787202,'2018-06-24 20:08:49','attack','204933415252787202 attacked Ravager#55.'),(1624,204933415252787202,'2018-06-24 20:08:54','attack','204933415252787202 attacked Ravager#55.'),(1625,204933415252787202,'2018-06-24 20:08:58','attack','204933415252787202 attacked Ravager#55.'),(1626,204933415252787202,'2018-06-24 20:09:00','attack','204933415252787202 attacked Ravager#55.'),(1627,204933415252787202,'2018-06-24 20:09:04','attack','204933415252787202 attacked Ravager#55.'),(1628,204933415252787202,'2018-06-24 20:09:07','attack','204933415252787202 attacked Ravager#55.'),(1629,204933415252787202,'2018-06-24 20:09:08','attack','204933415252787202 attacked Ravager#55.'),(1630,204933415252787202,'2018-06-24 20:09:14','attack','204933415252787202 attacked Ravager#55.'),(1631,204933415252787202,'2018-06-24 20:09:17','attack','204933415252787202 attacked Ravager#55.'),(1632,204933415252787202,'2018-06-24 20:09:34','attack','204933415252787202 attacked Ravager#55.'),(1633,204933415252787202,'2018-06-24 20:09:40','attack','204933415252787202 attacked Ravager#55.'),(1634,204933415252787202,'2018-06-24 20:09:44','claim','204933415252787202 claimed 15 crystals from a Ravager.'),(1635,204933415252787202,'2018-06-24 20:30:19','deposit','Deposited 33 crystals to 454460679244480512.'),(1636,204933415252787202,'2018-06-24 21:09:39','claim','204933415252787202 claimed 6 crystals from a Ravager.'),(1637,454823752925052930,'2018-06-24 21:19:35','claim','454823752925052930 claimed 5 crystals from a Ravager.'),(1638,204933415252787202,'2018-06-24 21:19:42','claim','204933415252787202 claimed 2 crystals from a Ravager.'),(1639,282656257716912139,'2018-06-24 21:24:41','deposit','Deposited 5 crystals to 454460679244480512.'),(1640,204933415252787202,'2018-06-24 21:29:38','claim','204933415252787202 claimed 17 crystals from a Ravager.'),(1641,262771588946984963,'2018-06-24 22:30:14','deposit','Deposited 9 crystals to 457312250147897366.'),(1642,457300954660995114,'2018-06-24 22:30:59','checkin','Checked in for 7 crystals.'),(1643,457300954660995114,'2018-06-24 22:38:25','deposit','Deposited 17 crystals to 454460756520337418.'),(1644,262771588946984963,'2018-06-24 23:40:30','deposit','Deposited 19 crystals to 457312250147897366.'),(1645,457300954660995114,'2018-06-24 23:41:58','transfer','457300954660995114 gave 2 crystals to 131968711312539648.'),(1646,262771588946984963,'2018-06-24 23:50:15','deposit','Deposited 9 crystals to 457312250147897366.'),(1647,284154357883338752,'2018-06-25 00:16:28','conversion','Converted to The Anarchy.'),(1648,218498162745278474,'2018-06-25 00:28:01','checkin','Checked in for 4 crystals.'),(1649,359521958519504926,'2018-06-25 00:36:46','conversion','Converted to The Order.'),(1650,236304169533833216,'2018-06-25 00:40:21','checkin','Checked in for 7 crystals.'),(1651,236304169533833216,'2018-06-25 00:40:47','deposit','Deposited 11 crystals to 457312250147897366.'),(1652,262771588946984963,'2018-06-25 00:43:29','checkin','Checked in for 6 crystals.'),(1653,262771588946984963,'2018-06-25 00:43:36','deposit','Deposited 6 crystals to 457312250147897366.'),(1654,131968711312539648,'2018-06-25 00:47:47','checkin','Checked in for 5 crystals.'),(1655,200340393596944384,'2018-06-25 00:48:08','checkin','Checked in for 6 crystals.'),(1656,454823752925052930,'2018-06-25 00:49:06','checkin','Checked in for 6 crystals.'),(1657,433759248800022532,'2018-06-25 00:51:44','checkin','Checked in for 9 crystals.'),(1658,163770616581718017,'2018-06-25 00:51:57','checkin','Checked in for 6 crystals.'),(1659,131968711312539648,'2018-06-25 01:04:12','transfer','131968711312539648 gave 1 crystals to 457300954660995114.'),(1660,359521958519504926,'2018-06-25 01:04:37','checkin','Checked in for 7 crystals.'),(1661,218498162745278474,'2018-06-25 01:05:02','transfer','218498162745278474 gave 1 crystals to 457300954660995114.'),(1662,200340393596944384,'2018-06-25 01:05:28','transfer','200340393596944384 gave 1 crystals to 457300954660995114.'),(1663,459881667104997376,'2018-06-25 01:40:53','checkin','Checked in for 6 crystals.'),(1664,459881667104997376,'2018-06-25 01:41:43','transfer','459881667104997376 gave 6 crystals to 201102155896193024.'),(1665,249535509280456705,'2018-06-25 02:14:05','checkin','Checked in for 9 crystals.'),(1666,249535509280456705,'2018-06-25 02:14:38','deposit','Deposited 9 crystals to 454460756520337418.'),(1667,249535509280456705,'2018-06-25 02:14:49','deposit','Deposited 4 crystals to 454460756520337418.'),(1668,459884642192064512,'2018-06-25 02:17:33','checkin','Checked in for 9 crystals.'),(1669,459884642192064512,'2018-06-25 02:19:05','transfer','459884642192064512 gave 9 crystals to 201102155896193024.'),(1670,459883167160205313,'2018-06-25 03:21:54','checkin','Checked in for 4 crystals.'),(1671,459883167160205313,'2018-06-25 03:22:23','transfer','459883167160205313 gave 4 crystals to 201102155896193024.'),(1672,185698541052755968,'2018-06-25 03:31:02','checkin','Checked in for 9 crystals.'),(1673,204933415252787202,'2018-06-25 03:52:39','checkin','Checked in for 9 crystals.'),(1674,131968711312539648,'2018-06-25 03:59:57','transfer','131968711312539648 gave 3 crystals to 185698541052755968.'),(1675,459883167160205313,'2018-06-25 04:01:00','transfer','459883167160205313 gave 2 crystals to 201102155896193024.'),(1676,459883167160205313,'2018-06-25 04:19:37','deposit','Deposited 1 crystals to 457312250147897366.'),(1677,457300954660995114,'2018-06-25 04:20:16','transfer','457300954660995114 gave 1 crystals to 185698541052755968.'),(1678,459883167160205313,'2018-06-25 04:39:52','deposit','Deposited 1 crystals to 457312250147897366.'),(1679,236304169533833216,'2018-06-25 04:41:21','transfer','236304169533833216 gave 5 crystals to 201102155896193024.'),(1680,459883167160205313,'2018-06-25 05:13:36','deposit','Deposited 3 crystals to 457312250147897366.'),(1681,218498162745278474,'2018-06-25 05:21:34','transfer','218498162745278474 gave 2 crystals to 457300954660995114.'),(1682,218498162745278474,'2018-06-25 05:24:48','transfer','218498162745278474 gave 2 crystals to 131968711312539648.'),(1683,459883167160205313,'2018-06-25 05:29:32','deposit','Deposited 2 crystals to 457312250147897366.'),(1684,236304169533833216,'2018-06-25 05:30:51','deposit','Deposited 7 crystals to 457312250147897366.'),(1685,201102155896193024,'2018-06-25 05:59:55','checkin','Checked in for 4 crystals.'),(1686,457300954660995114,'2018-06-25 06:30:11','transfer','457300954660995114 gave 1 crystals to 185698541052755968.'),(1687,236304169533833216,'2018-06-25 06:31:01','deposit','Deposited 9 crystals to 457312250147897366.'),(1688,457300954660995114,'2018-06-25 07:02:34','checkin','Checked in for 4 crystals.'),(1689,459883167160205313,'2018-06-25 07:29:15','deposit','Deposited 6 crystals to 457312250147897366.'),(1690,424563962303086594,'2018-06-25 07:31:51','checkin','Checked in for 7 crystals.'),(1691,282656257716912139,'2018-06-25 07:38:26','checkin','Checked in for 9 crystals.'),(1692,204933415252787202,'2018-06-25 08:16:07','transfer','204933415252787202 gave 4 crystals to 204933415252787202.'),(1693,334750493085794304,'2018-06-25 08:45:38','checkin','Checked in for 5 crystals.'),(1694,131968711312539648,'2018-06-25 08:50:17','transfer','131968711312539648 gave 2 crystals to 274301199841361920.'),(1695,274301199841361920,'2018-06-25 08:50:53','transfer','274301199841361920 gave 1 crystals to 131968711312539648.'),(1696,148942504077557760,'2018-06-25 09:30:11','checkin','Checked in for 6 crystals.'),(1697,274301199841361920,'2018-06-25 10:49:44','checkin','Checked in for 5 crystals.'),(1698,457300954660995114,'2018-06-25 11:13:28','deposit','Deposited 47 crystals to 454460756520337418.'),(1699,460761978135248896,'2018-06-25 11:26:45','conversion','Converted to The Anarchy.'),(1700,460761978135248896,'2018-06-25 11:33:26','checkin','Checked in for 5 crystals.'),(1701,286105785052954626,'2018-06-25 11:36:26','checkin','Checked in for 5 crystals.'),(1702,457300954660995114,'2018-06-25 11:47:25','transfer','457300954660995114 gave 19 crystals to 460761978135248896.'),(1703,297748308523483138,'2018-06-25 11:50:12','checkin','Checked in for 4 crystals.'),(1704,115285522863226888,'2018-06-25 12:01:13','conversion','Converted to The Anarchy.'),(1705,459879057295671296,'2018-06-25 13:58:14','checkin','Checked in for 4 crystals.'),(1706,459879057295671296,'2018-06-25 13:58:23','deposit','Deposited 4 crystals to 457312250147897366.'),(1707,459876383431327746,'2018-06-25 14:13:01','checkin','Checked in for 4 crystals.'),(1708,459876383431327746,'2018-06-25 14:13:12','transfer','459876383431327746 gave 4 crystals to 201102155896193024.'),(1709,459876383431327746,'2018-06-25 14:41:00','transfer','459876383431327746 gave 3 crystals to 201102155896193024.'),(1710,459876383431327746,'2018-06-25 14:50:52','transfer','459876383431327746 gave 3 crystals to 201102155896193024.'),(1711,459873273308643328,'2018-06-25 14:58:21','checkin','Checked in for 9 crystals.'),(1712,459873273308643328,'2018-06-25 15:00:43','transfer','459873273308643328 gave 9 crystals to 201102155896193024.'),(1713,459834182961463299,'2018-06-25 15:07:19','checkin','Checked in for 8 crystals.'),(1714,459834182961463299,'2018-06-25 15:07:27','transfer','459834182961463299 gave 8 crystals to 201102155896193024.'),(1715,459873273308643328,'2018-06-25 15:20:33','transfer','459873273308643328 gave 2 crystals to 201102155896193024.'),(1716,459873273308643328,'2018-06-25 15:39:47','transfer','459873273308643328 gave 2 crystals to 201102155896193024.'),(1717,236304169533833216,'2018-06-25 15:40:10','deposit','Deposited 3 crystals to 457312250147897366.'),(1718,201102155896193024,'2018-06-25 15:40:20','transfer','201102155896193024 gave 1 crystals to 201102155896193024.'),(1719,201102155896193024,'2018-06-25 15:40:33','transfer','201102155896193024 gave 5 crystals to 201102155896193024.'),(1720,262771588946984963,'2018-06-25 15:40:54','transfer','262771588946984963 gave 1 crystals to 262771588946984963.'),(1721,388505302292627456,'2018-06-25 16:39:19','checkin','Checked in for 7 crystals.'),(1722,236304169533833216,'2018-06-25 16:39:57','deposit','Deposited 9 crystals to 457312250147897366.'),(1723,459873273308643328,'2018-06-25 16:50:14','transfer','459873273308643328 gave 3 crystals to 201102155896193024.'),(1724,443150342725566484,'2018-06-25 16:56:12','conversion','Converted to The Religion.'),(1725,204933415252787202,'2018-06-25 20:50:10','deposit','Deposited 95 crystals to 454460679244480512.'),(1726,211232684209340426,'2018-06-25 22:23:21','checkin','Checked in for 5 crystals.'),(1727,218498162745278474,'2018-06-26 00:15:38','checkin','Checked in for 9 crystals.'),(1728,185698541052755968,'2018-06-26 00:19:21','checkin','Checked in for 8 crystals.'),(1729,457300954660995114,'2018-06-26 00:43:18','checkin','Checked in for 4 crystals.'),(1730,131968711312539648,'2018-06-26 01:01:28','checkin','Checked in for 4 crystals.'),(1731,359521958519504926,'2018-06-26 01:28:49','checkin','Checked in for 7 crystals.'),(1732,200340393596944384,'2018-06-26 01:29:10','checkin','Checked in for 9 crystals.'),(1733,460761978135248896,'2018-06-26 01:29:29','checkin','Checked in for 9 crystals.'),(1734,433759248800022532,'2018-06-26 01:52:55','checkin','Checked in for 9 crystals.'),(1735,454823752925052930,'2018-06-26 01:54:22','checkin','Checked in for 7 crystals.'),(1736,201102155896193024,'2018-06-26 01:54:35','checkin','Checked in for 9 crystals.'),(1737,131968711312539648,'2018-06-26 02:14:18','transfer','131968711312539648 gave 2 crystals to 457300954660995114.'),(1738,131968711312539648,'2018-06-26 02:14:27','transfer','131968711312539648 gave 3 crystals to 460761978135248896.'),(1739,218498162745278474,'2018-06-26 02:14:35','transfer','218498162745278474 gave 1 crystals to 460761978135248896.'),(1740,218498162745278474,'2018-06-26 02:14:55','transfer','218498162745278474 gave 1 crystals to 457300954660995114.'),(1741,131968711312539648,'2018-06-26 02:15:08','transfer','131968711312539648 gave 3 crystals to 185698541052755968.'),(1742,185698541052755968,'2018-06-26 02:15:26','transfer','185698541052755968 gave 3 crystals to 131968711312539648.'),(1743,218498162745278474,'2018-06-26 02:21:27','transfer','218498162745278474 gave 1 crystals to 200340393596944384.'),(1744,457300954660995114,'2018-06-26 02:22:07','transfer','457300954660995114 gave 1 crystals to 200340393596944384.'),(1745,218498162745278474,'2018-06-26 02:22:14','transfer','218498162745278474 gave 1 crystals to 185698541052755968.'),(1746,218498162745278474,'2018-06-26 02:22:40','transfer','218498162745278474 gave 1 crystals to 249535509280456705.'),(1747,459873273308643328,'2018-06-26 02:56:33','checkin','Checked in for 6 crystals.'),(1748,459873273308643328,'2018-06-26 02:56:40','transfer','459873273308643328 gave 6 crystals to 201102155896193024.'),(1749,459879057295671296,'2018-06-26 02:59:00','checkin','Checked in for 4 crystals.'),(1750,459879057295671296,'2018-06-26 03:00:22','transfer','459879057295671296 gave 4 crystals to 201102155896193024.'),(1751,200340393596944384,'2018-06-26 03:59:12','transfer','200340393596944384 gave 2 crystals to 457300954660995114.'),(1752,185698541052755968,'2018-06-26 04:05:10','transfer','185698541052755968 gave 1 crystals to 200340393596944384.'),(1753,200340393596944384,'2018-06-26 04:05:18','transfer','200340393596944384 gave 1 crystals to 185698541052755968.'),(1754,433759248800022532,'2018-06-26 04:12:55','transfer','433759248800022532 gave 1 crystals to 131968711312539648.'),(1755,429615167492325376,'2018-06-26 04:17:04','conversion','Converted to The Anarchy.'),(1756,131968711312539648,'2018-06-26 04:17:22','transfer','131968711312539648 gave 1 crystals to 185698541052755968.'),(1757,185698541052755968,'2018-06-26 04:17:41','transfer','185698541052755968 gave 2 crystals to 131968711312539648.'),(1758,163770616581718017,'2018-06-26 04:18:30','conversion','Converted to The Order.'),(1759,459876383431327746,'2018-06-26 04:33:50','checkin','Checked in for 7 crystals.'),(1760,131968711312539648,'2018-06-26 04:33:59','transfer','131968711312539648 gave 3 crystals to 429615167492325376.'),(1761,459881667104997376,'2018-06-26 04:37:24','checkin','Checked in for 6 crystals.'),(1762,459881667104997376,'2018-06-26 04:37:30','transfer','459881667104997376 gave 6 crystals to 201102155896193024.'),(1763,220272827327053824,'2018-06-26 04:46:24','conversion','Converted to The Anarchy.'),(1764,131968711312539648,'2018-06-26 04:46:55','transfer','131968711312539648 gave 50 crystals to 220272827327053824.'),(1765,220272827327053824,'2018-06-26 04:47:30','checkin','Checked in for 7 crystals.'),(1766,429615167492325376,'2018-06-26 04:59:51','checkin','Checked in for 5 crystals.'),(1767,459883167160205313,'2018-06-26 05:05:39','checkin','Checked in for 9 crystals.'),(1768,459883167160205313,'2018-06-26 05:05:47','transfer','459883167160205313 gave 9 crystals to 201102155896193024.'),(1769,334750493085794304,'2018-06-26 05:26:09','checkin','Checked in for 4 crystals.'),(1770,334750493085794304,'2018-06-26 05:28:02','deposit','Deposited 10 crystals to 457312250147897366.'),(1771,438094660712267778,'2018-06-26 05:29:43','conversion','Converted to The Anarchy.'),(1772,459876383431327746,'2018-06-26 05:43:22','transfer','459876383431327746 gave 7 crystals to 201102155896193024.'),(1773,459879057295671296,'2018-06-26 05:45:07','transfer','459879057295671296 gave 2 crystals to 201102155896193024.'),(1774,459873273308643328,'2018-06-26 05:47:40','transfer','459873273308643328 gave 1 crystals to 201102155896193024.'),(1775,424563962303086594,'2018-06-26 07:21:27','checkin','Checked in for 6 crystals.'),(1776,262771588946984963,'2018-06-26 08:59:40','checkin','Checked in for 5 crystals.'),(1777,148942504077557760,'2018-06-26 08:59:44','checkin','Checked in for 5 crystals.'),(1778,424563962303086594,'2018-06-26 09:00:37','deposit','Deposited 28 crystals to 454460679244480512.'),(1779,274301199841361920,'2018-06-26 09:03:49','checkin','Checked in for 8 crystals.'),(1780,286105785052954626,'2018-06-26 12:34:29','checkin','Checked in for 9 crystals.'),(1781,286105785052954626,'2018-06-26 12:35:58','deposit','Deposited 27 crystals to 454460679244480512.'),(1782,211232684209340426,'2018-06-26 13:12:29','checkin','Checked in for 5 crystals.'),(1783,459873273308643328,'2018-06-26 13:42:08','transfer','459873273308643328 gave 1 crystals to 201102155896193024.'),(1784,459879057295671296,'2018-06-26 14:45:42','transfer','459879057295671296 gave 2 crystals to 201102155896193024.'),(1785,459873273308643328,'2018-06-26 14:46:36','transfer','459873273308643328 gave 6 crystals to 201102155896193024.'),(1786,236304169533833216,'2018-06-26 14:56:31','checkin','Checked in for 5 crystals.'),(1787,459881667104997376,'2018-06-26 16:24:22','transfer','459881667104997376 gave 5 crystals to 201102155896193024.'),(1788,163770616581718017,'2018-06-26 17:32:54','checkin','Checked in for 8 crystals.'),(1789,459881667104997376,'2018-06-26 17:52:22','transfer','459881667104997376 gave 5 crystals to 201102155896193024.'),(1790,459883167160205313,'2018-06-26 17:53:15','transfer','459883167160205313 gave 13 crystals to 201102155896193024.'),(1791,459879057295671296,'2018-06-26 17:54:22','transfer','459879057295671296 gave 2 crystals to 201102155896193024.'),(1792,459873273308643328,'2018-06-26 17:55:15','transfer','459873273308643328 gave 2 crystals to 201102155896193024.'),(1793,334750493085794304,'2018-06-26 18:09:58','transfer','334750493085794304 gave 32 crystals to 201102155896193024.'),(1794,359521958519504926,'2018-06-26 18:12:36','deposit','Deposited 10 crystals to 454460756520337418.'),(1795,459834182961463299,'2018-06-26 18:36:17','checkin','Checked in for 8 crystals.'),(1796,459834182961463299,'2018-06-26 18:36:23','transfer','459834182961463299 gave 8 crystals to 201102155896193024.'),(1797,459834182961463299,'2018-06-26 18:57:43','transfer','459834182961463299 gave 49 crystals to 201102155896193024.'),(1798,424563962303086594,'2018-06-26 19:09:43','deposit','Deposited 22 crystals to 454460679244480512.'),(1799,282656257716912139,'2018-06-26 19:26:59','checkin','Checked in for 8 crystals.'),(1800,282656257716912139,'2018-06-26 19:27:38','deposit','Deposited 10 crystals to 454460679244480512.'),(1801,297748308523483138,'2018-06-26 19:43:14','checkin','Checked in for 5 crystals.'),(1802,222309309235724289,'2018-06-26 19:48:01','checkin','Checked in for 6 crystals.'),(1803,388505302292627456,'2018-06-26 20:18:54','checkin','Checked in for 8 crystals.'),(1804,454823752925052930,'2018-06-26 21:30:35','conversion','Converted to The Anarchy.'),(1805,461290244520673280,'2018-06-26 22:06:41','conversion','Converted to The Anarchy.'),(1806,459881667104997376,'2018-06-26 22:40:36','transfer','459881667104997376 gave 3 crystals to 201102155896193024.'),(1807,459873273308643328,'2018-06-26 22:41:07','transfer','459873273308643328 gave 2 crystals to 201102155896193024.'),(1808,459879057295671296,'2018-06-26 22:42:01','transfer','459879057295671296 gave 6 crystals to 201102155896193024.'),(1809,218498162745278474,'2018-06-27 00:08:17','checkin','Checked in for 8 crystals.'),(1810,131968711312539648,'2018-06-27 00:26:06','checkin','Checked in for 5 crystals.'),(1811,200340393596944384,'2018-06-27 00:27:37','checkin','Checked in for 5 crystals.'),(1812,163770616581718017,'2018-06-27 00:29:15','conversion','Converted to The Anarchy.'),(1813,454823752925052930,'2018-06-27 00:29:38','checkin','Checked in for 8 crystals.'),(1814,433759248800022532,'2018-06-27 00:30:41','checkin','Checked in for 8 crystals.'),(1815,282656257716912139,'2018-06-27 00:43:52','checkin','Checked in for 4 crystals.'),(1816,454823752925052930,'2018-06-27 00:55:41','transfer','454823752925052930 gave 56 crystals to 200340393596944384.'),(1817,454823752925052930,'2018-06-27 01:00:57','conversion','Converted to The Anarchy.'),(1818,457300954660995114,'2018-06-27 01:13:02','checkin','Checked in for 8 crystals.'),(1819,460761978135248896,'2018-06-27 04:22:18','checkin','Checked in for 7 crystals.'),(1820,429615167492325376,'2018-06-27 04:23:01','checkin','Checked in for 9 crystals.'),(1821,163770616581718017,'2018-06-27 04:45:24','checkin','Checked in for 8 crystals.'),(1822,265907268942299136,'2018-06-27 05:51:04','checkin','Checked in for 5 crystals.'),(1823,280136086296985600,'2018-06-27 05:57:21','checkin','Checked in for 8 crystals.'),(1824,280136086296985600,'2018-06-27 05:58:24','deposit','Deposited 8 crystals to 454460756520337418.'),(1825,204933415252787202,'2018-06-27 09:22:00','checkin','Checked in for 4 crystals.'),(1826,115285522863226888,'2018-06-27 09:26:35','checkin','Checked in for 9 crystals.'),(1827,115285522863226888,'2018-06-27 09:27:37','deposit','Deposited 3 crystals to 454460756520337418.'),(1828,115285522863226888,'2018-06-27 09:27:50','deposit','Deposited 1 crystals to 454460756520337418.'),(1829,115285522863226888,'2018-06-27 09:28:44','deposit','Deposited 4 crystals to 454460756520337418.'),(1830,211232684209340426,'2018-06-27 10:02:17','checkin','Checked in for 4 crystals.'),(1831,424563962303086594,'2018-06-27 11:05:35','checkin','Checked in for 7 crystals.'),(1832,201102155896193024,'2018-06-27 11:22:32','checkin','Checked in for 9 crystals.'),(1833,262771588946984963,'2018-06-27 11:23:02','checkin','Checked in for 7 crystals.'),(1834,459879057295671296,'2018-06-27 11:24:26','checkin','Checked in for 7 crystals.'),(1835,459879057295671296,'2018-06-27 11:24:32','transfer','459879057295671296 gave 7 crystals to 201102155896193024.'),(1836,459881667104997376,'2018-06-27 11:52:38','checkin','Checked in for 9 crystals.'),(1837,459881667104997376,'2018-06-27 11:52:44','transfer','459881667104997376 gave 9 crystals to 201102155896193024.'),(1838,334750493085794304,'2018-06-27 11:52:59','checkin','Checked in for 5 crystals.'),(1839,459876383431327746,'2018-06-27 11:55:37','checkin','Checked in for 9 crystals.'),(1840,459876383431327746,'2018-06-27 11:55:54','transfer','459876383431327746 gave 9 crystals to 201102155896193024.'),(1841,274301199841361920,'2018-06-27 11:58:08','checkin','Checked in for 9 crystals.'),(1842,286105785052954626,'2018-06-27 14:55:56','checkin','Checked in for 8 crystals.'),(1843,390618369545601028,'2018-06-27 14:57:02','checkin','Checked in for 5 crystals.'),(1844,142612779377885185,'2018-06-27 15:20:56','checkin','Checked in for 8 crystals.'),(1845,459876383431327746,'2018-06-27 15:56:44','transfer','459876383431327746 gave 3 crystals to 201102155896193024.'),(1846,459834182961463299,'2018-06-27 15:58:16','checkin','Checked in for 6 crystals.'),(1847,459834182961463299,'2018-06-27 15:58:27','transfer','459834182961463299 gave 6 crystals to 201102155896193024.'),(1848,236304169533833216,'2018-06-27 16:00:38','checkin','Checked in for 7 crystals.'),(1849,204933415252787202,'2018-06-27 17:16:18','deposit','Deposited 13 crystals to 454460679244480512.'),(1850,297748308523483138,'2018-06-27 17:22:35','checkin','Checked in for 7 crystals.'),(1851,459873273308643328,'2018-06-27 17:59:28','checkin','Checked in for 9 crystals.'),(1852,459873273308643328,'2018-06-27 17:59:37','transfer','459873273308643328 gave 9 crystals to 201102155896193024.'),(1853,459879057295671296,'2018-06-27 18:55:36','transfer','459879057295671296 gave 4 crystals to 201102155896193024.'),(1854,359521958519504926,'2018-06-27 19:08:02','checkin','Checked in for 9 crystals.'),(1855,142612779377885185,'2018-06-27 20:13:14','deposit','Deposited 11 crystals to 454460679244480512.'),(1856,218458041790496768,'2018-06-27 20:39:05','conversion','Converted to The Religion.'),(1857,218458041790496768,'2018-06-27 20:47:51','checkin','Checked in for 7 crystals.'),(1858,459876383431327746,'2018-06-27 20:56:36','transfer','459876383431327746 gave 4 crystals to 201102155896193024.'),(1859,459881667104997376,'2018-06-27 21:01:09','deposit','Deposited 5 crystals to 457312250147897366.'),(1860,459883167160205313,'2018-06-27 21:05:01','checkin','Checked in for 6 crystals.'),(1861,459883167160205313,'2018-06-27 21:05:17','transfer','459883167160205313 gave 10 crystals to 201102155896193024.'),(1862,424563962303086594,'2018-06-27 21:42:33','deposit','Deposited 23 crystals to 454460679244480512.'),(1863,286105785052954626,'2018-06-27 21:46:31','deposit','Deposited 20 crystals to 454460679244480512.'),(1864,220272827327053824,'2018-06-27 23:39:57','checkin','Checked in for 9 crystals.'),(1865,218498162745278474,'2018-06-28 00:10:43','checkin','Checked in for 7 crystals.'),(1866,200340393596944384,'2018-06-28 00:10:47','checkin','Checked in for 8 crystals.'),(1867,457300954660995114,'2018-06-28 00:19:48','checkin','Checked in for 5 crystals.'),(1868,433759248800022532,'2018-06-28 01:42:00','checkin','Checked in for 9 crystals.'),(1869,454823752925052930,'2018-06-28 01:42:04','checkin','Checked in for 6 crystals.'),(1870,131968711312539648,'2018-06-28 01:44:31','checkin','Checked in for 9 crystals.'),(1871,433759248800022532,'2018-06-28 02:54:05','transfer','433759248800022532 gave 94 crystals to 200340393596944384.'),(1872,454823752925052930,'2018-06-28 02:54:36','transfer','454823752925052930 gave 20 crystals to 200340393596944384.'),(1873,185698541052755968,'2018-06-28 02:56:12','checkin','Checked in for 9 crystals.'),(1874,459876383431327746,'2018-06-28 03:31:33','checkin','Checked in for 5 crystals.'),(1875,459876383431327746,'2018-06-28 03:31:40','transfer','459876383431327746 gave 18 crystals to 201102155896193024.'),(1876,459881667104997376,'2018-06-28 03:47:41','checkin','Checked in for 9 crystals.'),(1877,459881667104997376,'2018-06-28 03:47:55','transfer','459881667104997376 gave 11 crystals to 201102155896193024.'),(1878,459879057295671296,'2018-06-28 03:49:09','checkin','Checked in for 5 crystals.'),(1879,459879057295671296,'2018-06-28 03:49:18','transfer','459879057295671296 gave 5 crystals to 201102155896193024.'),(1880,460761978135248896,'2018-06-28 03:50:28','checkin','Checked in for 9 crystals.'),(1881,459883167160205313,'2018-06-28 03:52:24','checkin','Checked in for 8 crystals.'),(1882,459883167160205313,'2018-06-28 03:52:44','transfer','459883167160205313 gave 8 crystals to 201102155896193024.'),(1883,388505302292627456,'2018-06-28 03:55:49','checkin','Checked in for 4 crystals.'),(1884,429615167492325376,'2018-06-28 04:58:39','transfer','429615167492325376 gave 4 crystals to 460761978135248896.'),(1885,460761978135248896,'2018-06-28 05:06:46','transfer','460761978135248896 gave 5 crystals to 429615167492325376.'),(1886,459884642192064512,'2018-06-28 06:10:47','checkin','Checked in for 8 crystals.'),(1887,459884642192064512,'2018-06-28 06:11:04','transfer','459884642192064512 gave 8 crystals to 201102155896193024.'),(1888,200340393596944384,'2018-06-28 06:15:08','transfer','200340393596944384 gave 2 crystals to 457300954660995114.'),(1889,200340393596944384,'2018-06-28 06:15:15','transfer','200340393596944384 gave 1 crystals to 460761978135248896.'),(1890,200340393596944384,'2018-06-28 06:49:05','transfer','200340393596944384 gave 1 crystals to 460761978135248896.'),(1891,424563962303086594,'2018-06-28 07:08:53','checkin','Checked in for 9 crystals.'),(1892,424563962303086594,'2018-06-28 07:09:35','deposit','Deposited 11 crystals to 454460679244480512.'),(1893,148942504077557760,'2018-06-28 07:14:09','checkin','Checked in for 7 crystals.'),(1894,461792445668261888,'2018-06-28 07:17:50','conversion','Converted to The Anarchy.'),(1895,204933415252787202,'2018-06-28 08:32:47','deposit','Deposited 35 crystals to 454460679244480512.'),(1896,262771588946984963,'2018-06-28 10:03:36','checkin','Checked in for 5 crystals.'),(1897,142612779377885185,'2018-06-28 11:34:12','checkin','Checked in for 7 crystals.'),(1898,274301199841361920,'2018-06-28 12:03:31','checkin','Checked in for 9 crystals.'),(1899,218458041790496768,'2018-06-28 12:25:58','checkin','Checked in for 8 crystals.'),(1900,286105785052954626,'2018-06-28 12:27:17','checkin','Checked in for 5 crystals.'),(1901,204933415252787202,'2018-06-28 12:35:02','checkin','Checked in for 9 crystals.'),(1902,201102155896193024,'2018-06-28 13:29:35','checkin','Checked in for 5 crystals.'),(1903,229524509047128074,'2018-06-28 13:34:59','checkin','Checked in for 4 crystals.'),(1904,229524509047128074,'2018-06-28 13:35:05','conversion','Converted to The Anarchy.'),(1905,459873273308643328,'2018-06-28 14:01:06','checkin','Checked in for 6 crystals.'),(1906,265907268942299136,'2018-06-28 14:12:23','checkin','Checked in for 9 crystals.'),(1907,265907268942299136,'2018-06-28 14:19:17','deposit','Deposited 3 crystals to 454460679244480512.'),(1908,236304169533833216,'2018-06-28 14:51:59','checkin','Checked in for 6 crystals.'),(1909,443150342725566484,'2018-06-28 14:53:05','checkin','Checked in for 8 crystals.'),(1910,443150342725566484,'2018-06-28 14:53:24','transfer','443150342725566484 gave 8 crystals to 236304169533833216.'),(1911,329153903557869569,'2018-06-28 14:59:25','conversion','Converted to The Religion.'),(1912,329153903557869569,'2018-06-28 15:05:13','checkin','Checked in for 4 crystals.'),(1913,283395529449406464,'2018-06-28 18:54:29','conversion','Converted to The Anarchy.'),(1914,283395529449406464,'2018-06-28 18:56:11','checkin','Checked in for 4 crystals.'),(1915,283395529449406464,'2018-06-28 18:56:56','deposit','Deposited 4 crystals to 454460756520337418.'),(1916,429615167492325376,'2018-06-28 18:57:09','checkin','Checked in for 9 crystals.'),(1917,124137587773276160,'2018-06-28 18:59:48','conversion','Converted to The Anarchy.'),(1918,293160157989568513,'2018-06-28 19:45:46','conversion','Converted to The Religion.'),(1919,293160157989568513,'2018-06-28 19:46:42','checkin','Checked in for 4 crystals.'),(1920,390618369545601028,'2018-06-28 19:48:36','checkin','Checked in for 9 crystals.'),(1921,293160157989568513,'2018-06-28 19:52:01','deposit','Deposited 4 crystals to 457312250147897366.'),(1922,124512152466882560,'2018-06-28 19:53:58','conversion','Converted to The Order.'),(1923,163347196278734848,'2018-06-28 20:05:20','conversion','Converted to The Order.'),(1924,124512152466882560,'2018-06-28 20:07:09','checkin','Checked in for 8 crystals.'),(1925,274301199841361920,'2018-06-28 20:12:27','transfer','274301199841361920 gave 22 crystals to 283395529449406464.'),(1926,274301199841361920,'2018-06-28 20:13:41','transfer','274301199841361920 gave 25 crystals to 283395529449406464.'),(1927,325565391478718464,'2018-06-28 20:16:13','conversion','Converted to The Anarchy.'),(1928,325565391478718464,'2018-06-28 20:18:27','checkin','Checked in for 7 crystals.'),(1929,390618369545601028,'2018-06-28 20:30:53','deposit','Deposited 2 crystals to 454460756520337418.'),(1930,390618369545601028,'2018-06-28 20:31:16','deposit','Deposited 1 crystals to 454460756520337418.'),(1931,390618369545601028,'2018-06-28 20:36:42','deposit','Deposited 20 crystals to 454460756520337418.'),(1932,97466512444493824,'2018-06-28 20:36:42','conversion','Converted to The Order.'),(1933,283671323639676929,'2018-06-28 20:37:20','conversion','Converted to The Anarchy.'),(1934,283671323639676929,'2018-06-28 20:42:54','checkin','Checked in for 7 crystals.'),(1935,459834182961463299,'2018-06-28 21:12:11','checkin','Checked in for 4 crystals.'),(1936,459834182961463299,'2018-06-28 21:12:18','transfer','459834182961463299 gave 19 crystals to 201102155896193024.'),(1937,424563962303086594,'2018-06-28 21:14:34','deposit','Deposited 17 crystals to 454460679244480512.'),(1938,329153903557869569,'2018-06-28 21:47:46','transfer','329153903557869569 gave 4 crystals to 201102155896193024.'),(1939,148942504077557760,'2018-06-28 22:28:02','deposit','Deposited 13 crystals to 457312250147897366.'),(1940,286105785052954626,'2018-06-28 22:28:50','deposit','Deposited 26 crystals to 454460679244480512.'),(1941,211232684209340426,'2018-06-28 22:28:56','deposit','Deposited 116 crystals to 454460679244480512.'),(1942,461859170258255902,'2018-06-28 22:41:50','conversion','Converted to The Anarchy.'),(1943,438548294223003650,'2018-06-28 23:26:04','conversion','Converted to The Order.'),(1944,306381311923453953,'2018-06-28 23:32:56','conversion','Converted to The Anarchy.'),(1945,306381311923453953,'2018-06-28 23:38:19','checkin','Checked in for 8 crystals.'),(1946,438548294223003650,'2018-06-28 23:39:53','checkin','Checked in for 5 crystals.'),(1947,220272827327053824,'2018-06-29 00:47:34','checkin','Checked in for 9 crystals.'),(1948,218498162745278474,'2018-06-29 00:48:46','checkin','Checked in for 6 crystals.'),(1949,457300954660995114,'2018-06-29 00:49:09','checkin','Checked in for 8 crystals.'),(1950,460761978135248896,'2018-06-29 00:49:19','checkin','Checked in for 8 crystals.'),(1951,433759248800022532,'2018-06-29 00:49:21','checkin','Checked in for 5 crystals.'),(1952,200340393596944384,'2018-06-29 00:49:26','checkin','Checked in for 6 crystals.'),(1953,454823752925052930,'2018-06-29 00:49:38','checkin','Checked in for 7 crystals.'),(1954,131968711312539648,'2018-06-29 00:50:54','checkin','Checked in for 4 crystals.'),(1955,124137587773276160,'2018-06-29 00:52:04','checkin','Checked in for 5 crystals.'),(1956,283395529449406464,'2018-06-29 00:55:32','checkin','Checked in for 8 crystals.'),(1957,185698541052755968,'2018-06-29 01:00:48','checkin','Checked in for 5 crystals.'),(1958,454823752925052930,'2018-06-29 01:04:07','transfer','454823752925052930 gave 10 crystals to 283395529449406464.'),(1959,429615167492325376,'2018-06-29 01:06:07','transfer','429615167492325376 gave 1 crystals to 283395529449406464.'),(1960,457300954660995114,'2018-06-29 01:06:28','transfer','457300954660995114 gave 10 crystals to 283395529449406464.'),(1961,438094660712267778,'2018-06-29 01:55:47','checkin','Checked in for 6 crystals.'),(1962,163770616581718017,'2018-06-29 02:04:31','checkin','Checked in for 5 crystals.'),(1963,459879057295671296,'2018-06-29 02:06:31','checkin','Checked in for 6 crystals.'),(1964,459879057295671296,'2018-06-29 02:06:41','transfer','459879057295671296 gave 17 crystals to 201102155896193024.'),(1965,459881667104997376,'2018-06-29 02:06:48','checkin','Checked in for 8 crystals.'),(1966,459881667104997376,'2018-06-29 02:06:55','transfer','459881667104997376 gave 27 crystals to 201102155896193024.'),(1967,459876383431327746,'2018-06-29 02:07:02','checkin','Checked in for 8 crystals.'),(1968,459876383431327746,'2018-06-29 02:07:10','transfer','459876383431327746 gave 18 crystals to 201102155896193024.'),(1969,388505302292627456,'2018-06-29 02:10:52','checkin','Checked in for 6 crystals.'),(1970,459873273308643328,'2018-06-29 02:12:12','checkin','Checked in for 9 crystals.'),(1971,459873273308643328,'2018-06-29 02:12:18','transfer','459873273308643328 gave 19 crystals to 201102155896193024.'),(1972,142612779377885185,'2018-06-29 04:19:35','checkin','Checked in for 7 crystals.'),(1973,142612779377885185,'2018-06-29 04:19:57','deposit','Deposited 28 crystals to 454460679244480512.'),(1974,359521958519504926,'2018-06-29 04:23:58','checkin','Checked in for 5 crystals.'),(1975,359521958519504926,'2018-06-29 04:24:35','deposit','Deposited 2 crystals to 454460756520337418.'),(1976,200340393596944384,'2018-06-29 04:24:49','deposit','Deposited 9 crystals to 454460756520337418.'),(1977,201102155896193024,'2018-06-29 04:43:56','checkin','Checked in for 4 crystals.'),(1978,334750493085794304,'2018-06-29 05:07:55','checkin','Checked in for 4 crystals.'),(1979,168775748495212545,'2018-06-29 05:53:41','checkin','Checked in for 6 crystals.'),(1980,168775748495212545,'2018-06-29 06:02:49','deposit','Deposited 10 crystals to 457312250147897366.'),(1981,325565391478718464,'2018-06-29 06:21:25','checkin','Checked in for 6 crystals.'),(1982,265907268942299136,'2018-06-29 06:47:27','checkin','Checked in for 9 crystals.'),(1983,424563962303086594,'2018-06-29 07:01:09','checkin','Checked in for 7 crystals.'),(1984,424563962303086594,'2018-06-29 07:01:21','deposit','Deposited 9 crystals to 454460679244480512.'),(1985,329153903557869569,'2018-06-29 07:21:02','checkin','Checked in for 8 crystals.'),(1986,390618369545601028,'2018-06-29 07:31:06','checkin','Checked in for 9 crystals.'),(1987,329153903557869569,'2018-06-29 07:59:11','transfer','329153903557869569 gave 3 crystals to 201102155896193024.'),(1988,204933415252787202,'2018-06-29 08:00:34','deposit','Deposited 51 crystals to 454460679244480512.'),(1989,283395529449406464,'2018-06-29 08:04:38','deposit','Deposited 37 crystals to 454460756520337418.'),(1990,148942504077557760,'2018-06-29 08:11:37','checkin','Checked in for 8 crystals.'),(1991,461859170258255902,'2018-06-29 08:12:54','checkin','Checked in for 6 crystals.'),(1992,124512152466882560,'2018-06-29 08:21:19','deposit','Deposited 10 crystals to 454460679244480512.'),(1993,274301199841361920,'2018-06-29 08:56:03','checkin','Checked in for 4 crystals.'),(1994,329153903557869569,'2018-06-29 09:24:57','transfer','329153903557869569 gave 4 crystals to 201102155896193024.'),(1995,211232684209340426,'2018-06-29 09:36:25','checkin','Checked in for 5 crystals.'),(1996,286105785052954626,'2018-06-29 09:37:57','checkin','Checked in for 6 crystals.'),(1997,262771588946984963,'2018-06-29 09:47:19','checkin','Checked in for 4 crystals.'),(1998,300231408675323906,'2018-06-29 10:00:58','conversion','Converted to The Anarchy.'),(1999,306381311923453953,'2018-06-29 10:23:40','checkin','Checked in for 8 crystals.'),(2000,306381311923453953,'2018-06-29 10:44:18','deposit','Deposited 1 crystals to 454460756520337418.'),(2001,204933415252787202,'2018-06-29 11:34:07','deposit','Deposited 15 crystals to 454460679244480512.'),(2002,204933415252787202,'2018-06-29 13:19:38','checkin','Checked in for 7 crystals.'),(2003,424563962303086594,'2018-06-29 13:29:57','deposit','Deposited 10 crystals to 454460679244480512.'),(2004,200340393596944384,'2018-06-29 13:35:17','transfer','200340393596944384 gave 15 crystals to 306381311923453953.'),(2005,204933415252787202,'2018-06-29 13:56:10','deposit','Deposited 15 crystals to 454460679244480512.'),(2006,459876383431327746,'2018-06-29 13:58:06','transfer','459876383431327746 gave 2 crystals to 201102155896193024.'),(2007,218458041790496768,'2018-06-29 14:40:18','checkin','Checked in for 6 crystals.'),(2008,236304169533833216,'2018-06-29 14:57:09','checkin','Checked in for 6 crystals.'),(2009,459873273308643328,'2018-06-29 14:57:31','transfer','459873273308643328 gave 2 crystals to 201102155896193024.'),(2010,443150342725566484,'2018-06-29 14:57:34','checkin','Checked in for 4 crystals.'),(2011,459884642192064512,'2018-06-29 14:57:44','checkin','Checked in for 6 crystals.'),(2012,443150342725566484,'2018-06-29 14:57:44','transfer','443150342725566484 gave 4 crystals to 236304169533833216.'),(2013,459884642192064512,'2018-06-29 14:57:51','transfer','459884642192064512 gave 7 crystals to 201102155896193024.'),(2014,306381311923453953,'2018-06-29 14:57:56','deposit','Deposited 2 crystals to 454460756520337418.'),(2015,459881667104997376,'2018-06-29 14:58:06','transfer','459881667104997376 gave 8 crystals to 201102155896193024.'),(2016,459879057295671296,'2018-06-29 14:58:18','transfer','459879057295671296 gave 4 crystals to 201102155896193024.'),(2017,459881667104997376,'2018-06-29 15:06:33','transfer','459881667104997376 gave 1 crystals to 201102155896193024.'),(2018,429615167492325376,'2018-06-29 16:14:52','checkin','Checked in for 9 crystals.'),(2019,459834182961463299,'2018-06-29 16:49:34','checkin','Checked in for 8 crystals.'),(2020,459834182961463299,'2018-06-29 16:49:41','transfer','459834182961463299 gave 8 crystals to 201102155896193024.'),(2021,259442979599679492,'2018-06-29 17:11:21','conversion','Converted to The Anarchy.'),(2022,278115594879107074,'2018-06-29 17:36:56','conversion','Converted to The Anarchy.'),(2023,459876383431327746,'2018-06-29 17:42:18','transfer','459876383431327746 gave 11 crystals to 201102155896193024.'),(2024,278115594879107074,'2018-06-29 17:42:23','checkin','Checked in for 6 crystals.'),(2025,459876383431327746,'2018-06-29 17:48:11','transfer','459876383431327746 gave 1 crystals to 201102155896193024.'),(2026,286105785052954626,'2018-06-29 17:48:54','deposit','Deposited 13 crystals to 454460679244480512.'),(2027,459873273308643328,'2018-06-29 17:49:00','transfer','459873273308643328 gave 12 crystals to 201102155896193024.'),(2028,142612779377885185,'2018-06-29 17:49:10','deposit','Deposited 10 crystals to 454460679244480512.'),(2029,459879057295671296,'2018-06-29 17:49:18','transfer','459879057295671296 gave 7 crystals to 201102155896193024.'),(2030,236304169533833216,'2018-06-29 17:49:28','transfer','236304169533833216 gave 78 crystals to 201102155896193024.'),(2031,459883167160205313,'2018-06-29 17:49:28','transfer','459883167160205313 gave 20 crystals to 201102155896193024.'),(2032,459834182961463299,'2018-06-29 17:49:47','transfer','459834182961463299 gave 4 crystals to 201102155896193024.'),(2033,278115594879107074,'2018-06-29 17:50:36','deposit','Deposited 8 crystals to 454460756520337418.'),(2034,218458041790496768,'2018-06-29 17:52:30','transfer','218458041790496768 gave 30 crystals to 201102155896193024.'),(2035,148942504077557760,'2018-06-29 17:56:26','deposit','Deposited 17 crystals to 457312250147897366.'),(2036,200340393596944384,'2018-06-29 17:56:46','deposit','Deposited 1 crystals to 454460756520337418.'),(2037,201102155896193024,'2018-06-29 17:58:14','deposit','Deposited 866 crystals to 457312250147897366.'),(2038,262771588946984963,'2018-06-29 17:58:17','deposit','Deposited 204 crystals to 457312250147897366.'),(2039,297748308523483138,'2018-06-29 18:03:14','checkin','Checked in for 4 crystals.'),(2040,137004645468995585,'2018-06-29 18:03:33','conversion','Converted to The Religion.'),(2041,393415098766458892,'2018-06-29 21:11:58','conversion','Converted to The Anarchy.'),(2042,393415098766458892,'2018-06-29 21:16:49','checkin','Checked in for 4 crystals.'),(2043,220272827327053824,'2018-06-29 21:20:23','deposit','Deposited 50 crystals to 454460756520337418.'),(2044,163770616581718017,'2018-06-29 21:22:48','gambleLost','Gambled and lost for 50 crystals.'),(2045,390618369545601028,'2018-06-29 21:23:00','gambleWon','Gambled and won for 2 crystals.'),(2046,220272827327053824,'2018-06-29 21:23:10','gambleWon','Gambled and won for 5 crystals.'),(2047,393415098766458892,'2018-06-29 21:23:22','gambleWon','Gambled and won for 2 crystals.'),(2048,163770616581718017,'2018-06-29 21:23:24','gambleLost','Gambled and lost for 50 crystals.'),(2049,359521958519504926,'2018-06-29 21:23:25','gambleLost','Gambled and lost for 5 crystals.'),(2050,359521958519504926,'2018-06-29 21:23:32','gambleWon','Gambled and won for 5 crystals.'),(2051,390618369545601028,'2018-06-29 21:23:33','gambleWon','Gambled and won for 10 crystals.'),(2052,393415098766458892,'2018-06-29 21:23:35','gambleLost','Gambled and lost for 3 crystals.'),(2053,359521958519504926,'2018-06-29 21:23:37','gambleWon','Gambled and won for 5 crystals.'),(2054,359521958519504926,'2018-06-29 21:23:40','gambleWon','Gambled and won for 2 crystals.'),(2055,389482225600561184,'2018-06-29 21:23:42','conversion','Converted to The Religion.'),(2056,359521958519504926,'2018-06-29 21:23:44','gambleWon','Gambled and won for 2 crystals.'),(2057,265907268942299136,'2018-06-29 21:23:48','gambleWon','Gambled and won for 10 crystals.'),(2058,359521958519504926,'2018-06-29 21:23:48','gambleLost','Gambled and lost for 5 crystals.'),(2059,218498162745278474,'2018-06-29 21:23:55','gambleLost','Gambled and lost for 5 crystals.'),(2060,262771588946984963,'2018-06-29 21:23:57','gambleWon','Gambled and won for 4 crystals.'),(2061,218498162745278474,'2018-06-29 21:24:00','gambleLost','Gambled and lost for 10 crystals.'),(2062,265907268942299136,'2018-06-29 21:24:02','gambleWon','Gambled and won for 10 crystals.'),(2063,218498162745278474,'2018-06-29 21:24:04','gambleLost','Gambled and lost for 20 crystals.'),(2064,218498162745278474,'2018-06-29 21:24:11','gambleWon','Gambled and won for 30 crystals.'),(2065,200340393596944384,'2018-06-29 21:24:39','gambleWon','Gambled and won for 1 crystals.'),(2066,200340393596944384,'2018-06-29 21:24:44','gambleLost','Gambled and lost for 1 crystals.'),(2067,359521958519504926,'2018-06-29 21:24:45','gambleLost','Gambled and lost for 5 crystals.'),(2068,200340393596944384,'2018-06-29 21:24:47','gambleWon','Gambled and won for 1 crystals.'),(2069,359521958519504926,'2018-06-29 21:24:52','gambleWon','Gambled and won for 3 crystals.'),(2070,359521958519504926,'2018-06-29 21:24:55','gambleWon','Gambled and won for 4 crystals.'),(2071,359521958519504926,'2018-06-29 21:24:57','gambleWon','Gambled and won for 5 crystals.'),(2072,390618369545601028,'2018-06-29 21:25:02','gambleLost','Gambled and lost for 20 crystals.'),(2073,324727149930086400,'2018-06-29 21:25:06','conversion','Converted to The Anarchy.'),(2074,405420172736987146,'2018-06-29 21:25:07','conversion','Converted to The Anarchy.'),(2075,359521958519504926,'2018-06-29 21:25:11','gambleWon','Gambled and won for 6 crystals.'),(2076,359521958519504926,'2018-06-29 21:25:14','gambleLost','Gambled and lost for 3 crystals.'),(2077,359521958519504926,'2018-06-29 21:25:17','gambleWon','Gambled and won for 3 crystals.'),(2078,390618369545601028,'2018-06-29 21:25:18','gambleLost','Gambled and lost for 17 crystals.'),(2079,359521958519504926,'2018-06-29 21:25:22','gambleLost','Gambled and lost for 6 crystals.'),(2080,200340393596944384,'2018-06-29 21:25:25','gambleWon','Gambled and won for 10 crystals.'),(2081,359521958519504926,'2018-06-29 21:25:26','gambleLost','Gambled and lost for 1 crystals.'),(2082,359521958519504926,'2018-06-29 21:25:29','gambleWon','Gambled and won for 2 crystals.'),(2083,359521958519504926,'2018-06-29 21:25:31','gambleLost','Gambled and lost for 3 crystals.'),(2084,359521958519504926,'2018-06-29 21:25:35','gambleLost','Gambled and lost for 3 crystals.'),(2085,359521958519504926,'2018-06-29 21:25:38','gambleLost','Gambled and lost for 1 crystals.'),(2086,200340393596944384,'2018-06-29 21:25:41','gambleLost','Gambled and lost for 1 crystals.'),(2087,359521958519504926,'2018-06-29 21:25:43','gambleLost','Gambled and lost for 2 crystals.'),(2088,359521958519504926,'2018-06-29 21:25:45','gambleLost','Gambled and lost for 1 crystals.'),(2089,389482225600561184,'2018-06-29 21:26:12','checkin','Checked in for 7 crystals.'),(2090,193176558784086016,'2018-06-29 21:26:28','conversion','Converted to The Order.'),(2091,200340393596944384,'2018-06-29 21:26:59','gambleWon','Gambled and won for 1 crystals.'),(2092,265907268942299136,'2018-06-29 21:27:01','gambleLost','Gambled and lost for 10 crystals.'),(2093,200340393596944384,'2018-06-29 21:27:05','gambleWon','Gambled and won for 2 crystals.'),(2094,265907268942299136,'2018-06-29 21:27:08','gambleLost','Gambled and lost for 10 crystals.'),(2095,265907268942299136,'2018-06-29 21:27:15','gambleLost','Gambled and lost for 20 crystals.'),(2096,200340393596944384,'2018-06-29 21:27:39','gambleLost','Gambled and lost for 1 crystals.'),(2097,286176706933293057,'2018-06-29 21:27:40','conversion','Converted to The Anarchy.'),(2098,200340393596944384,'2018-06-29 21:27:41','gambleWon','Gambled and won for 1 crystals.'),(2099,200340393596944384,'2018-06-29 21:27:48','gambleWon','Gambled and won for 1 crystals.'),(2100,200340393596944384,'2018-06-29 21:27:50','gambleWon','Gambled and won for 2 crystals.'),(2101,294927961310625793,'2018-06-29 21:27:50','conversion','Converted to The Religion.'),(2102,200340393596944384,'2018-06-29 21:27:54','gambleWon','Gambled and won for 3 crystals.'),(2103,200340393596944384,'2018-06-29 21:28:12','gambleWon','Gambled and won for 2 crystals.'),(2104,265907268942299136,'2018-06-29 21:28:31','gambleWon','Gambled and won for 3 crystals.'),(2105,200340393596944384,'2018-06-29 21:28:39','gambleWon','Gambled and won for 1 crystals.'),(2106,294927961310625793,'2018-06-29 21:28:42','checkin','Checked in for 4 crystals.'),(2107,265907268942299136,'2018-06-29 21:28:47','gambleWon','Gambled and won for 10 crystals.'),(2108,200340393596944384,'2018-06-29 21:29:05','gambleLost','Gambled and lost for 1 crystals.'),(2109,200340393596944384,'2018-06-29 21:29:11','gambleLost','Gambled and lost for 1 crystals.'),(2110,200340393596944384,'2018-06-29 21:29:13','gambleLost','Gambled and lost for 1 crystals.'),(2111,200340393596944384,'2018-06-29 21:29:15','gambleWon','Gambled and won for 1 crystals.'),(2112,200340393596944384,'2018-06-29 21:29:18','gambleWon','Gambled and won for 1 crystals.'),(2113,200340393596944384,'2018-06-29 21:29:21','gambleLost','Gambled and lost for 2 crystals.'),(2114,265907268942299136,'2018-06-29 21:29:28','gambleLost','Gambled and lost for 10 crystals.'),(2115,265907268942299136,'2018-06-29 21:29:35','gambleLost','Gambled and lost for 10 crystals.'),(2116,200340393596944384,'2018-06-29 21:29:43','gambleLost','Gambled and lost for 1 crystals.'),(2117,200340393596944384,'2018-06-29 21:29:46','gambleWon','Gambled and won for 1 crystals.'),(2118,200340393596944384,'2018-06-29 21:29:51','gambleLost','Gambled and lost for 2 crystals.'),(2119,200340393596944384,'2018-06-29 21:29:53','gambleWon','Gambled and won for 1 crystals.'),(2120,200340393596944384,'2018-06-29 21:29:56','gambleLost','Gambled and lost for 1 crystals.'),(2121,324727149930086400,'2018-06-29 21:30:20','checkin','Checked in for 5 crystals.'),(2122,405420172736987146,'2018-06-29 21:30:39','checkin','Checked in for 5 crystals.'),(2123,163770616581718017,'2018-06-29 21:31:02','gambleWon','Gambled and won for 100 crystals.'),(2124,200340393596944384,'2018-06-29 21:32:24','gambleWon','Gambled and won for 1 crystals.'),(2125,200340393596944384,'2018-06-29 21:32:27','gambleWon','Gambled and won for 10 crystals.'),(2126,200340393596944384,'2018-06-29 21:32:31','gambleWon','Gambled and won for 20 crystals.'),(2127,200340393596944384,'2018-06-29 21:32:37','gambleWon','Gambled and won for 15 crystals.'),(2128,200340393596944384,'2018-06-29 21:32:55','gambleLost','Gambled and lost for 50 crystals.'),(2129,294927961310625793,'2018-06-29 21:33:10','gambleWon','Gambled and won for 4 crystals.'),(2130,294927961310625793,'2018-06-29 21:33:18','gambleWon','Gambled and won for 4 crystals.'),(2131,294927961310625793,'2018-06-29 21:33:23','gambleWon','Gambled and won for 8 crystals.'),(2132,294927961310625793,'2018-06-29 21:33:27','gambleWon','Gambled and won for 16 crystals.'),(2133,359521958519504926,'2018-06-29 21:34:23','gambleLost','Gambled and lost for 2 crystals.'),(2134,359521958519504926,'2018-06-29 21:34:33','gambleWon','Gambled and won for 2 crystals.'),(2135,359521958519504926,'2018-06-29 21:34:43','gambleLost','Gambled and lost for 2 crystals.'),(2136,359521958519504926,'2018-06-29 21:34:48','gambleWon','Gambled and won for 2 crystals.'),(2137,359521958519504926,'2018-06-29 21:34:51','gambleWon','Gambled and won for 2 crystals.'),(2138,359521958519504926,'2018-06-29 21:34:53','gambleWon','Gambled and won for 2 crystals.'),(2139,297748308523483138,'2018-06-29 21:34:55','gambleWon','Gambled and won for 1 crystals.'),(2140,359521958519504926,'2018-06-29 21:34:56','gambleLost','Gambled and lost for 6 crystals.'),(2141,405420172736987146,'2018-06-29 21:35:00','gambleLost','Gambled and lost for 5 crystals.'),(2142,359521958519504926,'2018-06-29 21:35:05','gambleLost','Gambled and lost for 2 crystals.'),(2143,359521958519504926,'2018-06-29 21:35:07','gambleWon','Gambled and won for 2 crystals.'),(2144,359521958519504926,'2018-06-29 21:35:09','gambleWon','Gambled and won for 2 crystals.'),(2145,359521958519504926,'2018-06-29 21:35:11','gambleLost','Gambled and lost for 1 crystals.'),(2146,359521958519504926,'2018-06-29 21:35:14','gambleLost','Gambled and lost for 2 crystals.'),(2147,359521958519504926,'2018-06-29 21:35:17','gambleLost','Gambled and lost for 1 crystals.'),(2148,359521958519504926,'2018-06-29 21:35:34','gambleWon','Gambled and won for 1 crystals.'),(2149,359521958519504926,'2018-06-29 21:35:36','gambleLost','Gambled and lost for 2 crystals.'),(2150,359521958519504926,'2018-06-29 21:35:40','gambleLost','Gambled and lost for 2 crystals.'),(2151,359521958519504926,'2018-06-29 21:35:51','gambleWon','Gambled and won for 2 crystals.'),(2152,200340393596944384,'2018-06-29 21:35:55','gambleLost','Gambled and lost for 1 crystals.'),(2153,200340393596944384,'2018-06-29 21:36:01','gambleWon','Gambled and won for 1 crystals.'),(2154,294927961310625793,'2018-06-29 21:36:10','gambleWon','Gambled and won for 1 crystals.'),(2155,294927961310625793,'2018-06-29 21:36:15','gambleLost','Gambled and lost for 1 crystals.'),(2156,294927961310625793,'2018-06-29 21:36:22','gambleLost','Gambled and lost for 30 crystals.'),(2157,294927961310625793,'2018-06-29 21:36:26','gambleLost','Gambled and lost for 6 crystals.'),(2158,359521958519504926,'2018-06-29 21:36:32','gambleLost','Gambled and lost for 3 crystals.'),(2159,359521958519504926,'2018-06-29 21:36:37','gambleLost','Gambled and lost for 5 crystals.'),(2160,359521958519504926,'2018-06-29 21:36:40','gambleLost','Gambled and lost for 2 crystals.'),(2161,137004645468995585,'2018-06-29 21:37:06','checkin','Checked in for 8 crystals.'),(2162,200340393596944384,'2018-06-29 21:38:43','gambleLost','Gambled and lost for 1 crystals.'),(2163,200340393596944384,'2018-06-29 21:38:45','gambleLost','Gambled and lost for 1 crystals.'),(2164,137004645468995585,'2018-06-29 21:38:56','gambleWon','Gambled and won for 1 crystals.'),(2165,137004645468995585,'2018-06-29 21:39:17','gambleWon','Gambled and won for 1 crystals.'),(2166,200340393596944384,'2018-06-29 21:39:38','gambleWon','Gambled and won for 2 crystals.'),(2167,200340393596944384,'2018-06-29 21:39:41','gambleLost','Gambled and lost for 1 crystals.'),(2168,137004645468995585,'2018-06-29 21:40:04','gambleLost','Gambled and lost for 2 crystals.'),(2169,137004645468995585,'2018-06-29 21:40:13','gambleWon','Gambled and won for 4 crystals.'),(2170,137004645468995585,'2018-06-29 21:40:21','gambleLost','Gambled and lost for 1 crystals.'),(2171,137004645468995585,'2018-06-29 21:40:32','gambleLost','Gambled and lost for 2 crystals.'),(2172,137004645468995585,'2018-06-29 21:40:45','gambleWon','Gambled and won for 4 crystals.'),(2173,200340393596944384,'2018-06-29 21:41:03','gambleWon','Gambled and won for 1 crystals.'),(2174,200340393596944384,'2018-06-29 21:41:16','gambleWon','Gambled and won for 1 crystals.'),(2175,163770616581718017,'2018-06-29 21:41:17','gambleLost','Gambled and lost for 200 crystals.'),(2176,137004645468995585,'2018-06-29 21:41:18','gambleWon','Gambled and won for 1 crystals.'),(2177,200340393596944384,'2018-06-29 21:41:28','gambleLost','Gambled and lost for 10 crystals.'),(2178,137004645468995585,'2018-06-29 21:41:36','gambleWon','Gambled and won for 1 crystals.'),(2179,137004645468995585,'2018-06-29 21:41:47','gambleWon','Gambled and won for 1 crystals.'),(2180,297748308523483138,'2018-06-29 21:42:02','gambleLost','Gambled and lost for 1 crystals.'),(2181,297748308523483138,'2018-06-29 21:42:02','gambleLost','Gambled and lost for 1 crystals.'),(2182,297748308523483138,'2018-06-29 21:42:02','gambleWon','Gambled and won for 1 crystals.'),(2183,297748308523483138,'2018-06-29 21:42:02','gambleWon','Gambled and won for 1 crystals.'),(2184,297748308523483138,'2018-06-29 21:42:03','gambleLost','Gambled and lost for 1 crystals.'),(2185,137004645468995585,'2018-06-29 21:42:03','gambleLost','Gambled and lost for 1 crystals.'),(2186,297748308523483138,'2018-06-29 21:42:03','gambleWon','Gambled and won for 1 crystals.'),(2187,297748308523483138,'2018-06-29 21:42:03','gambleLost','Gambled and lost for 1 crystals.'),(2188,297748308523483138,'2018-06-29 21:42:04','gambleLost','Gambled and lost for 1 crystals.'),(2189,297748308523483138,'2018-06-29 21:42:04','gambleLost','Gambled and lost for 1 crystals.'),(2190,297748308523483138,'2018-06-29 21:42:04','gambleLost','Gambled and lost for 1 crystals.'),(2191,297748308523483138,'2018-06-29 21:42:12','gambleWon','Gambled and won for 1 crystals.'),(2192,163770616581718017,'2018-06-29 21:42:16','gambleWon','Gambled and won for 6 crystals.'),(2193,200340393596944384,'2018-06-29 21:42:19','gambleLost','Gambled and lost for 5 crystals.'),(2194,163770616581718017,'2018-06-29 21:42:21','gambleLost','Gambled and lost for 12 crystals.'),(2195,137004645468995585,'2018-06-29 21:42:40','gambleLost','Gambled and lost for 1 crystals.'),(2196,137004645468995585,'2018-06-29 21:42:48','gambleWon','Gambled and won for 3 crystals.'),(2197,200340393596944384,'2018-06-29 21:42:48','gambleWon','Gambled and won for 5 crystals.'),(2198,137004645468995585,'2018-06-29 21:43:02','gambleWon','Gambled and won for 2 crystals.'),(2199,200340393596944384,'2018-06-29 21:43:12','gambleLost','Gambled and lost for 5 crystals.'),(2200,137004645468995585,'2018-06-29 21:43:13','gambleWon','Gambled and won for 2 crystals.'),(2201,137004645468995585,'2018-06-29 21:43:30','gambleWon','Gambled and won for 2 crystals.'),(2202,137004645468995585,'2018-06-29 21:43:38','gambleLost','Gambled and lost for 2 crystals.'),(2203,137004645468995585,'2018-06-29 21:43:46','gambleWon','Gambled and won for 4 crystals.'),(2204,200340393596944384,'2018-06-29 21:43:48','gambleLost','Gambled and lost for 2 crystals.'),(2205,324727149930086400,'2018-06-29 21:45:10','gambleWon','Gambled and won for 1 crystals.'),(2206,393415098766458892,'2018-06-29 21:46:51','gambleWon','Gambled and won for 1 crystals.'),(2207,454823752925052930,'2018-06-29 21:47:12','gambleLost','Gambled and lost for 1 crystals.'),(2208,454823752925052930,'2018-06-29 21:47:15','gambleWon','Gambled and won for 1 crystals.'),(2209,454823752925052930,'2018-06-29 21:47:34','gambleLost','Gambled and lost for 1 crystals.'),(2210,454823752925052930,'2018-06-29 21:47:36','gambleWon','Gambled and won for 1 crystals.'),(2211,454823752925052930,'2018-06-29 21:47:38','gambleWon','Gambled and won for 1 crystals.'),(2212,454823752925052930,'2018-06-29 21:47:41','gambleWon','Gambled and won for 1 crystals.'),(2213,200340393596944384,'2018-06-29 21:47:47','gambleWon','Gambled and won for 5 crystals.'),(2214,200340393596944384,'2018-06-29 21:47:53','gambleLost','Gambled and lost for 4 crystals.'),(2215,137004645468995585,'2018-06-29 21:47:54','gambleLost','Gambled and lost for 5 crystals.'),(2216,137004645468995585,'2018-06-29 21:48:00','gambleWon','Gambled and won for 10 crystals.'),(2217,137004645468995585,'2018-06-29 21:48:06','gambleLost','Gambled and lost for 5 crystals.'),(2218,137004645468995585,'2018-06-29 21:48:13','gambleLost','Gambled and lost for 10 crystals.'),(2219,137004645468995585,'2018-06-29 21:48:21','gambleLost','Gambled and lost for 10 crystals.'),(2220,393415098766458892,'2018-06-29 21:48:28','gambleWon','Gambled and won for 1 crystals.'),(2221,272423601922375680,'2018-06-29 21:48:33','conversion','Converted to The Anarchy.'),(2222,337931581740285963,'2018-06-29 21:49:42','conversion','Converted to The Anarchy.'),(2223,137004645468995585,'2018-06-29 21:50:18','gambleWon','Gambled and won for 1 crystals.'),(2224,137004645468995585,'2018-06-29 21:50:23','gambleLost','Gambled and lost for 1 crystals.'),(2225,137004645468995585,'2018-06-29 21:50:29','gambleWon','Gambled and won for 2 crystals.'),(2226,137004645468995585,'2018-06-29 21:50:33','gambleLost','Gambled and lost for 1 crystals.'),(2227,137004645468995585,'2018-06-29 21:50:46','gambleWon','Gambled and won for 1 crystals.'),(2228,274301199841361920,'2018-06-29 21:50:49','transfer','274301199841361920 gave 1 crystals to 163770616581718017.'),(2229,137004645468995585,'2018-06-29 21:50:51','gambleWon','Gambled and won for 1 crystals.'),(2230,137004645468995585,'2018-06-29 21:50:57','gambleWon','Gambled and won for 1 crystals.'),(2231,137004645468995585,'2018-06-29 21:51:02','gambleWon','Gambled and won for 1 crystals.'),(2232,163770616581718017,'2018-06-29 21:51:02','gambleWon','Gambled and won for 1 crystals.'),(2233,137004645468995585,'2018-06-29 21:51:08','gambleLost','Gambled and lost for 1 crystals.'),(2234,163770616581718017,'2018-06-29 21:51:08','gambleWon','Gambled and won for 2 crystals.'),(2235,163770616581718017,'2018-06-29 21:51:14','gambleLost','Gambled and lost for 4 crystals.'),(2236,137004645468995585,'2018-06-29 21:51:15','gambleLost','Gambled and lost for 2 crystals.'),(2237,393415098766458892,'2018-06-29 21:51:20','transfer','393415098766458892 gave 2 crystals to 163770616581718017.'),(2238,137004645468995585,'2018-06-29 21:51:22','gambleWon','Gambled and won for 4 crystals.'),(2239,286105785052954626,'2018-06-29 21:51:34','gambleWon','Gambled and won for 1 crystals.'),(2240,163770616581718017,'2018-06-29 21:51:39','gambleWon','Gambled and won for 2 crystals.'),(2241,286105785052954626,'2018-06-29 21:51:43','gambleWon','Gambled and won for 1 crystals.'),(2242,163770616581718017,'2018-06-29 21:51:44','gambleWon','Gambled and won for 4 crystals.'),(2243,286105785052954626,'2018-06-29 21:51:45','gambleWon','Gambled and won for 1 crystals.'),(2244,286105785052954626,'2018-06-29 21:51:47','gambleWon','Gambled and won for 1 crystals.'),(2245,163770616581718017,'2018-06-29 21:51:47','gambleLost','Gambled and lost for 8 crystals.'),(2246,137004645468995585,'2018-06-29 21:51:48','gambleLost','Gambled and lost for 1 crystals.'),(2247,286105785052954626,'2018-06-29 21:51:49','gambleWon','Gambled and won for 1 crystals.'),(2248,286105785052954626,'2018-06-29 21:51:52','gambleLost','Gambled and lost for 1 crystals.'),(2249,137004645468995585,'2018-06-29 21:51:53','gambleLost','Gambled and lost for 1 crystals.'),(2250,286105785052954626,'2018-06-29 21:51:55','gambleLost','Gambled and lost for 2 crystals.'),(2251,286105785052954626,'2018-06-29 21:51:59','gambleLost','Gambled and lost for 4 crystals.'),(2252,286105785052954626,'2018-06-29 21:52:15','gambleLost','Gambled and lost for 1 crystals.'),(2253,286105785052954626,'2018-06-29 21:52:17','gambleLost','Gambled and lost for 1 crystals.'),(2254,324727149930086400,'2018-06-29 21:52:54','gambleLost','Gambled and lost for 1 crystals.'),(2255,337931581740285963,'2018-06-29 21:54:11','checkin','Checked in for 8 crystals.'),(2256,337931581740285963,'2018-06-29 21:54:25','gambleLost','Gambled and lost for 1 crystals.'),(2257,337931581740285963,'2018-06-29 21:54:30','gambleLost','Gambled and lost for 3 crystals.'),(2258,337931581740285963,'2018-06-29 21:54:36','gambleLost','Gambled and lost for 2 crystals.'),(2259,337931581740285963,'2018-06-29 21:54:47','gambleLost','Gambled and lost for 1 crystals.'),(2260,200340393596944384,'2018-06-29 21:54:59','gambleWon','Gambled and won for 1 crystals.'),(2261,337931581740285963,'2018-06-29 21:55:32','gambleLost','Gambled and lost for 1 crystals.'),(2262,193176558784086016,'2018-06-29 22:01:01','checkin','Checked in for 5 crystals.'),(2263,137004645468995585,'2018-06-29 22:01:19','gambleLost','Gambled and lost for 1 crystals.'),(2264,137004645468995585,'2018-06-29 22:01:25','gambleLost','Gambled and lost for 1 crystals.'),(2265,137004645468995585,'2018-06-29 22:01:30','gambleLost','Gambled and lost for 1 crystals.'),(2266,137004645468995585,'2018-06-29 22:01:35','gambleWon','Gambled and won for 1 crystals.'),(2267,137004645468995585,'2018-06-29 22:01:39','gambleLost','Gambled and lost for 1 crystals.'),(2268,137004645468995585,'2018-06-29 22:01:44','gambleLost','Gambled and lost for 1 crystals.'),(2269,137004645468995585,'2018-06-29 22:01:48','gambleWon','Gambled and won for 1 crystals.'),(2270,211232684209340426,'2018-06-29 22:01:55','gambleWon','Gambled and won for 1 crystals.'),(2271,211232684209340426,'2018-06-29 22:02:06','gambleLost','Gambled and lost for 1 crystals.'),(2272,211232684209340426,'2018-06-29 22:02:09','gambleLost','Gambled and lost for 2 crystals.'),(2273,211232684209340426,'2018-06-29 22:02:12','gambleLost','Gambled and lost for 4 crystals.'),(2274,211232684209340426,'2018-06-29 22:02:15','gambleLost','Gambled and lost for 8 crystals.'),(2275,393415098766458892,'2018-06-29 22:03:46','gambleLost','Gambled and lost for 1 crystals.'),(2276,324727149930086400,'2018-06-29 22:19:10','deposit','Deposited 4 crystals to 454460756520337418.'),(2277,150649616772235264,'2018-06-29 22:23:08','conversion','Converted to The Anarchy.'),(2278,150649616772235264,'2018-06-29 22:26:29','checkin','Checked in for 4 crystals.'),(2279,150768078714568705,'2018-06-29 22:34:19','conversion','Converted to The Anarchy.'),(2280,411878868274642945,'2018-06-29 23:03:45','conversion','Converted to The Anarchy.'),(2281,411878868274642945,'2018-06-29 23:04:51','checkin','Checked in for 8 crystals.'),(2282,130765718525444096,'2018-06-29 23:15:38','conversion','Converted to The Religion.'),(2283,459834182961463299,'2018-06-29 23:15:49','transfer','459834182961463299 gave 12 crystals to 201102155896193024.'),(2284,130765718525444096,'2018-06-29 23:16:06','checkin','Checked in for 6 crystals.'),(2285,150768078714568705,'2018-06-29 23:24:58','checkin','Checked in for 9 crystals.'),(2286,459876383431327746,'2018-06-29 23:25:18','transfer','459876383431327746 gave 4 crystals to 201102155896193024.'),(2287,285930195125403650,'2018-06-29 23:48:58','conversion','Converted to The Anarchy.'),(2288,285930195125403650,'2018-06-29 23:50:32','checkin','Checked in for 8 crystals.'),(2289,306381311923453953,'2018-06-29 23:55:04','deposit','Deposited 4 crystals to 454460756520337418.'),(2290,285930195125403650,'2018-06-29 23:55:37','deposit','Deposited 8 crystals to 454460756520337418.'),(2291,354514063763701760,'2018-06-30 00:02:29','conversion','Converted to The Order.'),(2292,454823752925052930,'2018-06-30 00:06:55','checkin','Checked in for 7 crystals.'),(2293,200340393596944384,'2018-06-30 00:07:02','checkin','Checked in for 4 crystals.'),(2294,218498162745278474,'2018-06-30 00:07:02','checkin','Checked in for 5 crystals.'),(2295,309558039881580545,'2018-06-30 00:08:58','conversion','Converted to The Anarchy.'),(2296,462410163643613184,'2018-06-30 00:12:33','conversion','Converted to The Religion.'),(2297,166026007499767809,'2018-06-30 00:15:34','conversion','Converted to The Religion.'),(2298,131968711312539648,'2018-06-30 00:19:39','checkin','Checked in for 7 crystals.'),(2299,433759248800022532,'2018-06-30 00:19:55','checkin','Checked in for 8 crystals.'),(2300,201102155896193024,'2018-06-30 00:26:46','checkin','Checked in for 4 crystals.'),(2301,195790975115722753,'2018-06-30 00:39:13','conversion','Converted to The Anarchy.'),(2302,195790975115722753,'2018-06-30 00:41:10','checkin','Checked in for 4 crystals.'),(2303,278115594879107074,'2018-06-30 00:56:12','checkin','Checked in for 4 crystals.'),(2304,275371162983464960,'2018-06-30 00:58:32','conversion','Converted to The Anarchy.'),(2305,275371162983464960,'2018-06-30 01:02:23','checkin','Checked in for 8 crystals.'),(2306,306381311923453953,'2018-06-30 01:12:41','checkin','Checked in for 5 crystals.'),(2307,223534281908027392,'2018-06-30 01:29:31','conversion','Converted to The Religion.'),(2308,286105785052954626,'2018-06-30 01:34:14','checkin','Checked in for 6 crystals.'),(2309,306381311923453953,'2018-06-30 02:20:50','deposit','Deposited 4 crystals to 454460756520337418.'),(2310,173595886897725440,'2018-06-30 02:21:35','conversion','Converted to The Anarchy.'),(2311,246788321404125185,'2018-06-30 02:24:41','conversion','Converted to The Anarchy.'),(2312,173595886897725440,'2018-06-30 02:24:45','checkin','Checked in for 5 crystals.'),(2313,306381311923453953,'2018-06-30 02:30:54','deposit','Deposited 2 crystals to 454460756520337418.'),(2314,130765718525444096,'2018-06-30 02:31:19','checkin','Checked in for 9 crystals.'),(2315,381978984566489100,'2018-06-30 02:31:36','conversion','Converted to The Anarchy.'),(2316,130765718525444096,'2018-06-30 02:31:52','deposit','Deposited 17 crystals to 457312250147897366.'),(2317,381978984566489100,'2018-06-30 02:32:25','checkin','Checked in for 4 crystals.'),(2318,220455346345345024,'2018-06-30 02:41:24','conversion','Converted to The Anarchy.'),(2319,438094660712267778,'2018-06-30 03:02:31','checkin','Checked in for 9 crystals.'),(2320,272423601922375680,'2018-06-30 03:03:49','checkin','Checked in for 7 crystals.'),(2321,246788321404125185,'2018-06-30 03:04:04','checkin','Checked in for 9 crystals.'),(2322,294927961310625793,'2018-06-30 03:18:51','checkin','Checked in for 4 crystals.'),(2323,334750493085794304,'2018-06-30 03:20:59','checkin','Checked in for 9 crystals.'),(2324,400022926348386315,'2018-06-30 03:33:53','conversion','Converted to The Religion.'),(2325,457300954660995114,'2018-06-30 03:36:39','checkin','Checked in for 4 crystals.'),(2326,163770616581718017,'2018-06-30 03:50:01','checkin','Checked in for 9 crystals.'),(2327,400022926348386315,'2018-06-30 03:50:29','checkin','Checked in for 4 crystals.'),(2328,285930195125403650,'2018-06-30 03:50:38','checkin','Checked in for 7 crystals.'),(2329,460761978135248896,'2018-06-30 04:03:00','transfer','460761978135248896 gave 50 crystals to 457300954660995114.'),(2330,457300954660995114,'2018-06-30 04:09:42','transfer','457300954660995114 gave 50 crystals to 460761978135248896.'),(2331,388505302292627456,'2018-06-30 04:19:43','checkin','Checked in for 5 crystals.'),(2332,460761978135248896,'2018-06-30 04:19:54','checkin','Checked in for 4 crystals.'),(2333,455898887929200640,'2018-06-30 04:24:52','conversion','Converted to The Order.'),(2334,306381311923453953,'2018-06-30 04:50:57','deposit','Deposited 6 crystals to 454460756520337418.'),(2335,460761978135248896,'2018-06-30 04:57:30','transfer','460761978135248896 gave 25 crystals to 457300954660995114.'),(2336,424563962303086594,'2018-06-30 05:08:15','checkin','Checked in for 8 crystals.'),(2337,335348144428810251,'2018-06-30 05:23:03','conversion','Converted to The Anarchy.'),(2338,335348144428810251,'2018-06-30 05:23:18','checkin','Checked in for 4 crystals.'),(2339,265907268942299136,'2018-06-30 07:12:56','checkin','Checked in for 6 crystals.'),(2340,406863421183885312,'2018-06-30 07:51:26','conversion','Converted to The Anarchy.'),(2341,325565391478718464,'2018-06-30 08:11:20','checkin','Checked in for 6 crystals.'),(2342,204933415252787202,'2018-06-30 08:16:49','checkin','Checked in for 5 crystals.'),(2343,262771588946984963,'2018-06-30 08:31:53','checkin','Checked in for 8 crystals.'),(2344,168775748495212545,'2018-06-30 08:47:12','checkin','Checked in for 4 crystals.'),(2345,410462121063874561,'2018-06-30 09:01:30','conversion','Converted to The Anarchy.'),(2346,274301199841361920,'2018-06-30 11:01:25','checkin','Checked in for 6 crystals.'),(2347,185698541052755968,'2018-06-30 11:16:34','checkin','Checked in for 5 crystals.'),(2348,410462121063874561,'2018-06-30 11:17:21','checkin','Checked in for 9 crystals.'),(2349,137004645468995585,'2018-06-30 11:24:24','checkin','Checked in for 7 crystals.'),(2350,283395529449406464,'2018-06-30 11:30:35','checkin','Checked in for 4 crystals.'),(2351,390618369545601028,'2018-06-30 11:44:15','checkin','Checked in for 7 crystals.'),(2352,411878868274642945,'2018-06-30 12:37:29','checkin','Checked in for 6 crystals.'),(2353,218458041790496768,'2018-06-30 12:44:27','checkin','Checked in for 5 crystals.'),(2354,142612779377885185,'2018-06-30 12:59:07','checkin','Checked in for 4 crystals.'),(2355,211232684209340426,'2018-06-30 13:23:55','checkin','Checked in for 8 crystals.'),(2356,150649616772235264,'2018-06-30 13:26:47','checkin','Checked in for 6 crystals.'),(2357,306381311923453953,'2018-06-30 14:32:22','deposit','Deposited 15 crystals to 454460756520337418.'),(2358,283395529449406464,'2018-06-30 14:32:29','deposit','Deposited 10 crystals to 454460756520337418.'),(2359,278115594879107074,'2018-06-30 15:11:46','deposit','Deposited 50 crystals to 454460756520337418.'),(2360,278115594879107074,'2018-06-30 15:12:00','deposit','Deposited 2 crystals to 454460756520337418.'),(2361,359521958519504926,'2018-06-30 16:28:18','checkin','Checked in for 8 crystals.'),(2362,297748308523483138,'2018-06-30 16:47:22','checkin','Checked in for 4 crystals.'),(2363,163770616581718017,'2018-06-30 16:54:19','gambleWon','Gambled and won for 1000 crystals.'),(2364,163770616581718017,'2018-06-30 16:56:07','gambleLost','Gambled and lost for 2000 crystals.'),(2365,163770616581718017,'2018-06-30 17:01:37','gambleLost','Gambled and lost for 306 crystals.'),(2366,262771588946984963,'2018-06-30 17:03:18','gambleWon','Gambled and won for 20 crystals.'),(2367,262771588946984963,'2018-06-30 17:03:53','gambleWon','Gambled and won for 7 crystals.'),(2368,262771588946984963,'2018-06-30 17:04:36','gambleLost','Gambled and lost for 4 crystals.'),(2369,297748308523483138,'2018-06-30 17:04:49','gambleLost','Gambled and lost for 1 crystals.'),(2370,297748308523483138,'2018-06-30 17:04:51','gambleLost','Gambled and lost for 2 crystals.'),(2371,297748308523483138,'2018-06-30 17:04:56','gambleLost','Gambled and lost for 4 crystals.'),(2372,297748308523483138,'2018-06-30 17:04:59','gambleWon','Gambled and won for 8 crystals.'),(2373,390618369545601028,'2018-06-30 17:05:06','gambleLost','Gambled and lost for 8 crystals.'),(2374,390618369545601028,'2018-06-30 17:05:28','gambleLost','Gambled and lost for 5 crystals.'),(2375,297748308523483138,'2018-06-30 17:06:07','gambleWon','Gambled and won for 1 crystals.'),(2376,297748308523483138,'2018-06-30 17:06:10','gambleLost','Gambled and lost for 1 crystals.'),(2377,297748308523483138,'2018-06-30 17:06:13','gambleWon','Gambled and won for 2 crystals.'),(2378,297748308523483138,'2018-06-30 17:06:15','gambleLost','Gambled and lost for 1 crystals.'),(2379,297748308523483138,'2018-06-30 17:06:18','gambleWon','Gambled and won for 2 crystals.'),(2380,297748308523483138,'2018-06-30 17:06:20','gambleWon','Gambled and won for 1 crystals.'),(2381,297748308523483138,'2018-06-30 17:06:23','gambleLost','Gambled and lost for 1 crystals.'),(2382,297748308523483138,'2018-06-30 17:06:25','gambleLost','Gambled and lost for 2 crystals.'),(2383,297748308523483138,'2018-06-30 17:06:28','gambleLost','Gambled and lost for 4 crystals.'),(2384,297748308523483138,'2018-06-30 17:06:31','gambleWon','Gambled and won for 8 crystals.'),(2385,297748308523483138,'2018-06-30 17:08:17','gambleLost','Gambled and lost for 1 crystals.'),(2386,297748308523483138,'2018-06-30 17:08:19','gambleLost','Gambled and lost for 2 crystals.'),(2387,297748308523483138,'2018-06-30 17:08:23','gambleLost','Gambled and lost for 4 crystals.'),(2388,297748308523483138,'2018-06-30 17:08:25','gambleLost','Gambled and lost for 8 crystals.'),(2389,297748308523483138,'2018-06-30 17:08:27','gambleWon','Gambled and won for 16 crystals.'),(2390,297748308523483138,'2018-06-30 17:08:30','gambleLost','Gambled and lost for 1 crystals.'),(2391,297748308523483138,'2018-06-30 17:08:32','gambleWon','Gambled and won for 2 crystals.'),(2392,297748308523483138,'2018-06-30 17:08:35','gambleWon','Gambled and won for 1 crystals.'),(2393,297748308523483138,'2018-06-30 17:08:38','gambleWon','Gambled and won for 1 crystals.'),(2394,297748308523483138,'2018-06-30 17:08:40','gambleLost','Gambled and lost for 1 crystals.'),(2395,297748308523483138,'2018-06-30 17:08:42','gambleLost','Gambled and lost for 2 crystals.'),(2396,297748308523483138,'2018-06-30 17:08:45','gambleWon','Gambled and won for 4 crystals.'),(2397,297748308523483138,'2018-06-30 17:08:47','gambleLost','Gambled and lost for 1 crystals.'),(2398,297748308523483138,'2018-06-30 17:08:49','gambleWon','Gambled and won for 2 crystals.'),(2399,297748308523483138,'2018-06-30 17:08:52','gambleWon','Gambled and won for 1 crystals.'),(2400,297748308523483138,'2018-06-30 17:08:55','gambleWon','Gambled and won for 1 crystals.'),(2401,297748308523483138,'2018-06-30 17:08:58','gambleLost','Gambled and lost for 1 crystals.'),(2402,297748308523483138,'2018-06-30 17:09:00','gambleLost','Gambled and lost for 2 crystals.'),(2403,297748308523483138,'2018-06-30 17:09:03','gambleWon','Gambled and won for 4 crystals.'),(2404,200340393596944384,'2018-06-30 17:09:07','gambleLost','Gambled and lost for 1 crystals.'),(2405,200340393596944384,'2018-06-30 17:09:20','gambleWon','Gambled and won for 1 crystals.'),(2406,200340393596944384,'2018-06-30 17:09:29','gambleWon','Gambled and won for 1 crystals.'),(2407,297748308523483138,'2018-06-30 17:10:35','gambleLost','Gambled and lost for 1 crystals.'),(2408,297748308523483138,'2018-06-30 17:10:41','gambleLost','Gambled and lost for 2 crystals.'),(2409,297748308523483138,'2018-06-30 17:10:47','gambleLost','Gambled and lost for 4 crystals.'),(2410,297748308523483138,'2018-06-30 17:10:52','gambleLost','Gambled and lost for 8 crystals.'),(2411,297748308523483138,'2018-06-30 17:10:56','gambleWon','Gambled and won for 16 crystals.'),(2412,274301199841361920,'2018-06-30 17:12:47','gambleLost','Gambled and lost for 40 crystals.'),(2413,297748308523483138,'2018-06-30 17:13:29','gambleLost','Gambled and lost for 1 crystals.'),(2414,297748308523483138,'2018-06-30 17:13:31','gambleLost','Gambled and lost for 2 crystals.'),(2415,297748308523483138,'2018-06-30 17:13:34','gambleLost','Gambled and lost for 4 crystals.'),(2416,297748308523483138,'2018-06-30 17:13:37','gambleWon','Gambled and won for 8 crystals.'),(2417,297748308523483138,'2018-06-30 17:13:39','gambleLost','Gambled and lost for 1 crystals.'),(2418,297748308523483138,'2018-06-30 17:13:42','gambleLost','Gambled and lost for 2 crystals.'),(2419,297748308523483138,'2018-06-30 17:13:44','gambleLost','Gambled and lost for 4 crystals.'),(2420,297748308523483138,'2018-06-30 17:13:47','gambleLost','Gambled and lost for 8 crystals.'),(2421,297748308523483138,'2018-06-30 17:13:51','gambleLost','Gambled and lost for 16 crystals.'),(2422,297748308523483138,'2018-06-30 17:13:54','gambleLost','Gambled and lost for 32 crystals.'),(2423,297748308523483138,'2018-06-30 17:13:57','gambleWon','Gambled and won for 64 crystals.'),(2424,200340393596944384,'2018-06-30 17:14:11','gambleLost','Gambled and lost for 2 crystals.'),(2425,297748308523483138,'2018-06-30 17:16:02','gambleLost','Gambled and lost for 1 crystals.'),(2426,297748308523483138,'2018-06-30 17:16:04','gambleWon','Gambled and won for 2 crystals.'),(2427,297748308523483138,'2018-06-30 17:16:06','gambleWon','Gambled and won for 1 crystals.'),(2428,297748308523483138,'2018-06-30 17:16:09','gambleLost','Gambled and lost for 1 crystals.'),(2429,297748308523483138,'2018-06-30 17:16:10','gambleLost','Gambled and lost for 2 crystals.'),(2430,297748308523483138,'2018-06-30 17:16:14','gambleWon','Gambled and won for 4 crystals.'),(2431,297748308523483138,'2018-06-30 17:16:16','gambleWon','Gambled and won for 1 crystals.'),(2432,163770616581718017,'2018-06-30 17:17:23','gambleLost','Gambled and lost for 1 crystals.'),(2433,246788321404125185,'2018-06-30 17:18:53','gambleLost','Gambled and lost for 1 crystals.'),(2434,246788321404125185,'2018-06-30 17:19:10','gambleLost','Gambled and lost for 1 crystals.'),(2435,297748308523483138,'2018-06-30 17:19:18','gambleLost','Gambled and lost for 6 crystals.'),(2436,297748308523483138,'2018-06-30 17:19:21','gambleLost','Gambled and lost for 12 crystals.'),(2437,297748308523483138,'2018-06-30 17:19:25','gambleLost','Gambled and lost for 24 crystals.'),(2438,297748308523483138,'2018-06-30 17:19:27','gambleLost','Gambled and lost for 48 crystals.'),(2439,297748308523483138,'2018-06-30 17:19:41','gambleWon','Gambled and won for 96 crystals.'),(2440,246788321404125185,'2018-06-30 17:20:15','gambleLost','Gambled and lost for 2 crystals.'),(2441,359521958519504926,'2018-06-30 17:26:44','gambleWon','Gambled and won for 10 crystals.'),(2442,359521958519504926,'2018-06-30 17:26:55','gambleLost','Gambled and lost for 5 crystals.'),(2443,359521958519504926,'2018-06-30 17:26:59','gambleLost','Gambled and lost for 2 crystals.'),(2444,359521958519504926,'2018-06-30 17:27:09','gambleWon','Gambled and won for 3 crystals.'),(2445,359521958519504926,'2018-06-30 17:27:36','gambleLost','Gambled and lost for 10 crystals.'),(2446,359521958519504926,'2018-06-30 17:27:51','gambleWon','Gambled and won for 4 crystals.'),(2447,359521958519504926,'2018-06-30 17:27:54','gambleLost','Gambled and lost for 2 crystals.'),(2448,359521958519504926,'2018-06-30 17:27:58','gambleWon','Gambled and won for 4 crystals.'),(2449,297748308523483138,'2018-06-30 17:28:10','gambleLost','Gambled and lost for 4 crystals.'),(2450,297748308523483138,'2018-06-30 17:28:12','gambleLost','Gambled and lost for 4 crystals.'),(2451,297748308523483138,'2018-06-30 17:28:15','gambleWon','Gambled and won for 8 crystals.'),(2452,359521958519504926,'2018-06-30 17:28:18','gambleWon','Gambled and won for 5 crystals.'),(2453,438094660712267778,'2018-06-30 17:31:56','gambleWon','Gambled and won for 4 crystals.'),(2454,390618369545601028,'2018-06-30 17:34:21','gambleWon','Gambled and won for 6 crystals.'),(2455,211232684209340426,'2018-06-30 18:06:56','gambleWon','Gambled and won for 1 crystals.'),(2456,211232684209340426,'2018-06-30 18:07:00','gambleWon','Gambled and won for 1 crystals.'),(2457,211232684209340426,'2018-06-30 18:07:03','gambleLost','Gambled and lost for 1 crystals.'),(2458,211232684209340426,'2018-06-30 18:07:05','gambleWon','Gambled and won for 3 crystals.'),(2459,211232684209340426,'2018-06-30 18:07:08','gambleWon','Gambled and won for 1 crystals.'),(2460,211232684209340426,'2018-06-30 18:07:10','gambleLost','Gambled and lost for 1 crystals.'),(2461,211232684209340426,'2018-06-30 18:07:13','gambleWon','Gambled and won for 3 crystals.'),(2462,211232684209340426,'2018-06-30 18:07:15','gambleLost','Gambled and lost for 1 crystals.'),(2463,211232684209340426,'2018-06-30 18:07:18','gambleLost','Gambled and lost for 3 crystals.'),(2464,211232684209340426,'2018-06-30 18:07:21','gambleWon','Gambled and won for 9 crystals.'),(2465,142612779377885185,'2018-06-30 18:09:28','gambleLost','Gambled and lost for 3 crystals.'),(2466,142612779377885185,'2018-06-30 18:09:33','gambleWon','Gambled and won for 2 crystals.'),(2467,142612779377885185,'2018-06-30 18:09:39','gambleLost','Gambled and lost for 5 crystals.'),(2468,265907268942299136,'2018-06-30 18:12:57','gambleWon','Gambled and won for 3 crystals.'),(2469,265907268942299136,'2018-06-30 18:13:09','gambleWon','Gambled and won for 3 crystals.'),(2470,265907268942299136,'2018-06-30 18:17:46','gambleLost','Gambled and lost for 2 crystals.'),(2471,224083099246395403,'2018-06-30 19:22:03','conversion','Converted to The Anarchy.'),(2472,224083099246395403,'2018-06-30 19:25:03','checkin','Checked in for 5 crystals.'),(2473,324727149930086400,'2018-06-30 19:37:57','checkin','Checked in for 4 crystals.'),(2474,241402782282678272,'2018-06-30 20:21:24','conversion','Converted to The Anarchy.'),(2475,241402782282678272,'2018-06-30 20:23:31','checkin','Checked in for 4 crystals.'),(2476,313683772081963010,'2018-06-30 20:29:53','conversion','Converted to The Religion.'),(2477,196372356514447360,'2018-06-30 21:05:34','conversion','Converted to The Anarchy.'),(2478,196372356514447360,'2018-06-30 21:07:06','checkin','Checked in for 9 crystals.'),(2479,411929809753604107,'2018-06-30 21:14:34','conversion','Converted to The Anarchy.'),(2480,325565391478718464,'2018-06-30 21:29:17','transfer','325565391478718464 gave 2 crystals to 283395529449406464.'),(2481,325565391478718464,'2018-06-30 21:30:52','transfer','325565391478718464 gave 1 crystals to 283395529449406464.'),(2482,455898887929200640,'2018-06-30 21:46:30','checkin','Checked in for 6 crystals.'),(2483,461430125322567701,'2018-06-30 22:42:15','conversion','Converted to The Anarchy.'),(2484,131968711312539648,'2018-06-30 22:45:11','transfer','131968711312539648 gave 1 crystals to 461430125322567701.'),(2485,131968711312539648,'2018-06-30 22:48:09','transfer','131968711312539648 gave 10 crystals to 461430125322567701.'),(2486,131968711312539648,'2018-06-30 22:49:59','transfer','131968711312539648 gave 11 crystals to 461430125322567701.'),(2487,283395529449406464,'2018-06-30 22:57:27','deposit','Deposited 3 crystals to 454460756520337418.'),(2488,438094660712267778,'2018-06-30 22:57:42','deposit','Deposited 7 crystals to 454460756520337418.'),(2489,460761978135248896,'2018-06-30 22:57:56','deposit','Deposited 5 crystals to 454460756520337418.'),(2490,200340393596944384,'2018-06-30 22:58:00','deposit','Deposited 10 crystals to 454460756520337418.'),(2491,131968711312539648,'2018-06-30 23:12:29','transfer','131968711312539648 gave 7 crystals to 461430125322567701.'),(2492,131968711312539648,'2018-06-30 23:18:23','transfer','131968711312539648 gave 76 crystals to 461430125322567701.'),(2493,131968711312539648,'2018-06-30 23:49:58','transfer','131968711312539648 gave 1 crystals to 461430125322567701.'),(2494,283395529449406464,'2018-06-30 23:53:54','deposit','Deposited 4 crystals to 454460756520337418.'),(2495,283395529449406464,'2018-07-01 00:04:06','deposit','Deposited 3 crystals to 454460756520337418.'),(2496,262771588946984963,'2018-07-01 00:06:13','checkin','Checked in for 9 crystals.'),(2497,454823752925052930,'2018-07-01 00:06:54','transfer','454823752925052930 gave 2 crystals to 200340393596944384.'),(2498,200340393596944384,'2018-07-01 00:34:24','checkin','Checked in for 7 crystals.'),(2499,433759248800022532,'2018-07-01 00:34:28','checkin','Checked in for 6 crystals.'),(2500,454823752925052930,'2018-07-01 00:34:33','checkin','Checked in for 9 crystals.'),(2501,457300954660995114,'2018-07-01 00:40:19','checkin','Checked in for 5 crystals.'),(2502,283395529449406464,'2018-07-01 01:23:59','deposit','Deposited 6 crystals to 454460756520337418.'),(2503,283395529449406464,'2018-07-01 01:27:55','checkin','Checked in for 6 crystals.'),(2504,218498162745278474,'2018-07-01 01:28:26','checkin','Checked in for 9 crystals.'),(2505,460761978135248896,'2018-07-01 01:28:33','checkin','Checked in for 6 crystals.'),(2506,285930195125403650,'2018-07-01 01:31:09','checkin','Checked in for 9 crystals.'),(2507,294927961310625793,'2018-07-01 01:32:21','checkin','Checked in for 5 crystals.'),(2508,201102155896193024,'2018-07-01 02:13:34','checkin','Checked in for 9 crystals.'),(2509,459876383431327746,'2018-07-01 02:17:58','checkin','Checked in for 8 crystals.'),(2510,459876383431327746,'2018-07-01 02:18:13','transfer','459876383431327746 gave 8 crystals to 201102155896193024.'),(2511,459879057295671296,'2018-07-01 02:18:39','checkin','Checked in for 6 crystals.'),(2512,459881667104997376,'2018-07-01 02:19:21','checkin','Checked in for 5 crystals.'),(2513,459883167160205313,'2018-07-01 02:22:16','checkin','Checked in for 6 crystals.'),(2514,459873273308643328,'2018-07-01 02:26:00','checkin','Checked in for 5 crystals.'),(2515,306381311923453953,'2018-07-01 02:31:59','checkin','Checked in for 4 crystals.'),(2516,459834182961463299,'2018-07-01 02:33:18','checkin','Checked in for 5 crystals.'),(2517,459884642192064512,'2018-07-01 02:34:57','checkin','Checked in for 6 crystals.'),(2518,150768078714568705,'2018-07-01 02:37:17','checkin','Checked in for 4 crystals.'),(2519,200340393596944384,'2018-07-01 03:12:35','deposit','Deposited 7 crystals to 454460756520337418.'),(2520,457300954660995114,'2018-07-01 03:29:28','transfer','457300954660995114 gave 25 crystals to 185698541052755968.'),(2521,185698541052755968,'2018-07-01 03:29:46','transfer','185698541052755968 gave 25 crystals to 457300954660995114.'),(2522,131968711312539648,'2018-07-01 04:36:24','transfer','131968711312539648 gave 1 crystals to 461430125322567701.'),(2523,325565391478718464,'2018-07-01 05:47:51','checkin','Checked in for 6 crystals.'),(2524,224083099246395403,'2018-07-01 05:54:25','checkin','Checked in for 4 crystals.'),(2525,294927961310625793,'2018-07-01 06:23:52','deposit','Deposited 1 crystals to 457312250147897366.'),(2526,0,'2018-07-01 06:58:34','revive','reviveAll'),(2527,424563962303086594,'2018-07-01 07:25:51','checkin','Checked in for 6 crystals.'),(2528,390618369545601028,'2018-07-01 07:39:38','checkin','Checked in for 8 crystals.'),(2529,334750493085794304,'2018-07-01 08:07:32','checkin','Checked in for 9 crystals.'),(2530,185698541052755968,'2018-07-01 08:27:09','checkin','Checked in for 4 crystals.'),(2531,278115594879107074,'2018-07-01 08:42:20','checkin','Checked in for 4 crystals.'),(2532,204933415252787202,'2018-07-01 09:04:00','checkin','Checked in for 7 crystals.'),(2533,265907268942299136,'2018-07-01 09:25:43','checkin','Checked in for 9 crystals.'),(2534,438094660712267778,'2018-07-01 09:32:54','checkin','Checked in for 9 crystals.'),(2535,142612779377885185,'2018-07-01 10:08:51','checkin','Checked in for 5 crystals.'),(2536,130765718525444096,'2018-07-01 10:36:57','checkin','Checked in for 9 crystals.'),(2537,196372356514447360,'2018-07-01 10:43:29','checkin','Checked in for 7 crystals.'),(2538,274301199841361920,'2018-07-01 10:46:08','checkin','Checked in for 6 crystals.'),(2539,131968711312539648,'2018-07-01 11:07:06','checkin','Checked in for 4 crystals.'),(2540,131968711312539648,'2018-07-01 11:07:18','transfer','131968711312539648 gave 17 crystals to 461430125322567701.'),(2541,150649616772235264,'2018-07-01 11:27:52','checkin','Checked in for 4 crystals.'),(2542,286105785052954626,'2018-07-01 12:48:49','checkin','Checked in for 5 crystals.'),(2543,388505302292627456,'2018-07-01 13:21:23','checkin','Checked in for 6 crystals.'),(2544,246788321404125185,'2018-07-01 13:30:59','checkin','Checked in for 6 crystals.'),(2545,381978984566489100,'2018-07-01 14:00:48','checkin','Checked in for 8 crystals.'),(2546,246788321404125185,'2018-07-01 14:42:28','deposit','Deposited 19 crystals to 454460756520337418.'),(2547,411878868274642945,'2018-07-01 15:01:44','checkin','Checked in for 9 crystals.'),(2548,400022926348386315,'2018-07-01 15:23:24','checkin','Checked in for 8 crystals.'),(2549,218458041790496768,'2018-07-01 16:12:41','checkin','Checked in for 7 crystals.'),(2550,429615167492325376,'2018-07-01 17:13:53','checkin','Checked in for 9 crystals.'),(2551,224083099246395403,'2018-07-01 17:27:16','deposit','Deposited 1 crystals to 454460756520337418.'),(2552,200340393596944384,'2018-07-01 17:27:41','deposit','Deposited 1 crystals to 454460756520337418.'),(2553,200340393596944384,'2018-07-01 17:28:21','deposit','Deposited 1 crystals to 454460756520337418.'),(2554,274301199841361920,'2018-07-01 17:28:45','deposit','Deposited 1 crystals to 454460756520337418.'),(2555,200340393596944384,'2018-07-01 17:31:00','deposit','Deposited 1 crystals to 454460756520337418.'),(2556,200340393596944384,'2018-07-01 17:31:01','deposit','Deposited 1 crystals to 454460756520337418.'),(2557,200340393596944384,'2018-07-01 17:31:03','deposit','Deposited 1 crystals to 454460756520337418.'),(2558,200340393596944384,'2018-07-01 17:31:03','deposit','Deposited 1 crystals to 454460756520337418.'),(2559,200340393596944384,'2018-07-01 17:31:04','deposit','Deposited 1 crystals to 454460756520337418.'),(2560,200340393596944384,'2018-07-01 17:31:05','deposit','Deposited 1 crystals to 454460756520337418.'),(2561,200340393596944384,'2018-07-01 17:31:05','deposit','Deposited 1 crystals to 454460756520337418.'),(2562,200340393596944384,'2018-07-01 17:31:06','deposit','Deposited 1 crystals to 454460756520337418.'),(2563,200340393596944384,'2018-07-01 17:31:06','deposit','Deposited 1 crystals to 454460756520337418.'),(2564,200340393596944384,'2018-07-01 17:31:07','deposit','Deposited 1 crystals to 454460756520337418.'),(2565,200340393596944384,'2018-07-01 17:31:21','deposit','Deposited 1 crystals to 454460756520337418.'),(2566,274301199841361920,'2018-07-01 17:31:22','deposit','Deposited 1 crystals to 454460756520337418.'),(2567,274301199841361920,'2018-07-01 17:31:23','deposit','Deposited 1 crystals to 454460756520337418.'),(2568,274301199841361920,'2018-07-01 17:31:24','deposit','Deposited 1 crystals to 454460756520337418.'),(2569,274301199841361920,'2018-07-01 17:31:25','deposit','Deposited 1 crystals to 454460756520337418.'),(2570,274301199841361920,'2018-07-01 17:31:25','deposit','Deposited 1 crystals to 454460756520337418.'),(2571,274301199841361920,'2018-07-01 17:31:26','deposit','Deposited 1 crystals to 454460756520337418.'),(2572,274301199841361920,'2018-07-01 17:31:27','deposit','Deposited 1 crystals to 454460756520337418.'),(2573,274301199841361920,'2018-07-01 17:31:27','deposit','Deposited 1 crystals to 454460756520337418.'),(2574,274301199841361920,'2018-07-01 17:31:28','deposit','Deposited 1 crystals to 454460756520337418.'),(2575,200340393596944384,'2018-07-01 17:31:30','deposit','Deposited 1 crystals to 454460756520337418.'),(2576,150649616772235264,'2018-07-01 17:32:45','deposit','Deposited 1 crystals to 454460756520337418.'),(2577,200340393596944384,'2018-07-01 17:33:07','deposit','Deposited 1 crystals to 454460756520337418.'),(2578,200340393596944384,'2018-07-01 17:33:07','deposit','Deposited 1 crystals to 454460756520337418.'),(2579,200340393596944384,'2018-07-01 17:33:07','deposit','Deposited 1 crystals to 454460756520337418.'),(2580,200340393596944384,'2018-07-01 17:33:08','deposit','Deposited 1 crystals to 454460756520337418.'),(2581,200340393596944384,'2018-07-01 17:33:08','deposit','Deposited 1 crystals to 454460756520337418.'),(2582,325565391478718464,'2018-07-01 17:37:37','deposit','Deposited 10 crystals to 454460756520337418.'),(2583,325565391478718464,'2018-07-01 17:38:51','deposit','Deposited 1 crystals to 454460756520337418.'),(2584,455898887929200640,'2018-07-01 17:43:28','checkin','Checked in for 7 crystals.'),(2585,131968711312539648,'2018-07-01 17:59:34','transfer','131968711312539648 gave 1 crystals to 461430125322567701.'),(2586,131968711312539648,'2018-07-01 18:33:16','transfer','131968711312539648 gave 1 crystals to 461430125322567701.'),(2587,290020823643717632,'2018-07-01 19:32:30','conversion','Converted to The Anarchy.'),(2588,290020823643717632,'2018-07-01 19:33:54','checkin','Checked in for 9 crystals.'),(2589,433759248800022532,'2018-07-01 19:52:57','transfer','433759248800022532 gave 4 crystals to 325565391478718464.'),(2590,459883167160205313,'2018-07-01 20:43:13','transfer','459883167160205313 gave 1 crystals to 201102155896193024.'),(2591,262771588946984963,'2018-07-01 20:43:21','transfer','262771588946984963 gave 14 crystals to 201102155896193024.'),(2592,454823752925052930,'2018-07-01 21:24:40','transfer','454823752925052930 gave 5 crystals to 274301199841361920.'),(2593,200340393596944384,'2018-07-01 21:52:33','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2594,274301199841361920,'2018-07-01 21:52:44','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2595,200340393596944384,'2018-07-01 21:52:46','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2596,274301199841361920,'2018-07-01 21:52:47','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2597,200340393596944384,'2018-07-01 21:52:47','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2598,200340393596944384,'2018-07-01 21:52:49','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2599,274301199841361920,'2018-07-01 21:52:49','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2600,200340393596944384,'2018-07-01 21:52:50','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2601,274301199841361920,'2018-07-01 21:52:50','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2602,274301199841361920,'2018-07-01 21:52:54','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2603,200340393596944384,'2018-07-01 21:52:55','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2604,274301199841361920,'2018-07-01 21:52:56','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2605,200340393596944384,'2018-07-01 21:52:57','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2606,274301199841361920,'2018-07-01 21:52:57','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2607,200340393596944384,'2018-07-01 21:52:58','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2608,274301199841361920,'2018-07-01 21:52:59','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2609,200340393596944384,'2018-07-01 21:53:00','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2610,274301199841361920,'2018-07-01 21:53:01','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2611,200340393596944384,'2018-07-01 21:53:02','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2612,274301199841361920,'2018-07-01 21:53:03','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2613,200340393596944384,'2018-07-01 21:53:04','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2614,274301199841361920,'2018-07-01 21:53:05','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2615,200340393596944384,'2018-07-01 21:53:06','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2616,274301199841361920,'2018-07-01 21:53:07','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2617,200340393596944384,'2018-07-01 21:53:08','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2618,274301199841361920,'2018-07-01 21:53:09','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2619,200340393596944384,'2018-07-01 21:53:10','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2620,274301199841361920,'2018-07-01 21:53:11','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2621,200340393596944384,'2018-07-01 21:53:12','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2622,274301199841361920,'2018-07-01 21:53:13','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2623,200340393596944384,'2018-07-01 21:53:14','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2624,274301199841361920,'2018-07-01 21:53:14','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2625,200340393596944384,'2018-07-01 21:53:15','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2626,274301199841361920,'2018-07-01 21:53:16','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2627,200340393596944384,'2018-07-01 21:53:17','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2628,274301199841361920,'2018-07-01 21:53:18','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2629,200340393596944384,'2018-07-01 21:53:20','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2630,274301199841361920,'2018-07-01 21:53:21','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2631,200340393596944384,'2018-07-01 21:53:21','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2632,274301199841361920,'2018-07-01 21:53:22','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2633,200340393596944384,'2018-07-01 21:53:23','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2634,274301199841361920,'2018-07-01 21:53:24','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2635,200340393596944384,'2018-07-01 21:53:25','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2636,274301199841361920,'2018-07-01 21:53:26','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2637,200340393596944384,'2018-07-01 21:53:27','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2638,274301199841361920,'2018-07-01 21:53:29','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2639,200340393596944384,'2018-07-01 21:53:30','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2640,274301199841361920,'2018-07-01 21:53:31','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2641,200340393596944384,'2018-07-01 21:53:31','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2642,274301199841361920,'2018-07-01 21:53:32','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2643,200340393596944384,'2018-07-01 21:53:33','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2644,274301199841361920,'2018-07-01 21:53:35','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2645,200340393596944384,'2018-07-01 21:53:36','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2646,274301199841361920,'2018-07-01 21:53:37','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2647,200340393596944384,'2018-07-01 21:53:38','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2648,274301199841361920,'2018-07-01 21:53:39','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2649,200340393596944384,'2018-07-01 21:53:40','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2650,274301199841361920,'2018-07-01 21:53:41','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2651,200340393596944384,'2018-07-01 21:53:42','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2652,274301199841361920,'2018-07-01 21:53:43','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2653,200340393596944384,'2018-07-01 21:53:44','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2654,274301199841361920,'2018-07-01 21:53:45','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2655,200340393596944384,'2018-07-01 21:53:47','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2656,274301199841361920,'2018-07-01 21:53:48','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2657,200340393596944384,'2018-07-01 21:53:48','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2658,274301199841361920,'2018-07-01 21:53:49','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2659,200340393596944384,'2018-07-01 21:53:50','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2660,274301199841361920,'2018-07-01 21:53:51','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2661,200340393596944384,'2018-07-01 21:53:52','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2662,274301199841361920,'2018-07-01 21:53:53','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2663,200340393596944384,'2018-07-01 21:53:54','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2664,274301199841361920,'2018-07-01 21:53:55','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2665,200340393596944384,'2018-07-01 21:53:56','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2666,274301199841361920,'2018-07-01 21:54:24','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2667,274301199841361920,'2018-07-01 21:56:37','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2668,200340393596944384,'2018-07-01 21:56:40','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2669,274301199841361920,'2018-07-01 21:56:42','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2670,200340393596944384,'2018-07-01 21:56:43','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2671,274301199841361920,'2018-07-01 21:56:44','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2672,200340393596944384,'2018-07-01 21:56:45','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2673,274301199841361920,'2018-07-01 21:56:45','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2674,200340393596944384,'2018-07-01 21:56:46','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2675,274301199841361920,'2018-07-01 21:56:47','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2676,200340393596944384,'2018-07-01 21:56:49','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2677,274301199841361920,'2018-07-01 21:56:50','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2678,200340393596944384,'2018-07-01 21:56:51','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2679,274301199841361920,'2018-07-01 21:56:52','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2680,200340393596944384,'2018-07-01 21:56:53','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2681,274301199841361920,'2018-07-01 21:56:54','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2682,200340393596944384,'2018-07-01 21:56:55','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2683,274301199841361920,'2018-07-01 21:56:56','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2684,200340393596944384,'2018-07-01 21:56:57','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2685,274301199841361920,'2018-07-01 21:56:58','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2686,200340393596944384,'2018-07-01 21:56:59','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2687,274301199841361920,'2018-07-01 21:57:00','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2688,200340393596944384,'2018-07-01 21:57:01','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2689,274301199841361920,'2018-07-01 21:57:02','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2690,200340393596944384,'2018-07-01 21:57:03','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2691,274301199841361920,'2018-07-01 21:57:04','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2692,200340393596944384,'2018-07-01 21:57:05','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2693,274301199841361920,'2018-07-01 21:57:07','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2694,200340393596944384,'2018-07-01 21:57:08','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2695,274301199841361920,'2018-07-01 21:57:09','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2696,200340393596944384,'2018-07-01 21:57:10','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2697,274301199841361920,'2018-07-01 21:57:10','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2698,200340393596944384,'2018-07-01 21:57:11','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2699,274301199841361920,'2018-07-01 21:57:13','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2700,200340393596944384,'2018-07-01 21:57:14','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2701,274301199841361920,'2018-07-01 21:57:15','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2702,200340393596944384,'2018-07-01 21:57:16','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2703,274301199841361920,'2018-07-01 21:57:17','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2704,200340393596944384,'2018-07-01 21:57:18','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2705,274301199841361920,'2018-07-01 21:57:19','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2706,200340393596944384,'2018-07-01 21:57:19','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2707,274301199841361920,'2018-07-01 21:57:20','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2708,200340393596944384,'2018-07-01 21:57:21','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2709,274301199841361920,'2018-07-01 21:57:22','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2710,200340393596944384,'2018-07-01 21:57:23','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2711,274301199841361920,'2018-07-01 21:57:24','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2712,200340393596944384,'2018-07-01 21:57:25','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2713,274301199841361920,'2018-07-01 21:57:26','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2714,200340393596944384,'2018-07-01 21:57:27','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2715,274301199841361920,'2018-07-01 21:57:28','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2716,200340393596944384,'2018-07-01 21:57:29','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2717,274301199841361920,'2018-07-01 21:57:30','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2718,200340393596944384,'2018-07-01 21:57:32','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2719,274301199841361920,'2018-07-01 21:57:33','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2720,200340393596944384,'2018-07-01 21:57:34','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2721,274301199841361920,'2018-07-01 21:57:35','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2722,200340393596944384,'2018-07-01 21:57:35','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2723,274301199841361920,'2018-07-01 21:57:36','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2724,200340393596944384,'2018-07-01 21:57:37','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2725,274301199841361920,'2018-07-01 21:57:38','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2726,200340393596944384,'2018-07-01 21:57:39','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2727,274301199841361920,'2018-07-01 21:57:40','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2728,200340393596944384,'2018-07-01 21:57:41','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2729,274301199841361920,'2018-07-01 21:57:42','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2730,200340393596944384,'2018-07-01 21:57:42','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2731,274301199841361920,'2018-07-01 21:57:43','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2732,200340393596944384,'2018-07-01 21:57:44','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2733,274301199841361920,'2018-07-01 21:57:45','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2734,200340393596944384,'2018-07-01 21:57:46','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2735,274301199841361920,'2018-07-01 21:57:47','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2736,200340393596944384,'2018-07-01 21:57:48','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2737,274301199841361920,'2018-07-01 21:57:49','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2738,200340393596944384,'2018-07-01 21:57:50','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2739,274301199841361920,'2018-07-01 21:57:51','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2740,200340393596944384,'2018-07-01 21:57:51','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2741,274301199841361920,'2018-07-01 21:57:52','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2742,200340393596944384,'2018-07-01 21:57:54','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2743,274301199841361920,'2018-07-01 21:57:55','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2744,200340393596944384,'2018-07-01 21:57:55','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2745,274301199841361920,'2018-07-01 21:57:56','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2746,200340393596944384,'2018-07-01 21:57:57','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2747,274301199841361920,'2018-07-01 21:57:58','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2748,200340393596944384,'2018-07-01 21:57:59','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2749,274301199841361920,'2018-07-01 21:58:00','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2750,200340393596944384,'2018-07-01 21:58:01','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2751,274301199841361920,'2018-07-01 21:58:02','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2752,200340393596944384,'2018-07-01 21:58:03','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2753,274301199841361920,'2018-07-01 21:58:04','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2754,200340393596944384,'2018-07-01 21:58:05','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2755,274301199841361920,'2018-07-01 21:58:06','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2756,200340393596944384,'2018-07-01 21:58:07','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2757,274301199841361920,'2018-07-01 21:58:08','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2758,200340393596944384,'2018-07-01 21:58:08','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2759,274301199841361920,'2018-07-01 21:58:09','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2760,200340393596944384,'2018-07-01 21:58:10','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2761,274301199841361920,'2018-07-01 21:58:11','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2762,200340393596944384,'2018-07-01 21:58:12','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2763,274301199841361920,'2018-07-01 21:58:13','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2764,200340393596944384,'2018-07-01 21:58:13','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2765,274301199841361920,'2018-07-01 21:58:14','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2766,200340393596944384,'2018-07-01 21:58:16','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2767,274301199841361920,'2018-07-01 21:58:17','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2768,200340393596944384,'2018-07-01 21:58:18','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2769,274301199841361920,'2018-07-01 21:58:19','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2770,200340393596944384,'2018-07-01 21:58:20','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2771,274301199841361920,'2018-07-01 21:58:21','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2772,200340393596944384,'2018-07-01 21:58:22','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2773,274301199841361920,'2018-07-01 21:58:23','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2774,200340393596944384,'2018-07-01 21:58:24','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2775,274301199841361920,'2018-07-01 21:58:25','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2776,200340393596944384,'2018-07-01 21:58:26','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2777,274301199841361920,'2018-07-01 21:58:27','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2778,200340393596944384,'2018-07-01 21:58:28','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2779,274301199841361920,'2018-07-01 21:58:29','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2780,200340393596944384,'2018-07-01 21:58:30','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2781,274301199841361920,'2018-07-01 21:58:31','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2782,200340393596944384,'2018-07-01 21:58:32','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2783,274301199841361920,'2018-07-01 21:58:33','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2784,200340393596944384,'2018-07-01 21:58:34','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2785,274301199841361920,'2018-07-01 21:58:35','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2786,200340393596944384,'2018-07-01 21:58:36','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2787,274301199841361920,'2018-07-01 21:58:37','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2788,200340393596944384,'2018-07-01 21:58:39','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2789,274301199841361920,'2018-07-01 21:58:40','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2790,200340393596944384,'2018-07-01 21:58:41','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2791,274301199841361920,'2018-07-01 21:58:41','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2792,200340393596944384,'2018-07-01 21:58:42','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2793,274301199841361920,'2018-07-01 21:58:44','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2794,200340393596944384,'2018-07-01 21:58:44','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2795,274301199841361920,'2018-07-01 21:58:46','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2796,200340393596944384,'2018-07-01 21:58:47','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2797,274301199841361920,'2018-07-01 21:58:47','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2798,200340393596944384,'2018-07-01 21:58:49','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2799,274301199841361920,'2018-07-01 21:58:50','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2800,200340393596944384,'2018-07-01 21:58:50','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2801,274301199841361920,'2018-07-01 21:58:51','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2802,200340393596944384,'2018-07-01 21:58:52','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2803,274301199841361920,'2018-07-01 21:58:53','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2804,200340393596944384,'2018-07-01 21:58:54','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2805,274301199841361920,'2018-07-01 21:58:55','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2806,200340393596944384,'2018-07-01 21:58:56','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2807,274301199841361920,'2018-07-01 21:58:57','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2808,200340393596944384,'2018-07-01 21:58:58','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2809,274301199841361920,'2018-07-01 21:58:59','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2810,200340393596944384,'2018-07-01 21:59:00','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2811,274301199841361920,'2018-07-01 21:59:01','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2812,200340393596944384,'2018-07-01 21:59:02','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2813,274301199841361920,'2018-07-01 21:59:03','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2814,200340393596944384,'2018-07-01 21:59:05','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2815,274301199841361920,'2018-07-01 21:59:06','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2816,200340393596944384,'2018-07-01 21:59:07','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2817,274301199841361920,'2018-07-01 21:59:07','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2818,200340393596944384,'2018-07-01 21:59:08','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2819,274301199841361920,'2018-07-01 21:59:09','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2820,200340393596944384,'2018-07-01 21:59:10','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2821,274301199841361920,'2018-07-01 21:59:11','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2822,200340393596944384,'2018-07-01 21:59:13','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2823,274301199841361920,'2018-07-01 21:59:14','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2824,200340393596944384,'2018-07-01 21:59:15','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2825,274301199841361920,'2018-07-01 21:59:16','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2826,200340393596944384,'2018-07-01 21:59:17','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2827,274301199841361920,'2018-07-01 21:59:18','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2828,200340393596944384,'2018-07-01 21:59:19','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2829,274301199841361920,'2018-07-01 21:59:20','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2830,200340393596944384,'2018-07-01 21:59:20','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2831,274301199841361920,'2018-07-01 21:59:21','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2832,200340393596944384,'2018-07-01 21:59:22','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2833,274301199841361920,'2018-07-01 21:59:26','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2834,200340393596944384,'2018-07-01 21:59:26','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2835,274301199841361920,'2018-07-01 21:59:27','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2836,200340393596944384,'2018-07-01 21:59:28','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2837,274301199841361920,'2018-07-01 21:59:29','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2838,200340393596944384,'2018-07-01 21:59:30','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2839,274301199841361920,'2018-07-01 21:59:31','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2840,294927961310625793,'2018-07-01 21:59:37','transfer','294927961310625793 gave 1 crystals to 462708244171718656.'),(2841,200340393596944384,'2018-07-01 21:59:37','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2842,274301199841361920,'2018-07-01 21:59:39','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2843,200340393596944384,'2018-07-01 21:59:40','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2844,274301199841361920,'2018-07-01 21:59:42','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2845,200340393596944384,'2018-07-01 21:59:42','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2846,274301199841361920,'2018-07-01 21:59:44','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2847,200340393596944384,'2018-07-01 21:59:44','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2848,274301199841361920,'2018-07-01 21:59:45','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2849,200340393596944384,'2018-07-01 21:59:46','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2850,274301199841361920,'2018-07-01 21:59:47','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2851,200340393596944384,'2018-07-01 21:59:48','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2852,274301199841361920,'2018-07-01 21:59:50','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2853,200340393596944384,'2018-07-01 21:59:51','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2854,274301199841361920,'2018-07-01 21:59:52','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2855,200340393596944384,'2018-07-01 21:59:53','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2856,274301199841361920,'2018-07-01 21:59:54','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2857,200340393596944384,'2018-07-01 21:59:56','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2858,274301199841361920,'2018-07-01 21:59:57','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2859,200340393596944384,'2018-07-01 21:59:58','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2860,274301199841361920,'2018-07-01 21:59:59','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2861,200340393596944384,'2018-07-01 22:00:00','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2862,274301199841361920,'2018-07-01 22:00:01','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2863,200340393596944384,'2018-07-01 22:00:02','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2864,274301199841361920,'2018-07-01 22:00:03','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2865,200340393596944384,'2018-07-01 22:00:04','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2866,274301199841361920,'2018-07-01 22:00:05','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2867,200340393596944384,'2018-07-01 22:00:06','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2868,274301199841361920,'2018-07-01 22:00:07','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2869,200340393596944384,'2018-07-01 22:00:08','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2870,274301199841361920,'2018-07-01 22:00:09','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2871,200340393596944384,'2018-07-01 22:00:10','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2872,274301199841361920,'2018-07-01 22:00:11','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2873,200340393596944384,'2018-07-01 22:00:12','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2874,274301199841361920,'2018-07-01 22:00:13','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2875,200340393596944384,'2018-07-01 22:00:15','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2876,274301199841361920,'2018-07-01 22:00:16','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2877,200340393596944384,'2018-07-01 22:00:17','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2878,274301199841361920,'2018-07-01 22:00:18','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2879,200340393596944384,'2018-07-01 22:00:21','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2880,274301199841361920,'2018-07-01 22:00:22','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2881,200340393596944384,'2018-07-01 22:00:24','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2882,274301199841361920,'2018-07-01 22:00:25','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2883,200340393596944384,'2018-07-01 22:00:26','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2884,274301199841361920,'2018-07-01 22:00:27','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2885,200340393596944384,'2018-07-01 22:00:29','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2886,274301199841361920,'2018-07-01 22:00:30','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2887,200340393596944384,'2018-07-01 22:00:31','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2888,274301199841361920,'2018-07-01 22:00:31','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2889,200340393596944384,'2018-07-01 22:00:33','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2890,274301199841361920,'2018-07-01 22:00:34','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2891,200340393596944384,'2018-07-01 22:00:35','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2892,274301199841361920,'2018-07-01 22:00:36','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2893,200340393596944384,'2018-07-01 22:00:37','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2894,274301199841361920,'2018-07-01 22:00:38','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2895,200340393596944384,'2018-07-01 22:00:39','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2896,274301199841361920,'2018-07-01 22:00:40','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2897,200340393596944384,'2018-07-01 22:00:41','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2898,274301199841361920,'2018-07-01 22:00:42','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2899,200340393596944384,'2018-07-01 22:00:43','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2900,274301199841361920,'2018-07-01 22:00:44','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2901,200340393596944384,'2018-07-01 22:00:45','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2902,274301199841361920,'2018-07-01 22:00:47','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2903,200340393596944384,'2018-07-01 22:00:48','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2904,274301199841361920,'2018-07-01 22:00:49','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2905,200340393596944384,'2018-07-01 22:00:50','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2906,274301199841361920,'2018-07-01 22:00:51','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2907,200340393596944384,'2018-07-01 22:00:52','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2908,274301199841361920,'2018-07-01 22:00:53','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2909,200340393596944384,'2018-07-01 22:00:54','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2910,274301199841361920,'2018-07-01 22:00:55','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2911,200340393596944384,'2018-07-01 22:00:56','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2912,274301199841361920,'2018-07-01 22:00:58','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2913,200340393596944384,'2018-07-01 22:00:59','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2914,274301199841361920,'2018-07-01 22:01:00','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2915,200340393596944384,'2018-07-01 22:01:01','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2916,274301199841361920,'2018-07-01 22:01:02','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2917,200340393596944384,'2018-07-01 22:01:03','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2918,274301199841361920,'2018-07-01 22:01:04','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2919,200340393596944384,'2018-07-01 22:01:05','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2920,274301199841361920,'2018-07-01 22:01:06','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2921,200340393596944384,'2018-07-01 22:01:07','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2922,274301199841361920,'2018-07-01 22:01:08','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2923,200340393596944384,'2018-07-01 22:01:09','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2924,274301199841361920,'2018-07-01 22:01:10','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2925,200340393596944384,'2018-07-01 22:01:11','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2926,274301199841361920,'2018-07-01 22:01:12','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2927,200340393596944384,'2018-07-01 22:01:13','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2928,274301199841361920,'2018-07-01 22:01:14','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2929,200340393596944384,'2018-07-01 22:01:15','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2930,274301199841361920,'2018-07-01 22:01:16','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2931,200340393596944384,'2018-07-01 22:01:18','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2932,274301199841361920,'2018-07-01 22:01:19','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2933,200340393596944384,'2018-07-01 22:01:20','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2934,274301199841361920,'2018-07-01 22:01:21','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2935,200340393596944384,'2018-07-01 22:01:22','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2936,274301199841361920,'2018-07-01 22:01:23','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2937,200340393596944384,'2018-07-01 22:01:24','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2938,274301199841361920,'2018-07-01 22:01:25','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2939,200340393596944384,'2018-07-01 22:01:26','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2940,274301199841361920,'2018-07-01 22:01:27','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2941,200340393596944384,'2018-07-01 22:01:27','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2942,274301199841361920,'2018-07-01 22:01:28','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2943,200340393596944384,'2018-07-01 22:01:29','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2944,274301199841361920,'2018-07-01 22:01:30','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2945,200340393596944384,'2018-07-01 22:01:31','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2946,274301199841361920,'2018-07-01 22:01:32','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2947,200340393596944384,'2018-07-01 22:01:33','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2948,274301199841361920,'2018-07-01 22:01:34','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2949,200340393596944384,'2018-07-01 22:01:35','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2950,274301199841361920,'2018-07-01 22:01:37','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2951,200340393596944384,'2018-07-01 22:01:38','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2952,274301199841361920,'2018-07-01 22:01:39','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2953,200340393596944384,'2018-07-01 22:01:40','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2954,274301199841361920,'2018-07-01 22:01:41','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2955,200340393596944384,'2018-07-01 22:01:42','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2956,274301199841361920,'2018-07-01 22:01:43','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2957,200340393596944384,'2018-07-01 22:01:43','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2958,274301199841361920,'2018-07-01 22:01:45','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2959,200340393596944384,'2018-07-01 22:01:46','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2960,274301199841361920,'2018-07-01 22:01:47','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2961,200340393596944384,'2018-07-01 22:01:48','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2962,274301199841361920,'2018-07-01 22:01:49','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2963,200340393596944384,'2018-07-01 22:01:50','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2964,274301199841361920,'2018-07-01 22:01:51','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2965,200340393596944384,'2018-07-01 22:01:52','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2966,274301199841361920,'2018-07-01 22:01:53','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2967,200340393596944384,'2018-07-01 22:01:54','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2968,274301199841361920,'2018-07-01 22:01:55','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2969,200340393596944384,'2018-07-01 22:01:56','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2970,274301199841361920,'2018-07-01 22:01:57','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2971,200340393596944384,'2018-07-01 22:01:58','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2972,274301199841361920,'2018-07-01 22:01:59','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2973,200340393596944384,'2018-07-01 22:02:00','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2974,274301199841361920,'2018-07-01 22:02:01','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2975,200340393596944384,'2018-07-01 22:02:02','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2976,274301199841361920,'2018-07-01 22:02:03','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2977,200340393596944384,'2018-07-01 22:02:04','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2978,274301199841361920,'2018-07-01 22:02:06','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2979,200340393596944384,'2018-07-01 22:02:07','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2980,274301199841361920,'2018-07-01 22:02:08','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2981,200340393596944384,'2018-07-01 22:02:08','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2982,274301199841361920,'2018-07-01 22:02:09','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2983,200340393596944384,'2018-07-01 22:02:10','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2984,274301199841361920,'2018-07-01 22:02:11','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2985,200340393596944384,'2018-07-01 22:02:12','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2986,274301199841361920,'2018-07-01 22:02:13','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2987,200340393596944384,'2018-07-01 22:02:14','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2988,274301199841361920,'2018-07-01 22:02:15','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2989,200340393596944384,'2018-07-01 22:02:16','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2990,274301199841361920,'2018-07-01 22:02:17','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2991,200340393596944384,'2018-07-01 22:02:18','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2992,274301199841361920,'2018-07-01 22:02:19','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2993,200340393596944384,'2018-07-01 22:02:20','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2994,274301199841361920,'2018-07-01 22:02:21','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2995,200340393596944384,'2018-07-01 22:02:22','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2996,274301199841361920,'2018-07-01 22:02:23','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2997,200340393596944384,'2018-07-01 22:02:24','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(2998,274301199841361920,'2018-07-01 22:02:25','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(2999,200340393596944384,'2018-07-01 22:02:26','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3000,274301199841361920,'2018-07-01 22:02:28','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3001,200340393596944384,'2018-07-01 22:02:29','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3002,274301199841361920,'2018-07-01 22:02:30','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3003,200340393596944384,'2018-07-01 22:02:31','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3004,274301199841361920,'2018-07-01 22:02:33','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3005,200340393596944384,'2018-07-01 22:02:33','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3006,274301199841361920,'2018-07-01 22:02:34','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3007,200340393596944384,'2018-07-01 22:02:35','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3008,274301199841361920,'2018-07-01 22:02:36','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3009,200340393596944384,'2018-07-01 22:02:37','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3010,274301199841361920,'2018-07-01 22:02:38','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3011,200340393596944384,'2018-07-01 22:02:39','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3012,274301199841361920,'2018-07-01 22:02:40','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3013,200340393596944384,'2018-07-01 22:02:42','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3014,274301199841361920,'2018-07-01 22:02:43','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3015,200340393596944384,'2018-07-01 22:02:44','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3016,274301199841361920,'2018-07-01 22:02:45','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3017,200340393596944384,'2018-07-01 22:02:46','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3018,274301199841361920,'2018-07-01 22:02:47','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3019,200340393596944384,'2018-07-01 22:02:48','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3020,274301199841361920,'2018-07-01 22:02:49','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3021,200340393596944384,'2018-07-01 22:02:50','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3022,274301199841361920,'2018-07-01 22:02:51','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3023,200340393596944384,'2018-07-01 22:02:52','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3024,274301199841361920,'2018-07-01 22:02:53','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3025,200340393596944384,'2018-07-01 22:02:54','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3026,274301199841361920,'2018-07-01 22:02:56','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3027,200340393596944384,'2018-07-01 22:02:57','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3028,274301199841361920,'2018-07-01 22:02:58','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3029,200340393596944384,'2018-07-01 22:02:59','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3030,274301199841361920,'2018-07-01 22:03:00','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3031,200340393596944384,'2018-07-01 22:03:01','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3032,274301199841361920,'2018-07-01 22:03:02','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3033,200340393596944384,'2018-07-01 22:03:03','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3034,274301199841361920,'2018-07-01 22:03:04','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3035,200340393596944384,'2018-07-01 22:03:06','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3036,274301199841361920,'2018-07-01 22:03:07','transfer','274301199841361920 gave 1 crystals to 200340393596944384.'),(3037,200340393596944384,'2018-07-01 22:03:08','transfer','200340393596944384 gave 1 crystals to 274301199841361920.'),(3038,459873273308643328,'2018-07-01 22:22:43','transfer','459873273308643328 gave 6 crystals to 459883167160205313.'),(3039,459881667104997376,'2018-07-01 22:22:55','transfer','459881667104997376 gave 6 crystals to 459883167160205313.'),(3040,205006241808777216,'2018-07-01 22:45:26','conversion','Converted to The Anarchy.'),(3041,131968711312539648,'2018-07-01 23:54:50','transfer','131968711312539648 gave 11 crystals to 461430125322567701.'),(3042,200340393596944384,'2018-07-01 23:57:32','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3043,218498162745278474,'2018-07-01 23:57:53','transfer','218498162745278474 gave 1 crystals to 218498162745278474.'),(3044,200340393596944384,'2018-07-01 23:58:00','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3045,460761978135248896,'2018-07-01 23:58:01','transfer','460761978135248896 gave 1 crystals to 457300954660995114.'),(3046,200340393596944384,'2018-07-01 23:58:01','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3047,200340393596944384,'2018-07-01 23:58:01','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3048,200340393596944384,'2018-07-01 23:58:02','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3049,200340393596944384,'2018-07-01 23:58:02','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3050,200340393596944384,'2018-07-01 23:58:03','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3051,460761978135248896,'2018-07-01 23:58:41','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3052,200340393596944384,'2018-07-01 23:58:44','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3053,457300954660995114,'2018-07-01 23:58:51','transfer','457300954660995114 gave 1 crystals to 460761978135248896.'),(3054,294927961310625793,'2018-07-01 23:59:00','transfer','294927961310625793 gave 1 crystals to 294927961310625793.'),(3055,460761978135248896,'2018-07-01 23:59:14','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3056,200340393596944384,'2018-07-01 23:59:16','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3057,200340393596944384,'2018-07-01 23:59:17','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3058,200340393596944384,'2018-07-01 23:59:18','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3059,200340393596944384,'2018-07-01 23:59:18','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3060,200340393596944384,'2018-07-01 23:59:26','transfer','200340393596944384 gave 69 crystals to 200340393596944384.'),(3061,200340393596944384,'2018-07-01 23:59:27','transfer','200340393596944384 gave 69 crystals to 200340393596944384.'),(3062,200340393596944384,'2018-07-01 23:59:28','transfer','200340393596944384 gave 69 crystals to 200340393596944384.'),(3063,200340393596944384,'2018-07-01 23:59:29','transfer','200340393596944384 gave 69 crystals to 200340393596944384.'),(3064,200340393596944384,'2018-07-01 23:59:30','transfer','200340393596944384 gave 69 crystals to 200340393596944384.'),(3065,200340393596944384,'2018-07-01 23:59:35','transfer','200340393596944384 gave 69 crystals to 200340393596944384.'),(3066,200340393596944384,'2018-07-02 00:00:00','transfer','200340393596944384 gave 69 crystals to 200340393596944384.'),(3067,370495051815714816,'2018-07-02 00:04:22','conversion','Converted to The Anarchy.'),(3068,370495051815714816,'2018-07-02 00:05:57','checkin','Checked in for 7 crystals.'),(3069,185698541052755968,'2018-07-02 02:02:08','checkin','Checked in for 6 crystals.'),(3070,457300954660995114,'2018-07-02 02:02:19','checkin','Checked in for 5 crystals.'),(3071,460761978135248896,'2018-07-02 02:02:43','checkin','Checked in for 8 crystals.'),(3072,200340393596944384,'2018-07-02 02:02:49','checkin','Checked in for 8 crystals.'),(3073,454823752925052930,'2018-07-02 02:02:54','checkin','Checked in for 6 crystals.'),(3074,433759248800022532,'2018-07-02 02:03:03','checkin','Checked in for 7 crystals.'),(3075,460761978135248896,'2018-07-02 02:28:26','deposit','Deposited 10 crystals to 454460756520337418.'),(3076,286105785052954626,'2018-07-02 02:45:34','checkin','Checked in for 6 crystals.'),(3077,297748308523483138,'2018-07-02 02:45:57','checkin','Checked in for 9 crystals.'),(3078,306381311923453953,'2018-07-02 04:21:40','checkin','Checked in for 9 crystals.'),(3079,325565391478718464,'2018-07-02 06:05:01','checkin','Checked in for 8 crystals.'),(3080,438094660712267778,'2018-07-02 06:12:35','checkin','Checked in for 4 crystals.'),(3081,0,'2018-07-02 06:58:32','revive','reviveAll'),(3082,278115594879107074,'2018-07-02 07:17:24','checkin','Checked in for 4 crystals.'),(3083,265907268942299136,'2018-07-02 07:56:34','checkin','Checked in for 9 crystals.'),(3084,204933415252787202,'2018-07-02 08:28:59','checkin','Checked in for 5 crystals.'),(3085,131968711312539648,'2018-07-02 08:40:28','transfer','131968711312539648 gave 15 crystals to 461430125322567701.'),(3086,262771588946984963,'2018-07-02 08:44:06','checkin','Checked in for 5 crystals.'),(3087,274301199841361920,'2018-07-02 10:09:10','checkin','Checked in for 4 crystals.'),(3088,357981974931046400,'2018-07-02 11:31:38','conversion','Converted to The Religion.'),(3089,357981974931046400,'2018-07-02 11:34:42','checkin','Checked in for 4 crystals.'),(3090,265907268942299136,'2018-07-02 12:44:43','transfer','265907268942299136 gave 5 crystals to 211232684209340426.'),(3091,218458041790496768,'2018-07-02 12:46:49','checkin','Checked in for 5 crystals.'),(3092,211232684209340426,'2018-07-02 13:06:32','checkin','Checked in for 8 crystals.'),(3093,211232684209340426,'2018-07-02 13:07:02','transfer','211232684209340426 gave 8 crystals to 265907268942299136.'),(3094,325565391478718464,'2018-07-02 13:09:43','deposit','Deposited 6 crystals to 454460756520337418.'),(3095,196372356514447360,'2018-07-02 13:36:29','checkin','Checked in for 8 crystals.'),(3096,150649616772235264,'2018-07-02 13:40:25','checkin','Checked in for 6 crystals.'),(3097,130765718525444096,'2018-07-02 13:42:18','checkin','Checked in for 7 crystals.'),(3098,388505302292627456,'2018-07-02 13:52:41','checkin','Checked in for 7 crystals.'),(3099,201102155896193024,'2018-07-02 13:56:47','checkin','Checked in for 4 crystals.'),(3100,459876383431327746,'2018-07-02 13:56:57','checkin','Checked in for 7 crystals.'),(3101,459884642192064512,'2018-07-02 13:57:04','checkin','Checked in for 8 crystals.'),(3102,459883167160205313,'2018-07-02 13:57:14','checkin','Checked in for 7 crystals.'),(3103,459881667104997376,'2018-07-02 13:58:30','checkin','Checked in for 6 crystals.'),(3104,454823752925052930,'2018-07-02 15:03:33','transfer','454823752925052930 gave 2 crystals to 325565391478718464.'),(3105,459879057295671296,'2018-07-02 15:06:01','checkin','Checked in for 8 crystals.'),(3106,294927961310625793,'2018-07-02 15:18:04','checkin','Checked in for 9 crystals.'),(3107,433759248800022532,'2018-07-02 15:34:31','deposit','Deposited 10 crystals to 454460756520337418.'),(3108,137004645468995585,'2018-07-02 16:56:48','checkin','Checked in for 4 crystals.'),(3109,455898887929200640,'2018-07-02 17:01:08','checkin','Checked in for 6 crystals.'),(3110,429615167492325376,'2018-07-02 17:06:52','checkin','Checked in for 5 crystals.'),(3111,224083099246395403,'2018-07-02 17:48:20','checkin','Checked in for 7 crystals.'),(3112,218498162745278474,'2018-07-02 20:13:58','checkin','Checked in for 5 crystals.'),(3113,131968711312539648,'2018-07-02 20:24:37','checkin','Checked in for 6 crystals.'),(3114,131968711312539648,'2018-07-02 20:24:46','transfer','131968711312539648 gave 1 crystals to 461430125322567701.'),(3115,324727149930086400,'2018-07-02 20:39:18','checkin','Checked in for 7 crystals.'),(3116,131968711312539648,'2018-07-02 20:39:35','transfer','131968711312539648 gave 15 crystals to 461430125322567701.'),(3117,460761978135248896,'2018-07-02 20:42:26','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3118,457300954660995114,'2018-07-02 20:42:31','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3119,460761978135248896,'2018-07-02 20:42:42','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3120,457300954660995114,'2018-07-02 20:42:47','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3121,200340393596944384,'2018-07-02 20:42:56','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3122,460761978135248896,'2018-07-02 20:43:00','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3123,457300954660995114,'2018-07-02 20:43:03','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3124,200340393596944384,'2018-07-02 20:43:04','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3125,200340393596944384,'2018-07-02 20:43:05','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3126,200340393596944384,'2018-07-02 20:43:06','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3127,457300954660995114,'2018-07-02 20:43:11','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3128,200340393596944384,'2018-07-02 20:43:12','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3129,200340393596944384,'2018-07-02 20:43:15','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3130,460761978135248896,'2018-07-02 20:43:16','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3131,200340393596944384,'2018-07-02 20:43:17','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3132,457300954660995114,'2018-07-02 20:43:18','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3133,200340393596944384,'2018-07-02 20:43:20','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3134,200340393596944384,'2018-07-02 20:43:25','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3135,457300954660995114,'2018-07-02 20:43:27','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3136,460761978135248896,'2018-07-02 20:43:28','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3137,200340393596944384,'2018-07-02 20:43:36','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3138,457300954660995114,'2018-07-02 20:43:41','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3139,460761978135248896,'2018-07-02 20:43:41','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3140,200340393596944384,'2018-07-02 20:43:44','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3141,200340393596944384,'2018-07-02 20:43:48','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3142,457300954660995114,'2018-07-02 20:43:52','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3143,200340393596944384,'2018-07-02 20:43:54','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3144,460761978135248896,'2018-07-02 20:43:54','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3145,200340393596944384,'2018-07-02 20:43:58','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3146,457300954660995114,'2018-07-02 20:44:04','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3147,460761978135248896,'2018-07-02 20:44:05','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3148,200340393596944384,'2018-07-02 20:44:09','transfer','200340393596944384 gave 2 crystals to 200340393596944384.'),(3149,457300954660995114,'2018-07-02 20:44:13','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3150,200340393596944384,'2018-07-02 20:44:14','transfer','200340393596944384 gave 2 crystals to 200340393596944384.'),(3151,200340393596944384,'2018-07-02 20:44:17','transfer','200340393596944384 gave 2 crystals to 200340393596944384.'),(3152,200340393596944384,'2018-07-02 20:44:19','transfer','200340393596944384 gave 2 crystals to 200340393596944384.'),(3153,460761978135248896,'2018-07-02 20:44:20','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3154,457300954660995114,'2018-07-02 20:44:22','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3155,200340393596944384,'2018-07-02 20:44:23','transfer','200340393596944384 gave 3 crystals to 200340393596944384.'),(3156,200340393596944384,'2018-07-02 20:44:25','transfer','200340393596944384 gave 3 crystals to 200340393596944384.'),(3157,200340393596944384,'2018-07-02 20:44:27','transfer','200340393596944384 gave 3 crystals to 200340393596944384.'),(3158,457300954660995114,'2018-07-02 20:44:29','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3159,460761978135248896,'2018-07-02 20:44:35','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3160,274301199841361920,'2018-07-02 20:44:46','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3161,274301199841361920,'2018-07-02 20:44:47','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3162,274301199841361920,'2018-07-02 20:44:48','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3163,460761978135248896,'2018-07-02 20:44:48','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3164,274301199841361920,'2018-07-02 20:44:49','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3165,274301199841361920,'2018-07-02 20:44:50','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3166,274301199841361920,'2018-07-02 20:44:51','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3167,274301199841361920,'2018-07-02 20:44:52','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3168,274301199841361920,'2018-07-02 20:44:53','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3169,274301199841361920,'2018-07-02 20:44:54','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3170,274301199841361920,'2018-07-02 20:44:55','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3171,200340393596944384,'2018-07-02 20:44:56','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3172,274301199841361920,'2018-07-02 20:44:57','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3173,274301199841361920,'2018-07-02 20:44:57','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3174,200340393596944384,'2018-07-02 20:44:57','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3175,200340393596944384,'2018-07-02 20:44:58','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3176,274301199841361920,'2018-07-02 20:44:58','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3177,200340393596944384,'2018-07-02 20:44:59','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3178,274301199841361920,'2018-07-02 20:44:59','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3179,200340393596944384,'2018-07-02 20:45:00','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3180,274301199841361920,'2018-07-02 20:45:00','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3181,200340393596944384,'2018-07-02 20:45:01','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3182,274301199841361920,'2018-07-02 20:45:02','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3183,274301199841361920,'2018-07-02 20:45:03','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3184,274301199841361920,'2018-07-02 20:45:04','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3185,274301199841361920,'2018-07-02 20:45:05','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3186,274301199841361920,'2018-07-02 20:45:08','transfer','274301199841361920 gave 1 crystals to 274301199841361920.'),(3187,460761978135248896,'2018-07-02 20:45:10','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3188,200340393596944384,'2018-07-02 20:45:15','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3189,200340393596944384,'2018-07-02 20:45:20','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3190,460761978135248896,'2018-07-02 20:45:23','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3191,200340393596944384,'2018-07-02 20:45:28','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3192,460761978135248896,'2018-07-02 20:45:34','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3193,285930195125403650,'2018-07-02 21:40:31','checkin','Checked in for 9 crystals.'),(3194,459834182961463299,'2018-07-02 22:36:39','checkin','Checked in for 7 crystals.'),(3195,459876383431327746,'2018-07-03 00:10:15','transfer','459876383431327746 gave 2 crystals to 459873273308643328.'),(3196,459879057295671296,'2018-07-03 00:10:30','transfer','459879057295671296 gave 2 crystals to 459873273308643328.'),(3197,459884642192064512,'2018-07-03 00:10:44','transfer','459884642192064512 gave 5 crystals to 459873273308643328.'),(3198,459834182961463299,'2018-07-03 00:10:58','transfer','459834182961463299 gave 9 crystals to 459873273308643328.'),(3199,459873273308643328,'2018-07-03 00:11:35','transfer','459873273308643328 gave 1 crystals to 201102155896193024.'),(3200,459881667104997376,'2018-07-03 00:11:51','transfer','459881667104997376 gave 3 crystals to 201102155896193024.'),(3201,294927961310625793,'2018-07-03 00:41:27','checkin','Checked in for 9 crystals.'),(3202,130765718525444096,'2018-07-03 01:05:55','checkin','Checked in for 5 crystals.'),(3203,200340393596944384,'2018-07-03 01:34:45','transfer','200340393596944384 gave 2 crystals to 457300954660995114.'),(3204,200340393596944384,'2018-07-03 01:35:18','transfer','200340393596944384 gave 2 crystals to 150649616772235264.'),(3205,200340393596944384,'2018-07-03 01:51:06','transfer','200340393596944384 gave 1 crystals to 150649616772235264.'),(3206,200340393596944384,'2018-07-03 01:51:13','transfer','200340393596944384 gave 2 crystals to 457300954660995114.'),(3207,390618369545601028,'2018-07-03 02:01:48','checkin','Checked in for 9 crystals.'),(3208,200340393596944384,'2018-07-03 02:01:55','checkin','Checked in for 6 crystals.'),(3209,454823752925052930,'2018-07-03 02:01:59','checkin','Checked in for 7 crystals.'),(3210,433759248800022532,'2018-07-03 02:02:01','checkin','Checked in for 7 crystals.'),(3211,150649616772235264,'2018-07-03 02:02:02','checkin','Checked in for 4 crystals.'),(3212,246788321404125185,'2018-07-03 03:09:49','deposit','Deposited 5 crystals to 454460756520337418.'),(3213,457300954660995114,'2018-07-03 03:26:35','checkin','Checked in for 9 crystals.'),(3214,185698541052755968,'2018-07-03 03:49:22','gambleLost','Gambled and lost for 5 crystals.'),(3215,185698541052755968,'2018-07-03 03:49:31','gambleWon','Gambled and won for 5 crystals.'),(3216,185698541052755968,'2018-07-03 03:49:41','gambleLost','Gambled and lost for 5 crystals.'),(3217,185698541052755968,'2018-07-03 03:49:51','gambleLost','Gambled and lost for 5 crystals.'),(3218,185698541052755968,'2018-07-03 03:50:08','gambleWon','Gambled and won for 16 crystals.'),(3219,185698541052755968,'2018-07-03 03:50:24','gambleLost','Gambled and lost for 5 crystals.'),(3220,185698541052755968,'2018-07-03 03:50:28','gambleLost','Gambled and lost for 5 crystals.'),(3221,185698541052755968,'2018-07-03 03:50:34','gambleLost','Gambled and lost for 5 crystals.'),(3222,325565391478718464,'2018-07-03 04:10:26','checkin','Checked in for 5 crystals.'),(3223,457300954660995114,'2018-07-03 06:22:30','deposit','Deposited 8 crystals to 454460756520337418.'),(3224,265907268942299136,'2018-07-03 06:37:55','checkin','Checked in for 5 crystals.'),(3225,334750493085794304,'2018-07-03 06:40:05','checkin','Checked in for 5 crystals.'),(3226,460761978135248896,'2018-07-03 06:43:25','checkin','Checked in for 6 crystals.'),(3227,0,'2018-07-03 06:58:31','revive','reviveAll'),(3228,272423601922375680,'2018-07-03 07:05:52','checkin','Checked in for 8 crystals.'),(3229,357981974931046400,'2018-07-03 08:58:54','checkin','Checked in for 5 crystals.'),(3230,262771588946984963,'2018-07-03 09:04:15','checkin','Checked in for 9 crystals.'),(3231,460761978135248896,'2018-07-03 09:38:09','transfer','460761978135248896 gave 2 crystals to 457300954660995114.'),(3232,142612779377885185,'2018-07-03 10:21:48','checkin','Checked in for 7 crystals.'),(3233,419738931731365888,'2018-07-03 10:22:46','conversion','Converted to The Order.'),(3234,419738931731365888,'2018-07-03 10:24:38','checkin','Checked in for 6 crystals.'),(3235,306381311923453953,'2018-07-03 10:42:41','checkin','Checked in for 8 crystals.'),(3236,381978984566489100,'2018-07-03 12:19:52','checkin','Checked in for 4 crystals.'),(3237,274301199841361920,'2018-07-03 12:19:57','checkin','Checked in for 7 crystals.'),(3238,286105785052954626,'2018-07-03 12:27:47','checkin','Checked in for 6 crystals.'),(3239,211232684209340426,'2018-07-03 13:02:14','checkin','Checked in for 6 crystals.'),(3240,224083099246395403,'2018-07-03 13:26:54','checkin','Checked in for 4 crystals.'),(3241,236304169533833216,'2018-07-03 14:40:08','checkin','Checked in for 8 crystals.'),(3242,236304169533833216,'2018-07-03 14:40:29','transfer','236304169533833216 gave 8 crystals to 201102155896193024.'),(3243,201102155896193024,'2018-07-03 14:41:17','checkin','Checked in for 7 crystals.'),(3244,459873273308643328,'2018-07-03 14:42:07','checkin','Checked in for 8 crystals.'),(3245,459876383431327746,'2018-07-03 14:42:44','checkin','Checked in for 9 crystals.'),(3246,459883167160205313,'2018-07-03 14:43:02','checkin','Checked in for 5 crystals.'),(3247,459881667104997376,'2018-07-03 14:46:53','checkin','Checked in for 6 crystals.'),(3248,200340393596944384,'2018-07-03 15:07:41','transfer','200340393596944384 gave 5 crystals to 274301199841361920.'),(3249,388505302292627456,'2018-07-03 15:42:23','checkin','Checked in for 9 crystals.'),(3250,200340393596944384,'2018-07-03 15:49:06','transfer','200340393596944384 gave 2 crystals to 388505302292627456.'),(3251,200340393596944384,'2018-07-03 15:49:09','transfer','200340393596944384 gave 2 crystals to 274301199841361920.'),(3252,429615167492325376,'2018-07-03 16:01:51','checkin','Checked in for 5 crystals.'),(3253,201102155896193024,'2018-07-03 16:15:20','transfer','201102155896193024 gave 18 crystals to 459873273308643328.'),(3254,459873273308643328,'2018-07-03 16:15:40','transfer','459873273308643328 gave 15 crystals to 459876383431327746.'),(3255,459876383431327746,'2018-07-03 16:16:13','transfer','459876383431327746 gave 12 crystals to 459883167160205313.'),(3256,459883167160205313,'2018-07-03 16:17:02','transfer','459883167160205313 gave 2 crystals to 459881667104997376.'),(3257,278115594879107074,'2018-07-03 16:53:07','checkin','Checked in for 7 crystals.'),(3258,218498162745278474,'2018-07-03 17:04:29','checkin','Checked in for 7 crystals.'),(3259,200340393596944384,'2018-07-03 17:52:14','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3260,459876383431327746,'2018-07-03 18:21:48','transfer','459876383431327746 gave 3 crystals to 459883167160205313.'),(3261,459881667104997376,'2018-07-03 18:21:57','transfer','459881667104997376 gave 4 crystals to 459883167160205313.'),(3262,218458041790496768,'2018-07-03 18:27:43','checkin','Checked in for 5 crystals.'),(3263,297748308523483138,'2018-07-03 18:38:06','checkin','Checked in for 5 crystals.'),(3264,246788321404125185,'2018-07-03 19:21:57','deposit','Deposited 11 crystals to 454460756520337418.'),(3265,137004645468995585,'2018-07-03 19:49:06','checkin','Checked in for 8 crystals.'),(3266,285930195125403650,'2018-07-03 20:10:19','checkin','Checked in for 5 crystals.'),(3267,246788321404125185,'2018-07-03 20:13:53','checkin','Checked in for 4 crystals.'),(3268,246788321404125185,'2018-07-03 20:14:05','deposit','Deposited 4 crystals to 454460756520337418.'),(3269,285930195125403650,'2018-07-03 20:15:22','deposit','Deposited 4 crystals to 454460756520337418.'),(3270,163770616581718017,'2018-07-03 21:04:30','checkin','Checked in for 4 crystals.'),(3271,276538857174990858,'2018-07-03 21:10:31','conversion','Converted to The Religion.'),(3272,276538857174990858,'2018-07-03 21:11:36','checkin','Checked in for 8 crystals.'),(3273,163770616581718017,'2018-07-03 21:43:58','transfer','163770616581718017 gave 1 crystals to 276538857174990858.'),(3274,457300954660995114,'2018-07-03 23:25:50','transfer','457300954660995114 gave 5 crystals to 390618369545601028.'),(3275,390618369545601028,'2018-07-03 23:27:36','transfer','390618369545601028 gave 5 crystals to 457300954660995114.'),(3276,438094660712267778,'2018-07-04 00:06:59','checkin','Checked in for 4 crystals.'),(3277,200340393596944384,'2018-07-04 00:07:04','checkin','Checked in for 7 crystals.'),(3278,390618369545601028,'2018-07-04 00:07:05','checkin','Checked in for 5 crystals.'),(3279,433759248800022532,'2018-07-04 00:07:08','checkin','Checked in for 7 crystals.'),(3280,454823752925052930,'2018-07-04 00:07:11','checkin','Checked in for 4 crystals.'),(3281,457300954660995114,'2018-07-04 00:15:18','checkin','Checked in for 8 crystals.'),(3282,131968711312539648,'2018-07-04 00:30:56','checkin','Checked in for 8 crystals.'),(3283,200340393596944384,'2018-07-04 00:47:57','transfer','200340393596944384 gave 6 crystals to 388505302292627456.'),(3284,457300954660995114,'2018-07-04 01:13:51','transfer','457300954660995114 gave 1 crystals to 131968711312539648.'),(3285,457300954660995114,'2018-07-04 01:14:03','transfer','457300954660995114 gave 1 crystals to 185698541052755968.'),(3286,211232684209340426,'2018-07-04 01:20:50','checkin','Checked in for 5 crystals.'),(3287,130765718525444096,'2018-07-04 01:31:48','checkin','Checked in for 5 crystals.'),(3288,163770616581718017,'2018-07-04 02:32:20','transfer','163770616581718017 gave 380 crystals to 276538857174990858.'),(3289,276538857174990858,'2018-07-04 02:33:07','transfer','276538857174990858 gave 380 crystals to 163770616581718017.'),(3290,163770616581718017,'2018-07-04 02:33:32','transfer','163770616581718017 gave 38 crystals to 276538857174990858.'),(3291,438094660712267778,'2018-07-04 03:01:04','deposit','Deposited 1 crystals to 454460756520337418.'),(3292,200340393596944384,'2018-07-04 03:46:30','transfer','200340393596944384 gave 3 crystals to 457300954660995114.'),(3293,276538857174990858,'2018-07-04 04:11:40','checkin','Checked in for 6 crystals.'),(3294,294927961310625793,'2018-07-04 04:15:18','checkin','Checked in for 4 crystals.'),(3295,325565391478718464,'2018-07-04 05:24:16','checkin','Checked in for 6 crystals.'),(3296,200340393596944384,'2018-07-04 05:45:28','transfer','200340393596944384 gave 4 crystals to 457300954660995114.'),(3297,200340393596944384,'2018-07-04 06:19:11','transfer','200340393596944384 gave 2 crystals to 429615167492325376.'),(3298,200340393596944384,'2018-07-04 06:19:16','transfer','200340393596944384 gave 2 crystals to 457300954660995114.'),(3299,0,'2018-07-04 06:58:28','revive','reviveAll'),(3300,265907268942299136,'2018-07-04 07:23:35','checkin','Checked in for 5 crystals.'),(3301,262771588946984963,'2018-07-04 07:36:05','checkin','Checked in for 9 crystals.'),(3302,357981974931046400,'2018-07-04 08:29:16','checkin','Checked in for 4 crystals.'),(3303,274301199841361920,'2018-07-04 08:38:31','checkin','Checked in for 9 crystals.'),(3304,142612779377885185,'2018-07-04 09:21:07','checkin','Checked in for 4 crystals.'),(3305,278115594879107074,'2018-07-04 10:26:38','checkin','Checked in for 6 crystals.'),(3306,224083099246395403,'2018-07-04 10:37:52','checkin','Checked in for 9 crystals.'),(3307,460761978135248896,'2018-07-04 10:39:11','checkin','Checked in for 8 crystals.'),(3308,306381311923453953,'2018-07-04 11:14:00','checkin','Checked in for 7 crystals.'),(3309,218498162745278474,'2018-07-04 12:18:54','checkin','Checked in for 9 crystals.'),(3310,217208462889844736,'2018-07-04 14:24:34','conversion','Converted to The Religion.'),(3311,218458041790496768,'2018-07-04 14:31:26','checkin','Checked in for 4 crystals.'),(3312,217208462889844736,'2018-07-04 14:55:53','checkin','Checked in for 4 crystals.'),(3313,200340393596944384,'2018-07-04 15:00:18','transfer','200340393596944384 gave 3 crystals to 218498162745278474.'),(3314,334750493085794304,'2018-07-04 15:24:32','checkin','Checked in for 7 crystals.'),(3315,429615167492325376,'2018-07-04 15:37:21','checkin','Checked in for 6 crystals.'),(3316,388505302292627456,'2018-07-04 16:08:33','checkin','Checked in for 4 crystals.'),(3317,200340393596944384,'2018-07-04 16:37:39','transfer','200340393596944384 gave 5 crystals to 460761978135248896.'),(3318,200340393596944384,'2018-07-04 16:43:53','transfer','200340393596944384 gave 5 crystals to 200340393596944384.'),(3319,200340393596944384,'2018-07-04 16:43:54','transfer','200340393596944384 gave 5 crystals to 200340393596944384.'),(3320,200340393596944384,'2018-07-04 16:43:55','transfer','200340393596944384 gave 5 crystals to 200340393596944384.'),(3321,460761978135248896,'2018-07-04 16:44:53','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3322,460761978135248896,'2018-07-04 16:45:05','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3323,460761978135248896,'2018-07-04 16:45:17','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3324,200340393596944384,'2018-07-04 16:45:37','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3325,460761978135248896,'2018-07-04 16:45:57','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3326,460761978135248896,'2018-07-04 16:46:16','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3327,460761978135248896,'2018-07-04 16:46:27','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3328,200340393596944384,'2018-07-04 16:51:44','transfer','200340393596944384 gave 5 crystals to 218498162745278474.'),(3329,200340393596944384,'2018-07-04 16:54:47','transfer','200340393596944384 gave 5 crystals to 276538857174990858.'),(3330,150649616772235264,'2018-07-04 17:00:45','checkin','Checked in for 6 crystals.'),(3331,457289865516548098,'2018-07-04 17:29:02','conversion','Converted to The Anarchy.'),(3332,457289865516548098,'2018-07-04 17:29:44','checkin','Checked in for 8 crystals.'),(3333,200340393596944384,'2018-07-04 17:36:12','transfer','200340393596944384 gave 3 crystals to 457289865516548098.'),(3334,457300954660995114,'2018-07-04 17:57:28','transfer','457300954660995114 gave 3 crystals to 457289865516548098.'),(3335,460761978135248896,'2018-07-04 19:32:28','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3336,457300954660995114,'2018-07-04 19:32:53','transfer','457300954660995114 gave 1 crystals to 457300954660995114.'),(3337,460761978135248896,'2018-07-04 19:32:56','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3338,460761978135248896,'2018-07-04 19:33:07','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3339,200340393596944384,'2018-07-04 19:33:15','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3340,460761978135248896,'2018-07-04 19:33:22','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3341,460761978135248896,'2018-07-04 19:33:37','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3342,460761978135248896,'2018-07-04 19:33:47','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3343,460761978135248896,'2018-07-04 19:33:56','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3344,200340393596944384,'2018-07-04 19:34:10','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3345,200340393596944384,'2018-07-04 19:34:11','transfer','200340393596944384 gave 1 crystals to 200340393596944384.'),(3346,460761978135248896,'2018-07-04 19:34:26','transfer','460761978135248896 gave 1 crystals to 460761978135248896.'),(3347,424563962303086594,'2018-07-04 19:58:02','checkin','Checked in for 6 crystals.'),(3348,200340393596944384,'2018-07-04 20:19:06','transfer','200340393596944384 gave 2 crystals to 438094660712267778.'),(3349,285930195125403650,'2018-07-04 21:05:01','checkin','Checked in for 4 crystals.'),(3350,200340393596944384,'2018-07-04 21:15:54','transfer','200340393596944384 gave 4 crystals to 150649616772235264.'),(3351,200340393596944384,'2018-07-04 22:09:47','transfer','200340393596944384 gave 3 crystals to 388505302292627456.'),(3352,200340393596944384,'2018-07-04 22:10:16','transfer','200340393596944384 gave 3 crystals to 150649616772235264.'),(3353,200340393596944384,'2018-07-04 22:48:13','transfer','200340393596944384 gave 5 crystals to 150649616772235264.'),(3354,200340393596944384,'2018-07-05 00:15:02','checkin','Checked in for 8 crystals.'),(3355,454823752925052930,'2018-07-05 00:15:10','checkin','Checked in for 4 crystals.'),(3356,433759248800022532,'2018-07-05 00:15:15','checkin','Checked in for 5 crystals.'),(3357,286105785052954626,'2018-07-05 00:52:51','checkin','Checked in for 5 crystals.'),(3358,200340393596944384,'2018-07-05 01:06:46','transfer','200340393596944384 gave 3 crystals to 388505302292627456.'),(3359,294927961310625793,'2018-07-05 01:19:55','checkin','Checked in for 5 crystals.'),(3360,200340393596944384,'2018-07-05 01:35:37','transfer','200340393596944384 gave 3 crystals to 457300954660995114.'),(3361,200340393596944384,'2018-07-05 01:37:22','transfer','200340393596944384 gave 3 crystals to 429615167492325376.'),(3362,460761978135248896,'2018-07-05 01:37:31','transfer','460761978135248896 gave 2 crystals to 457300954660995114.'),(3363,200340393596944384,'2018-07-05 02:02:06','transfer','200340393596944384 gave 2 crystals to 185698541052755968.'),(3364,163770616581718017,'2018-07-05 02:20:29','checkin','Checked in for 6 crystals.'),(3365,278115594879107074,'2018-07-05 02:46:33','checkin','Checked in for 7 crystals.'),(3366,460761978135248896,'2018-07-05 03:02:58','transfer','460761978135248896 gave 2 crystals to 457300954660995114.'),(3367,457300954660995114,'2018-07-05 03:03:03','checkin','Checked in for 8 crystals.'),(3368,163770616581718017,'2018-07-05 03:25:58','transfer','163770616581718017 gave 1 crystals to 163770616581718017.'),(3369,163770616581718017,'2018-07-05 03:33:14','transfer','163770616581718017 gave 1 crystals to 163770616581718017.'),(3370,200340393596944384,'2018-07-05 03:36:13','transfer','200340393596944384 gave 3 crystals to 460761978135248896.'),(3371,276538857174990858,'2018-07-05 03:59:47','checkin','Checked in for 5 crystals.'),(3372,325565391478718464,'2018-07-05 04:03:02','checkin','Checked in for 9 crystals.'),(3373,306381311923453953,'2018-07-05 04:14:29','checkin','Checked in for 7 crystals.'),(3374,185698541052755968,'2018-07-05 04:42:21','gambleWon','Gambled and won for 5 crystals.'),(3375,325565391478718464,'2018-07-05 05:12:02','gambleLost','Gambled and lost for 5 crystals.'),(3376,200340393596944384,'2018-07-05 05:14:07','transfer','200340393596944384 gave 1 crystals to 185698541052755968.'),(3377,265907268942299136,'2018-07-05 05:35:59','checkin','Checked in for 4 crystals.'),(3378,130765718525444096,'2018-07-05 05:36:49','checkin','Checked in for 8 crystals.'),(3379,0,'2018-07-05 06:58:28','revive','reviveAll'),(3380,424563962303086594,'2018-07-05 07:09:56','checkin','Checked in for 9 crystals.'),(3381,357981974931046400,'2018-07-05 07:17:53','checkin','Checked in for 9 crystals.'),(3382,457300954660995114,'2018-07-05 07:34:30','transfer','457300954660995114 gave 4 crystals to 460761978135248896.'),(3383,460761978135248896,'2018-07-05 09:06:49','transfer','460761978135248896 gave 2 crystals to 457300954660995114.'),(3384,457300954660995114,'2018-07-05 09:43:13','transfer','457300954660995114 gave 3 crystals to 185698541052755968.'),(3385,211232684209340426,'2018-07-05 09:52:43','checkin','Checked in for 4 crystals.'),(3386,400022926348386315,'2018-07-05 11:32:02','checkin','Checked in for 4 crystals.'),(3387,150649616772235264,'2018-07-05 12:46:25','checkin','Checked in for 9 crystals.'),(3388,457289865516548098,'2018-07-05 12:49:16','checkin','Checked in for 7 crystals.'),(3389,274301199841361920,'2018-07-05 12:55:35','checkin','Checked in for 4 crystals.'),(3390,334750493085794304,'2018-07-05 14:26:09','checkin','Checked in for 6 crystals.'),(3391,388505302292627456,'2018-07-05 14:49:36','checkin','Checked in for 6 crystals.'),(3392,297748308523483138,'2018-07-05 15:00:52','checkin','Checked in for 8 crystals.'),(3393,429615167492325376,'2018-07-05 16:30:53','checkin','Checked in for 7 crystals.'),(3394,218498162745278474,'2018-07-05 16:33:28','checkin','Checked in for 6 crystals.'),(3395,218458041790496768,'2018-07-05 16:44:30','checkin','Checked in for 4 crystals.'),(3396,460761978135248896,'2018-07-05 17:07:36','checkin','Checked in for 7 crystals.'),(3397,438094660712267778,'2018-07-05 17:08:31','checkin','Checked in for 6 crystals.'),(3398,460761978135248896,'2018-07-05 17:26:52','transfer','460761978135248896 gave 31 crystals to 457300954660995114.'),(3399,274301199841361920,'2018-07-05 17:27:07','transfer','274301199841361920 gave 15 crystals to 457300954660995114.'),(3400,200340393596944384,'2018-07-05 17:27:17','transfer','200340393596944384 gave 69 crystals to 457300954660995114.'),(3401,224083099246395403,'2018-07-05 17:44:09','checkin','Checked in for 5 crystals.'),(3402,324727149930086400,'2018-07-05 17:44:59','checkin','Checked in for 6 crystals.'),(3403,460761978135248896,'2018-07-05 18:19:14','transfer','460761978135248896 gave 5 crystals to 274301199841361920.'),(3404,274301199841361920,'2018-07-05 18:19:41','transfer','274301199841361920 gave 5 crystals to 460761978135248896.'),(3405,142612779377885185,'2018-07-05 19:09:33','checkin','Checked in for 7 crystals.'),(3406,381978984566489100,'2018-07-05 19:33:09','checkin','Checked in for 4 crystals.'),(3407,294657701617598464,'2018-07-05 19:38:32','conversion','Converted to The Anarchy.'),(3408,137004645468995585,'2018-07-05 19:41:55','checkin','Checked in for 4 crystals.'),(3409,336190417454235658,'2018-07-05 19:44:26','conversion','Converted to The Religion.'),(3410,294657701617598464,'2018-07-05 19:44:57','checkin','Checked in for 4 crystals.'),(3411,196372356514447360,'2018-07-05 19:46:23','checkin','Checked in for 4 crystals.'),(3412,331884269159055370,'2018-07-05 19:47:20','conversion','Converted to The Anarchy.'),(3413,328320677058707456,'2018-07-05 19:47:27','conversion','Converted to The Religion.'),(3414,331884269159055370,'2018-07-05 19:48:35','checkin','Checked in for 7 crystals.'),(3415,328320677058707456,'2018-07-05 19:49:44','checkin','Checked in for 7 crystals.'),(3416,150768078714568705,'2018-07-05 19:57:05','checkin','Checked in for 7 crystals.'),(3417,278241670540034048,'2018-07-05 20:01:56','conversion','Converted to The Order.'),(3418,278241670540034048,'2018-07-05 20:04:38','checkin','Checked in for 4 crystals.'),(3419,401776435997704193,'2018-07-05 20:05:49','conversion','Converted to The Anarchy.'),(3420,401776435997704193,'2018-07-05 20:08:22','checkin','Checked in for 5 crystals.'),(3421,140195026528370688,'2018-07-05 20:09:09','conversion','Converted to The Order.'),(3422,140195026528370688,'2018-07-05 20:10:49','checkin','Checked in for 4 crystals.'),(3423,173468649884090368,'2018-07-05 20:13:55','conversion','Converted to The Anarchy.'),(3424,173468649884090368,'2018-07-05 20:14:29','checkin','Checked in for 4 crystals.'),(3425,257149205850750976,'2018-07-05 20:15:38','conversion','Converted to The Anarchy.'),(3426,257149205850750976,'2018-07-05 20:20:01','checkin','Checked in for 5 crystals.'),(3427,173468649884090368,'2018-07-05 20:24:02','transfer','173468649884090368 gave 1 crystals to 257149205850750976.'),(3428,390618369545601028,'2018-07-05 20:24:08','checkin','Checked in for 4 crystals.'),(3429,359521958519504926,'2018-07-05 20:24:30','checkin','Checked in for 5 crystals.'),(3430,450736651497635850,'2018-07-05 20:32:16','conversion','Converted to The Anarchy.'),(3431,464528929965735936,'2018-07-05 20:34:00','conversion','Converted to The Anarchy.'),(3432,401776435997704193,'2018-07-05 20:36:41','deposit','Deposited 3 crystals to 454460756520337418.'),(3433,191198987490033664,'2018-07-05 20:37:12','conversion','Converted to The Religion.'),(3434,450736651497635850,'2018-07-05 20:39:31','checkin','Checked in for 9 crystals.'),(3435,118124619117887488,'2018-07-05 20:39:36','conversion','Converted to The Anarchy.'),(3436,118124619117887488,'2018-07-05 20:40:36','checkin','Checked in for 4 crystals.'),(3437,383328874169237506,'2018-07-05 20:45:26','conversion','Converted to The Anarchy.'),(3438,383328874169237506,'2018-07-05 20:47:35','checkin','Checked in for 5 crystals.'),(3439,173468649884090368,'2018-07-05 20:49:50','transfer','173468649884090368 gave 1 crystals to 454823752925052930.'),(3440,315219062546497547,'2018-07-05 20:49:54','conversion','Converted to The Anarchy.'),(3441,334387347380502529,'2018-07-05 20:51:29','conversion','Converted to The Anarchy.'),(3442,231539559454867467,'2018-07-05 20:51:51','conversion','Converted to The Order.'),(3443,334387347380502529,'2018-07-05 20:53:34','checkin','Checked in for 4 crystals.'),(3444,139861211746402304,'2018-07-05 20:55:35','conversion','Converted to The Religion.'),(3445,231539559454867467,'2018-07-05 20:56:03','checkin','Checked in for 7 crystals.'),(3446,139861211746402304,'2018-07-05 20:56:55','checkin','Checked in for 8 crystals.'),(3447,315219062546497547,'2018-07-05 20:59:10','checkin','Checked in for 9 crystals.'),(3448,368439592443183153,'2018-07-05 20:59:16','conversion','Converted to The Anarchy.'),(3449,315219062546497547,'2018-07-05 21:00:30','transfer','315219062546497547 gave 9 crystals to 118124619117887488.'),(3450,280477072713842688,'2018-07-05 21:01:06','conversion','Converted to The Order.'),(3451,368439592443183153,'2018-07-05 21:01:15','checkin','Checked in for 6 crystals.'),(3452,280477072713842688,'2018-07-05 21:03:08','checkin','Checked in for 8 crystals.'),(3453,457300954660995114,'2018-07-05 21:29:48','transfer','457300954660995114 gave 69 crystals to 200340393596944384.'),(3454,377125578005807115,'2018-07-05 21:35:22','conversion','Converted to The Religion.'),(3455,431917608451964942,'2018-07-05 21:43:54','conversion','Converted to The Religion.'),(3456,377125578005807115,'2018-07-05 21:55:26','checkin','Checked in for 6 crystals.'),(3457,397417104292446240,'2018-07-05 21:56:17','conversion','Converted to The Anarchy.'),(3458,397417104292446240,'2018-07-05 21:57:37','checkin','Checked in for 7 crystals.'),(3459,254438147897819136,'2018-07-05 22:07:59','conversion','Converted to The Anarchy.'),(3460,191198987490033664,'2018-07-05 22:28:37','checkin','Checked in for 6 crystals.'),(3461,390938926761639936,'2018-07-05 22:31:20','conversion','Converted to The Anarchy.'),(3462,390938926761639936,'2018-07-05 22:35:39','checkin','Checked in for 5 crystals.'),(3463,150768078714568705,'2018-07-05 22:37:46','deposit','Deposited 7 crystals to 454460756520337418.'),(3464,419553745236393995,'2018-07-05 22:39:27','conversion','Converted to The Anarchy.'),(3465,419553745236393995,'2018-07-05 22:42:55','checkin','Checked in for 4 crystals.'),(3466,285930195125403650,'2018-07-05 22:56:06','checkin','Checked in for 6 crystals.'),(3467,263928114646745088,'2018-07-05 23:00:55','conversion','Converted to The Order.'),(3468,162544056059035648,'2018-07-05 23:05:17','conversion','Converted to The Anarchy.'),(3469,231539559454867467,'2018-07-05 23:21:36','deposit','Deposited 5 crystals to 454460679244480512.'),(3470,364444724834074625,'2018-07-05 23:33:23','conversion','Converted to The Anarchy.'),(3471,364444724834074625,'2018-07-05 23:35:58','checkin','Checked in for 9 crystals.'),(3472,242742754331983873,'2018-07-05 23:36:14','conversion','Converted to The Religion.'),(3473,131968711312539648,'2018-07-05 23:51:59','checkin','Checked in for 7 crystals.'),(3474,162544056059035648,'2018-07-05 23:53:00','checkin','Checked in for 7 crystals.'),(3475,419553745236393995,'2018-07-06 00:12:08','checkin','Checked in for 6 crystals.'),(3476,272423601922375680,'2018-07-06 00:23:15','checkin','Checked in for 4 crystals.'),(3477,205006241808777216,'2018-07-06 00:23:30','checkin','Checked in for 5 crystals.'),(3478,454823752925052930,'2018-07-06 00:32:46','checkin','Checked in for 6 crystals.'),(3479,433759248800022532,'2018-07-06 00:32:49','checkin','Checked in for 7 crystals.'),(3480,200340393596944384,'2018-07-06 00:32:53','checkin','Checked in for 6 crystals.'),(3481,306542748113043456,'2018-07-06 00:35:57','conversion','Converted to The Anarchy.'),(3482,306542748113043456,'2018-07-06 00:39:15','checkin','Checked in for 8 crystals.'),(3483,130765718525444096,'2018-07-06 00:57:16','checkin','Checked in for 7 crystals.'),(3484,457300954660995114,'2018-07-06 00:58:08','checkin','Checked in for 4 crystals.'),(3485,185698541052755968,'2018-07-06 01:00:22','checkin','Checked in for 7 crystals.'),(3486,306381311923453953,'2018-07-06 01:02:02','checkin','Checked in for 7 crystals.'),(3487,211232684209340426,'2018-07-06 01:32:56','checkin','Checked in for 8 crystals.'),(3488,285930195125403650,'2018-07-06 02:07:58','checkin','Checked in for 8 crystals.'),(3489,196081395494289408,'2018-07-06 02:11:35','conversion','Converted to The Anarchy.'),(3490,142491890271518720,'2018-07-06 02:29:29','conversion','Converted to The Anarchy.'),(3491,142491890271518720,'2018-07-06 02:30:04','checkin','Checked in for 7 crystals.'),(3492,196081395494289408,'2018-07-06 02:31:14','checkin','Checked in for 7 crystals.'),(3493,457300954660995114,'2018-07-06 02:34:00','deposit','Deposited 20 crystals to 454460756520337418.'),(3494,269123062270656512,'2018-07-06 02:47:39','conversion','Converted to The Anarchy.'),(3495,457300954660995114,'2018-07-06 03:08:30','transfer','457300954660995114 gave 1 crystals to 196081395494289408.'),(3496,265610485812953088,'2018-07-06 03:16:14','conversion','Converted to The Religion.'),(3497,285930195125403650,'2018-07-06 03:22:54','deposit','Deposited 3 crystals to 454460756520337418.'),(3498,265610485812953088,'2018-07-06 03:24:36','checkin','Checked in for 7 crystals.'),(3499,306381311923453953,'2018-07-06 03:48:50','deposit','Deposited 7 crystals to 454460756520337418.'),(3500,295691934759125003,'2018-07-06 04:05:06','conversion','Converted to The Anarchy.'),(3501,295691934759125003,'2018-07-06 04:12:50','checkin','Checked in for 6 crystals.'),(3502,334750493085794304,'2018-07-06 04:13:12','checkin','Checked in for 7 crystals.'),(3503,450736651497635850,'2018-07-06 04:15:46','checkin','Checked in for 4 crystals.'),(3504,339169842781487106,'2018-07-06 05:23:44','conversion','Converted to The Order.'),(3505,339169842781487106,'2018-07-06 05:31:17','checkin','Checked in for 6 crystals.'),(3506,234207051398512640,'2018-07-06 05:56:22','conversion','Converted to The Religion.'),(3507,238795465158557697,'2018-07-06 06:10:05','conversion','Converted to The Anarchy.'),(3508,238795465158557697,'2018-07-06 06:11:21','checkin','Checked in for 5 crystals.'),(3509,250455372421267457,'2018-07-06 06:35:01','conversion','Converted to The Order.'),(3510,250455372421267457,'2018-07-06 06:36:23','checkin','Checked in for 8 crystals.'),(3511,325565391478718464,'2018-07-06 06:36:49','checkin','Checked in for 7 crystals.'),(3512,383328874169237506,'2018-07-06 06:40:38','checkin','Checked in for 8 crystals.'),(3513,0,'2018-07-06 06:58:26','revive','reviveAll'),(3514,424563962303086594,'2018-07-06 07:30:45','checkin','Checked in for 5 crystals.'),(3515,265907268942299136,'2018-07-06 07:31:04','checkin','Checked in for 8 crystals.'),(3516,284715360932986880,'2018-07-06 07:52:12','conversion','Converted to The Religion.'),(3517,357981974931046400,'2018-07-06 08:01:08','checkin','Checked in for 9 crystals.'),(3518,262771588946984963,'2018-07-06 08:14:45','checkin','Checked in for 8 crystals.'),(3519,370495051815714816,'2018-07-06 08:17:08','checkin','Checked in for 5 crystals.'),(3520,196372356514447360,'2018-07-06 08:35:22','checkin','Checked in for 5 crystals.'),(3521,390618369545601028,'2018-07-06 08:38:44','checkin','Checked in for 7 crystals.'),(3522,377125578005807115,'2018-07-06 08:42:58','checkin','Checked in for 7 crystals.'),(3523,274301199841361920,'2018-07-06 08:51:14','checkin','Checked in for 7 crystals.'),(3524,318931418204078081,'2018-07-06 08:52:18','conversion','Converted to The Order.'),(3525,278241670540034048,'2018-07-06 09:03:20','checkin','Checked in for 9 crystals.'),(3526,464723134105255943,'2018-07-06 09:24:41','conversion','Converted to The Religion.'),(3527,326453631870173187,'2018-07-06 09:26:16','conversion','Converted to The Religion.'),(3528,464723134105255943,'2018-07-06 09:31:21','checkin','Checked in for 6 crystals.'),(3529,139861211746402304,'2018-07-06 10:19:56','checkin','Checked in for 7 crystals.'),(3530,390938926761639936,'2018-07-06 10:22:23','checkin','Checked in for 5 crystals.'),(3531,191198987490033664,'2018-07-06 10:23:48','checkin','Checked in for 9 crystals.'),(3532,330301910386999297,'2018-07-06 10:30:08','conversion','Converted to The Anarchy.'),(3533,334387347380502529,'2018-07-06 10:31:00','checkin','Checked in for 8 crystals.'),(3534,330301910386999297,'2018-07-06 10:31:26','checkin','Checked in for 7 crystals.'),(3535,118124619117887488,'2018-07-06 10:32:09','checkin','Checked in for 5 crystals.'),(3536,280445248789020672,'2018-07-06 10:32:32','conversion','Converted to The Religion.'),(3537,280445248789020672,'2018-07-06 10:33:26','checkin','Checked in for 7 crystals.'),(3538,173468649884090368,'2018-07-06 10:46:40','checkin','Checked in for 5 crystals.'),(3539,460761978135248896,'2018-07-06 11:08:01','transfer','460761978135248896 gave 1 crystals to 457300954660995114.'),(3540,460761978135248896,'2018-07-06 11:08:13','transfer','460761978135248896 gave 1 crystals to 457300954660995114.'),(3541,457300954660995114,'2018-07-06 11:08:13','transfer','457300954660995114 gave 1 crystals to 460761978135248896.'),(3542,460761978135248896,'2018-07-06 11:08:28','transfer','460761978135248896 gave 1 crystals to 457300954660995114.'),(3543,457300954660995114,'2018-07-06 11:08:30','transfer','457300954660995114 gave 1 crystals to 460761978135248896.'),(3544,460761978135248896,'2018-07-06 11:08:40','transfer','460761978135248896 gave 1 crystals to 457300954660995114.'),(3545,457300954660995114,'2018-07-06 11:08:42','transfer','457300954660995114 gave 1 crystals to 460761978135248896.'),(3546,460761978135248896,'2018-07-06 11:09:34','transfer','460761978135248896 gave 1 crystals to 457300954660995114.'),(3547,457300954660995114,'2018-07-06 11:09:37','transfer','457300954660995114 gave 1 crystals to 460761978135248896.'),(3548,460761978135248896,'2018-07-06 11:09:52','transfer','460761978135248896 gave 1 crystals to 457300954660995114.'),(3549,457300954660995114,'2018-07-06 11:09:55','transfer','457300954660995114 gave 1 crystals to 460761978135248896.'),(3550,460761978135248896,'2018-07-06 11:10:03','transfer','460761978135248896 gave 1 crystals to 457300954660995114.'),(3551,460761978135248896,'2018-07-06 11:10:15','transfer','460761978135248896 gave 1 crystals to 457300954660995114.'),(3552,457300954660995114,'2018-07-06 11:10:15','transfer','457300954660995114 gave 1 crystals to 460761978135248896.'),(3553,460761978135248896,'2018-07-06 11:10:47','transfer','460761978135248896 gave 1 crystals to 457300954660995114.'),(3554,140195026528370688,'2018-07-06 11:37:06','checkin','Checked in for 5 crystals.'),(3555,399953503008718859,'2018-07-06 11:41:32','conversion','Converted to The Anarchy.'),(3556,150649616772235264,'2018-07-06 12:06:53','checkin','Checked in for 4 crystals.'),(3557,328320677058707456,'2018-07-06 12:19:35','checkin','Checked in for 9 crystals.'),(3558,280477072713842688,'2018-07-06 12:27:35','checkin','Checked in for 5 crystals.'),(3559,196372356514447360,'2018-07-06 13:11:32','deposit','Deposited 10 crystals to 454460756520337418.'),(3560,257137018897694721,'2018-07-06 13:22:46','conversion','Converted to The Anarchy.'),(3561,257137018897694721,'2018-07-06 13:29:50','checkin','Checked in for 5 crystals.'),(3562,163655183438446593,'2018-07-06 13:30:22','conversion','Converted to The Religion.'),(3563,142612779377885185,'2018-07-06 13:31:18','checkin','Checked in for 8 crystals.'),(3564,254670017201700866,'2018-07-06 15:06:52','conversion','Converted to The Anarchy.'),(3565,194229124980670464,'2018-07-06 15:12:23','conversion','Converted to The Anarchy.'),(3566,352512598639509505,'2018-07-06 15:24:21','conversion','Converted to The Anarchy.'),(3567,246712838603800577,'2018-07-06 15:46:54','conversion','Converted to The Anarchy.'),(3568,246712838603800577,'2018-07-06 15:49:03','checkin','Checked in for 6 crystals.'),(3569,274301199841361920,'2018-07-06 16:06:02','deposit','Deposited 166 crystals to 454460756520337418.'),(3570,185698541052755968,'2018-07-06 16:08:17','deposit','Deposited 26 crystals to 454460756520337418.'),(3571,306381311923453953,'2018-07-06 16:09:17','deposit','Deposited 1 crystals to 454460756520337418.'),(3572,325565391478718464,'2018-07-06 16:10:20','deposit','Deposited 50 crystals to 454460756520337418.'),(3573,325565391478718464,'2018-07-06 16:11:09','deposit','Deposited 1 crystals to 454460756520337418.'),(3574,325565391478718464,'2018-07-06 16:11:10','deposit','Deposited 1 crystals to 454460756520337418.'),(3575,325565391478718464,'2018-07-06 16:11:10','deposit','Deposited 1 crystals to 454460756520337418.'),(3576,325565391478718464,'2018-07-06 16:11:12','deposit','Deposited 1 crystals to 454460756520337418.'),(3577,325565391478718464,'2018-07-06 16:11:12','deposit','Deposited 1 crystals to 454460756520337418.'),(3578,325565391478718464,'2018-07-06 16:11:13','deposit','Deposited 1 crystals to 454460756520337418.'),(3579,325565391478718464,'2018-07-06 16:11:15','deposit','Deposited 1 crystals to 454460756520337418.'),(3580,325565391478718464,'2018-07-06 16:11:15','deposit','Deposited 1 crystals to 454460756520337418.'),(3581,325565391478718464,'2018-07-06 16:11:17','deposit','Deposited 1 crystals to 454460756520337418.'),(3582,325565391478718464,'2018-07-06 16:11:19','deposit','Deposited 1 crystals to 454460756520337418.'),(3583,325565391478718464,'2018-07-06 16:12:38','deposit','Deposited 1 crystals to 454460756520337418.'),(3584,325565391478718464,'2018-07-06 16:12:39','deposit','Deposited 1 crystals to 454460756520337418.'),(3585,325565391478718464,'2018-07-06 16:12:40','deposit','Deposited 1 crystals to 454460756520337418.'),(3586,325565391478718464,'2018-07-06 16:12:40','deposit','Deposited 1 crystals to 454460756520337418.'),(3587,325565391478718464,'2018-07-06 16:12:41','deposit','Deposited 1 crystals to 454460756520337418.'),(3588,200340393596944384,'2018-07-06 16:16:02','deposit','Deposited 1 crystals to 454460756520337418.'),(3589,200340393596944384,'2018-07-06 16:16:05','deposit','Deposited 1 crystals to 454460756520337418.'),(3590,370495051815714816,'2018-07-06 16:16:05','deposit','Deposited 1 crystals to 454460756520337418.'),(3591,200340393596944384,'2018-07-06 16:16:07','deposit','Deposited 1 crystals to 454460756520337418.'),(3592,200340393596944384,'2018-07-06 16:16:09','deposit','Deposited 1 crystals to 454460756520337418.'),(3593,200340393596944384,'2018-07-06 16:16:10','deposit','Deposited 1 crystals to 454460756520337418.'),(3594,200340393596944384,'2018-07-06 16:16:12','deposit','Deposited 1 crystals to 454460756520337418.'),(3595,200340393596944384,'2018-07-06 16:16:13','deposit','Deposited 1 crystals to 454460756520337418.'),(3596,200340393596944384,'2018-07-06 16:16:15','deposit','Deposited 1 crystals to 454460756520337418.'),(3597,200340393596944384,'2018-07-06 16:16:16','deposit','Deposited 1 crystals to 454460756520337418.'),(3598,200340393596944384,'2018-07-06 16:16:17','deposit','Deposited 1 crystals to 454460756520337418.'),(3599,200340393596944384,'2018-07-06 16:16:18','deposit','Deposited 1 crystals to 454460756520337418.'),(3600,200340393596944384,'2018-07-06 16:16:20','deposit','Deposited 1 crystals to 454460756520337418.'),(3601,306381311923453953,'2018-07-06 16:16:20','deposit','Deposited 1 crystals to 454460756520337418.'),(3602,200340393596944384,'2018-07-06 16:16:21','deposit','Deposited 1 crystals to 454460756520337418.'),(3603,200340393596944384,'2018-07-06 16:16:22','deposit','Deposited 1 crystals to 454460756520337418.'),(3604,306381311923453953,'2018-07-06 16:16:23','deposit','Deposited 1 crystals to 454460756520337418.'),(3605,200340393596944384,'2018-07-06 16:16:24','deposit','Deposited 1 crystals to 454460756520337418.'),(3606,200340393596944384,'2018-07-06 16:16:25','deposit','Deposited 1 crystals to 454460756520337418.'),(3607,200340393596944384,'2018-07-06 16:16:26','deposit','Deposited 1 crystals to 454460756520337418.'),(3608,306381311923453953,'2018-07-06 16:16:27','deposit','Deposited 1 crystals to 454460756520337418.'),(3609,200340393596944384,'2018-07-06 16:16:27','deposit','Deposited 1 crystals to 454460756520337418.'),(3610,200340393596944384,'2018-07-06 16:16:29','deposit','Deposited 1 crystals to 454460756520337418.'),(3611,200340393596944384,'2018-07-06 16:16:30','deposit','Deposited 1 crystals to 454460756520337418.'),(3612,200340393596944384,'2018-07-06 16:16:31','deposit','Deposited 1 crystals to 454460756520337418.'),(3613,200340393596944384,'2018-07-06 16:16:32','deposit','Deposited 1 crystals to 454460756520337418.'),(3614,200340393596944384,'2018-07-06 16:16:34','deposit','Deposited 1 crystals to 454460756520337418.'),(3615,200340393596944384,'2018-07-06 16:16:35','deposit','Deposited 1 crystals to 454460756520337418.'),(3616,306381311923453953,'2018-07-06 16:16:36','deposit','Deposited 1 crystals to 454460756520337418.'),(3617,306381311923453953,'2018-07-06 16:16:38','deposit','Deposited 1 crystals to 454460756520337418.'),(3618,200340393596944384,'2018-07-06 16:16:41','deposit','Deposited 1 crystals to 454460756520337418.'),(3619,306381311923453953,'2018-07-06 16:16:41','deposit','Deposited 1 crystals to 454460756520337418.'),(3620,200340393596944384,'2018-07-06 16:16:42','deposit','Deposited 1 crystals to 454460756520337418.'),(3621,200340393596944384,'2018-07-06 16:16:44','deposit','Deposited 1 crystals to 454460756520337418.'),(3622,306381311923453953,'2018-07-06 16:16:44','deposit','Deposited 1 crystals to 454460756520337418.'),(3623,200340393596944384,'2018-07-06 16:16:45','deposit','Deposited 1 crystals to 454460756520337418.'),(3624,306381311923453953,'2018-07-06 16:16:47','deposit','Deposited 1 crystals to 454460756520337418.'),(3625,200340393596944384,'2018-07-06 16:16:47','deposit','Deposited 1 crystals to 454460756520337418.'),(3626,200340393596944384,'2018-07-06 16:16:48','deposit','Deposited 1 crystals to 454460756520337418.'),(3627,200340393596944384,'2018-07-06 16:16:49','deposit','Deposited 1 crystals to 454460756520337418.'),(3628,200340393596944384,'2018-07-06 16:16:51','deposit','Deposited 1 crystals to 454460756520337418.'),(3629,200340393596944384,'2018-07-06 16:16:52','deposit','Deposited 1 crystals to 454460756520337418.'),(3630,388505302292627456,'2018-07-06 16:16:53','checkin','Checked in for 7 crystals.'),(3631,200340393596944384,'2018-07-06 16:16:53','deposit','Deposited 1 crystals to 454460756520337418.'),(3632,325565391478718464,'2018-07-06 16:16:54','deposit','Deposited 1 crystals to 454460756520337418.'),(3633,200340393596944384,'2018-07-06 16:16:55','deposit','Deposited 1 crystals to 454460756520337418.'),(3634,325565391478718464,'2018-07-06 16:16:56','deposit','Deposited 1 crystals to 454460756520337418.'),(3635,325565391478718464,'2018-07-06 16:16:57','deposit','Deposited 1 crystals to 454460756520337418.'),(3636,325565391478718464,'2018-07-06 16:16:59','deposit','Deposited 1 crystals to 454460756520337418.'),(3637,325565391478718464,'2018-07-06 16:17:01','deposit','Deposited 1 crystals to 454460756520337418.'),(3638,325565391478718464,'2018-07-06 16:17:03','deposit','Deposited 1 crystals to 454460756520337418.'),(3639,200340393596944384,'2018-07-06 16:17:04','deposit','Deposited 9 crystals to 454460756520337418.'),(3640,325565391478718464,'2018-07-06 16:17:04','deposit','Deposited 1 crystals to 454460756520337418.'),(3641,200340393596944384,'2018-07-06 16:17:05','deposit','Deposited 1 crystals to 454460756520337418.'),(3642,200340393596944384,'2018-07-06 16:17:07','deposit','Deposited 1 crystals to 454460756520337418.'),(3643,200340393596944384,'2018-07-06 16:17:08','deposit','Deposited 1 crystals to 454460756520337418.'),(3644,200340393596944384,'2018-07-06 16:17:10','deposit','Deposited 1 crystals to 454460756520337418.'),(3645,325565391478718464,'2018-07-06 16:17:10','deposit','Deposited 1 crystals to 454460756520337418.'),(3646,325565391478718464,'2018-07-06 16:17:10','deposit','Deposited 1 crystals to 454460756520337418.'),(3647,200340393596944384,'2018-07-06 16:17:11','deposit','Deposited 1 crystals to 454460756520337418.'),(3648,325565391478718464,'2018-07-06 16:17:11','deposit','Deposited 1 crystals to 454460756520337418.'),(3649,200340393596944384,'2018-07-06 16:17:12','deposit','Deposited 1 crystals to 454460756520337418.'),(3650,200340393596944384,'2018-07-06 16:17:14','deposit','Deposited 1 crystals to 454460756520337418.'),(3651,200340393596944384,'2018-07-06 16:17:15','deposit','Deposited 1 crystals to 454460756520337418.'),(3652,200340393596944384,'2018-07-06 16:17:17','deposit','Deposited 1 crystals to 454460756520337418.'),(3653,306381311923453953,'2018-07-06 16:17:21','deposit','Deposited 1 crystals to 454460756520337418.'),(3654,306381311923453953,'2018-07-06 16:17:23','deposit','Deposited 1 crystals to 454460756520337418.'),(3655,200340393596944384,'2018-07-06 16:17:26','deposit','Deposited 41 crystals to 454460756520337418.'),(3656,185698541052755968,'2018-07-06 16:18:24','deposit','Deposited 3 crystals to 454460756520337418.'),(3657,455451366626951168,'2018-07-06 16:18:48','conversion','Converted to The Anarchy.'),(3658,185698541052755968,'2018-07-06 16:18:49','deposit','Deposited 1 crystals to 454460756520337418.'),(3659,192077723676573696,'2018-07-06 16:27:18','conversion','Converted to The Anarchy.'),(3660,192077723676573696,'2018-07-06 16:29:40','checkin','Checked in for 8 crystals.'),(3661,200340393596944384,'2018-07-06 16:47:45','transfer','200340393596944384 gave 5 crystals to 192077723676573696.'),(3662,401776435997704193,'2018-07-06 17:09:05','checkin','Checked in for 6 crystals.'),(3663,150649616772235264,'2018-07-06 17:34:35','deposit','Deposited 38 crystals to 454460756520337418.'),(3664,200340393596944384,'2018-07-06 17:34:39','deposit','Deposited 14 crystals to 454460756520337418.'),(3665,286105785052954626,'2018-07-06 17:34:53','checkin','Checked in for 8 crystals.'),(3666,454823752925052930,'2018-07-06 17:35:14','deposit','Deposited 1 crystals to 454460756520337418.'),(3667,390618369545601028,'2018-07-06 17:35:34','deposit','Deposited 10 crystals to 454460756520337418.'),(3668,200340393596944384,'2018-07-06 17:36:29','deposit','Deposited 1 crystals to 454460756520337418.'),(3669,200340393596944384,'2018-07-06 17:36:29','deposit','Deposited 1 crystals to 454460756520337418.'),(3670,200340393596944384,'2018-07-06 17:36:30','deposit','Deposited 1 crystals to 454460756520337418.'),(3671,200340393596944384,'2018-07-06 17:36:31','deposit','Deposited 1 crystals to 454460756520337418.'),(3672,200340393596944384,'2018-07-06 17:36:31','deposit','Deposited 1 crystals to 454460756520337418.'),(3673,200340393596944384,'2018-07-06 17:36:32','deposit','Deposited 1 crystals to 454460756520337418.'),(3674,200340393596944384,'2018-07-06 17:36:32','deposit','Deposited 1 crystals to 454460756520337418.'),(3675,200340393596944384,'2018-07-06 17:36:33','deposit','Deposited 1 crystals to 454460756520337418.'),(3676,200340393596944384,'2018-07-06 17:36:34','deposit','Deposited 1 crystals to 454460756520337418.'),(3677,200340393596944384,'2018-07-06 17:36:34','deposit','Deposited 1 crystals to 454460756520337418.'),(3678,200340393596944384,'2018-07-06 17:36:39','deposit','Deposited 1 crystals to 454460756520337418.'),(3679,200340393596944384,'2018-07-06 17:36:39','deposit','Deposited 1 crystals to 454460756520337418.'),(3680,200340393596944384,'2018-07-06 17:36:39','deposit','Deposited 1 crystals to 454460756520337418.'),(3681,200340393596944384,'2018-07-06 17:36:39','deposit','Deposited 1 crystals to 454460756520337418.'),(3682,200340393596944384,'2018-07-06 17:36:40','deposit','Deposited 1 crystals to 454460756520337418.'),(3683,200340393596944384,'2018-07-06 17:36:40','deposit','Deposited 1 crystals to 454460756520337418.'),(3684,200340393596944384,'2018-07-06 17:36:40','deposit','Deposited 1 crystals to 454460756520337418.'),(3685,200340393596944384,'2018-07-06 17:36:47','deposit','Deposited 1 crystals to 454460756520337418.'),(3686,200340393596944384,'2018-07-06 17:36:48','deposit','Deposited 1 crystals to 454460756520337418.'),(3687,200340393596944384,'2018-07-06 17:36:49','deposit','Deposited 1 crystals to 454460756520337418.'),(3688,200340393596944384,'2018-07-06 17:36:50','deposit','Deposited 1 crystals to 454460756520337418.'),(3689,200340393596944384,'2018-07-06 17:36:51','deposit','Deposited 1 crystals to 454460756520337418.'),(3690,200340393596944384,'2018-07-06 17:36:52','deposit','Deposited 1 crystals to 454460756520337418.'),(3691,200340393596944384,'2018-07-06 17:36:53','deposit','Deposited 1 crystals to 454460756520337418.'),(3692,200340393596944384,'2018-07-06 17:37:02','deposit','Deposited 1 crystals to 454460756520337418.'),(3693,224083099246395403,'2018-07-06 17:37:20','checkin','Checked in for 6 crystals.'),(3694,200340393596944384,'2018-07-06 17:37:29','deposit','Deposited 75 crystals to 454460756520337418.'),(3695,148942504077557760,'2018-07-06 17:38:27','deposit','Deposited 3 crystals to 457312250147897366.'),(3696,200340393596944384,'2018-07-06 17:42:28','deposit','Deposited 1 crystals to 454460756520337418.'),(3697,196372356514447360,'2018-07-06 17:50:20','deposit','Deposited 11 crystals to 454460756520337418.'),(3698,200340393596944384,'2018-07-06 17:50:44','deposit','Deposited 3 crystals to 454460756520337418.'),(3699,231539559454867467,'2018-07-06 18:00:46','checkin','Checked in for 5 crystals.'),(3700,231539559454867467,'2018-07-06 18:01:07','deposit','Deposited 5 crystals to 454460679244480512.'),(3701,250455372421267457,'2018-07-06 18:08:29','deposit','Deposited 5 crystals to 454460679244480512.'),(3702,457300954660995114,'2018-07-06 18:10:10','transfer','457300954660995114 gave 31 crystals to 460761978135248896.'),(3703,457300954660995114,'2018-07-06 18:10:26','transfer','457300954660995114 gave 15 crystals to 274301199841361920.'),(3704,276538857174990858,'2018-07-06 18:11:01','checkin','Checked in for 8 crystals.'),(3705,429615167492325376,'2018-07-06 18:19:40','checkin','Checked in for 9 crystals.'),(3706,162544056059035648,'2018-07-06 18:21:59','checkin','Checked in for 4 crystals.'),(3707,137004645468995585,'2018-07-06 18:29:38','checkin','Checked in for 8 crystals.'),(3708,460761978135248896,'2018-07-06 18:42:29','checkin','Checked in for 8 crystals.'),(3709,218458041790496768,'2018-07-06 18:46:35','checkin','Checked in for 8 crystals.'),(3710,397375315594444801,'2018-07-06 19:55:33','conversion','Converted to The Anarchy.'),(3711,386079497645981717,'2018-07-06 20:09:27','conversion','Converted to The Anarchy.'),(3712,397375315594444801,'2018-07-06 20:09:43','checkin','Checked in for 5 crystals.'),(3713,386079497645981717,'2018-07-06 20:10:39','checkin','Checked in for 4 crystals.'),(3714,294657701617598464,'2018-07-06 20:24:12','checkin','Checked in for 8 crystals.'),(3715,346737511546093568,'2018-07-06 20:54:17','conversion','Converted to The Order.'),(3716,346737511546093568,'2018-07-06 20:54:59','checkin','Checked in for 7 crystals.'),(3717,131968711312539648,'2018-07-06 21:12:22','checkin','Checked in for 5 crystals.'),(3718,278241670540034048,'2018-07-06 21:53:51','deposit','Deposited 1 crystals to 457312250147897366.'),(3719,324727149930086400,'2018-07-06 22:03:19','deposit','Deposited 1 crystals to 454460756520337418.'),(3720,218498162745278474,'2018-07-06 22:12:03','checkin','Checked in for 9 crystals.'),(3721,399953503008718859,'2018-07-06 22:26:57','checkin','Checked in for 7 crystals.'),(3722,399953503008718859,'2018-07-06 22:31:26','deposit','Deposited 2 crystals to 454460756520337418.'),(3723,374708322881765376,'2018-07-06 22:43:38','conversion','Converted to The Anarchy.'),(3724,374708322881765376,'2018-07-06 22:47:00','checkin','Checked in for 7 crystals.'),(3725,177920677909757953,'2018-07-06 23:20:19','conversion','Converted to The Anarchy.'),(3726,177920677909757953,'2018-07-06 23:28:05','checkin','Checked in for 7 crystals.'),(3727,457300954660995114,'2018-07-06 23:32:43','transfer','457300954660995114 gave 156 crystals to 460761978135248896.'),(3728,150768078714568705,'2018-07-06 23:57:13','checkin','Checked in for 5 crystals.'),(3729,460761978135248896,'2018-07-07 00:09:17','deposit','Deposited 339 crystals to 454460756520337418.'),(3730,381978984566489100,'2018-07-07 00:33:48','checkin','Checked in for 7 crystals.'),(3731,118124619117887488,'2018-07-07 00:34:03','checkin','Checked in for 5 crystals.'),(3732,200340393596944384,'2018-07-07 00:35:39','checkin','Checked in for 4 crystals.'),(3733,454823752925052930,'2018-07-07 00:35:42','checkin','Checked in for 7 crystals.'),(3734,433759248800022532,'2018-07-07 00:35:48','checkin','Checked in for 9 crystals.'),(3735,185698541052755968,'2018-07-07 00:36:10','checkin','Checked in for 5 crystals.'),(3736,150649616772235264,'2018-07-07 00:40:12','checkin','Checked in for 6 crystals.'),(3737,280445248789020672,'2018-07-07 00:43:15','checkin','Checked in for 7 crystals.'),(3738,201102155896193024,'2018-07-07 00:46:30','checkin','Checked in for 5 crystals.'),(3739,459879057295671296,'2018-07-07 00:48:30','checkin','Checked in for 4 crystals.'),(3740,454823752925052930,'2018-07-07 01:35:12','transfer','454823752925052930 gave 1 crystals to 438094660712267778.'),(3741,196081395494289408,'2018-07-07 01:43:18','checkin','Checked in for 5 crystals.'),(3742,130765718525444096,'2018-07-07 02:11:23','checkin','Checked in for 8 crystals.'),(3743,113380972912766976,'2018-07-07 02:57:06','conversion','Converted to The Anarchy.'),(3744,370495051815714816,'2018-07-07 03:00:29','checkin','Checked in for 8 crystals.'),(3745,433759248800022532,'2018-07-07 03:02:09','transfer','433759248800022532 gave 1 crystals to 438094660712267778.'),(3746,113380972912766976,'2018-07-07 03:16:14','checkin','Checked in for 6 crystals.'),(3747,278115594879107074,'2018-07-07 04:18:35','checkin','Checked in for 9 crystals.'),(3748,294927961310625793,'2018-07-07 04:28:06','checkin','Checked in for 8 crystals.'),(3749,306381311923453953,'2018-07-07 05:29:18','checkin','Checked in for 5 crystals.'),(3750,401776435997704193,'2018-07-07 05:42:20','checkin','Checked in for 4 crystals.'),(3751,224083099246395403,'2018-07-07 06:07:23','checkin','Checked in for 7 crystals.'),(3752,424563962303086594,'2018-07-07 06:10:53','checkin','Checked in for 7 crystals.'),(3753,173468649884090368,'2018-07-07 06:32:44','checkin','Checked in for 5 crystals.'),(3754,0,'2018-07-07 06:58:24','revive','reviveAll'),(3755,325565391478718464,'2018-07-07 07:58:24','checkin','Checked in for 9 crystals.'),(3756,464723134105255943,'2018-07-07 08:02:33','checkin','Checked in for 7 crystals.'),(3757,139861211746402304,'2018-07-07 08:10:30','checkin','Checked in for 4 crystals.'),(3758,139861211746402304,'2018-07-07 08:11:15','deposit','Deposited 4 crystals to 457312250147897366.'),(3759,191198987490033664,'2018-07-07 08:18:18','checkin','Checked in for 6 crystals.'),(3760,464723134105255943,'2018-07-07 08:43:38','deposit','Deposited 4 crystals to 457312250147897366.'),(3761,217208462889844736,'2018-07-07 08:43:48','checkin','Checked in for 6 crystals.'),(3762,286105785052954626,'2018-07-07 09:25:42','checkin','Checked in for 7 crystals.'),(3763,278241670540034048,'2018-07-07 09:40:37','checkin','Checked in for 5 crystals.'),(3764,330301910386999297,'2018-07-07 09:49:49','checkin','Checked in for 9 crystals.'),(3765,390938926761639936,'2018-07-07 10:00:34','checkin','Checked in for 6 crystals.'),(3766,257137018897694721,'2018-07-07 10:02:05','checkin','Checked in for 5 crystals.'),(3767,357981974931046400,'2018-07-07 10:06:47','checkin','Checked in for 8 crystals.'),(3768,173468649884090368,'2018-07-07 10:09:13','transfer','173468649884090368 gave 2 crystals to 118124619117887488.'),(3769,173468649884090368,'2018-07-07 10:10:18','transfer','173468649884090368 gave 1 crystals to 118124619117887488.'),(3770,280477072713842688,'2018-07-07 10:38:48','checkin','Checked in for 4 crystals.'),(3771,142612779377885185,'2018-07-07 10:40:50','checkin','Checked in for 8 crystals.'),(3772,464723134105255943,'2018-07-07 10:53:53','deposit','Deposited 4 crystals to 457312250147897366.'),(3773,315219062546497547,'2018-07-07 11:23:08','checkin','Checked in for 5 crystals.'),(3774,91918286647750656,'2018-07-07 11:52:17','conversion','Converted to The Anarchy.'),(3775,410502760962981888,'2018-07-07 12:37:46','conversion','Converted to The Anarchy.'),(3776,91918286647750656,'2018-07-07 12:51:10','checkin','Checked in for 8 crystals.'),(3777,91918286647750656,'2018-07-07 12:51:24','deposit','Deposited 8 crystals to 454460756520337418.'),(3778,463212636465790998,'2018-07-07 14:04:11','conversion','Converted to The Religion.'),(3779,294657701617598464,'2018-07-07 14:04:55','checkin','Checked in for 5 crystals.'),(3780,463212636465790998,'2018-07-07 14:37:53','checkin','Checked in for 9 crystals.'),(3781,246712838603800577,'2018-07-07 14:41:16','checkin','Checked in for 6 crystals.'),(3782,265907268942299136,'2018-07-07 14:43:32','checkin','Checked in for 4 crystals.'),(3783,450736651497635850,'2018-07-07 15:04:40','checkin','Checked in for 9 crystals.'),(3784,200340393596944384,'2018-07-07 16:10:16','transfer','200340393596944384 gave 6 crystals to 246712838603800577.'),(3785,388505302292627456,'2018-07-07 16:19:45','checkin','Checked in for 6 crystals.'),(3786,390618369545601028,'2018-07-07 16:32:53','checkin','Checked in for 7 crystals.'),(3787,450736651497635850,'2018-07-07 16:43:22','deposit','Deposited 5 crystals to 454460756520337418.'),(3788,218498162745278474,'2018-07-07 16:59:55','checkin','Checked in for 6 crystals.'),(3789,274301199841361920,'2018-07-07 17:09:16','checkin','Checked in for 6 crystals.'),(3790,339169842781487106,'2018-07-07 17:22:22','checkin','Checked in for 4 crystals.'),(3791,334750493085794304,'2018-07-07 17:51:13','checkin','Checked in for 4 crystals.'),(3792,218458041790496768,'2018-07-07 17:56:47','checkin','Checked in for 5 crystals.'),(3793,429787012481024010,'2018-07-07 18:17:44','conversion','Converted to The Anarchy.'),(3794,429787012481024010,'2018-07-07 18:17:58','checkin','Checked in for 9 crystals.'),(3795,192077723676573696,'2018-07-07 18:52:33','checkin','Checked in for 9 crystals.'),(3796,218498162745278474,'2018-07-07 19:31:03','transfer','218498162745278474 gave 1 crystals to 246712838603800577.'),(3797,274301199841361920,'2018-07-07 19:32:49','transfer','274301199841361920 gave 1 crystals to 246712838603800577.'),(3798,265610485812953088,'2018-07-07 19:36:57','checkin','Checked in for 6 crystals.'),(3799,211232684209340426,'2018-07-07 20:12:12','checkin','Checked in for 6 crystals.'),(3800,137004645468995585,'2018-07-07 20:27:15','checkin','Checked in for 6 crystals.'),(3801,200340393596944384,'2018-07-07 21:01:05','transfer','200340393596944384 gave 3 crystals to 278115594879107074.'),(3802,200340393596944384,'2018-07-07 21:01:09','transfer','200340393596944384 gave 3 crystals to 218498162745278474.'),(3803,399953503008718859,'2018-07-07 21:10:07','checkin','Checked in for 9 crystals.'),(3804,438052138141351936,'2018-07-07 21:46:50','conversion','Converted to The Anarchy.'),(3805,438052138141351936,'2018-07-07 21:50:10','checkin','Checked in for 6 crystals.'),(3806,221383251246186496,'2018-07-08 00:45:31','conversion','Converted to The Religion.'),(3807,131968711312539648,'2018-07-08 00:46:10','checkin','Checked in for 6 crystals.'),(3808,221383251246186496,'2018-07-08 00:49:34','checkin','Checked in for 5 crystals.'),(3809,200340393596944384,'2018-07-08 01:16:27','transfer','200340393596944384 gave 5 crystals to 150649616772235264.'),(3810,370495051815714816,'2018-07-08 01:22:43','checkin','Checked in for 8 crystals.'),(3811,328320677058707456,'2018-07-08 02:23:09','checkin','Checked in for 5 crystals.'),(3812,177920677909757953,'2018-07-08 03:03:36','checkin','Checked in for 6 crystals.'),(3813,224083099246395403,'2018-07-08 03:11:07','checkin','Checked in for 7 crystals.'),(3814,105809692936126464,'2018-07-08 03:40:20','conversion','Converted to The Anarchy.'),(3815,105809692936126464,'2018-07-08 03:45:21','checkin','Checked in for 9 crystals.'),(3816,433759248800022532,'2018-07-08 03:57:10','checkin','Checked in for 7 crystals.'),(3817,200340393596944384,'2018-07-08 03:57:21','checkin','Checked in for 4 crystals.'),(3818,454823752925052930,'2018-07-08 03:58:17','checkin','Checked in for 6 crystals.'),(3819,201102155896193024,'2018-07-08 03:59:32','checkin','Checked in for 4 crystals.'),(3820,459879057295671296,'2018-07-08 03:59:40','checkin','Checked in for 8 crystals.'),(3821,459876383431327746,'2018-07-08 04:01:16','checkin','Checked in for 4 crystals.'),(3822,459881667104997376,'2018-07-08 04:07:38','checkin','Checked in for 5 crystals.'),(3823,201102155896193024,'2018-07-08 04:08:56','transfer','201102155896193024 gave 1 crystals to 459879057295671296.'),(3824,459879057295671296,'2018-07-08 04:09:11','transfer','459879057295671296 gave 1 crystals to 459876383431327746.'),(3825,459881667104997376,'2018-07-08 04:09:33','transfer','459881667104997376 gave 2 crystals to 459876383431327746.'),(3826,459873273308643328,'2018-07-08 04:10:29','checkin','Checked in for 7 crystals.'),(3827,130765718525444096,'2018-07-08 04:26:04','checkin','Checked in for 5 crystals.'),(3828,398215411998654466,'2018-07-08 04:32:23','conversion','Converted to The Anarchy.'),(3829,450736651497635850,'2018-07-08 04:56:59','checkin','Checked in for 9 crystals.'),(3830,398215411998654466,'2018-07-08 04:57:17','checkin','Checked in for 4 crystals.'),(3831,398215411998654466,'2018-07-08 04:58:14','deposit','Deposited 1 crystals to 454460756520337418.'),(3832,457300954660995114,'2018-07-08 04:58:16','checkin','Checked in for 6 crystals.'),(3833,306381311923453953,'2018-07-08 05:03:11','checkin','Checked in for 9 crystals.'),(3834,454823752925052930,'2018-07-08 05:15:42','transfer','454823752925052930 gave 3 crystals to 185698541052755968.'),(3835,276538857174990858,'2018-07-08 05:40:15','checkin','Checked in for 9 crystals.'),(3836,460761978135248896,'2018-07-08 05:49:22','checkin','Checked in for 7 crystals.'),(3837,265907268942299136,'2018-07-08 06:04:31','checkin','Checked in for 8 crystals.'),(3838,459883167160205313,'2018-07-08 06:12:26','checkin','Checked in for 9 crystals.'),(3839,424563962303086594,'2018-07-08 06:12:41','checkin','Checked in for 8 crystals.'),(3840,459884642192064512,'2018-07-08 06:13:30','checkin','Checked in for 8 crystals.'),(3841,459834182961463299,'2018-07-08 06:15:00','checkin','Checked in for 9 crystals.'),(3842,0,'2018-07-08 06:58:22','revive','reviveAll'),(3843,460761978135248896,'2018-07-08 07:31:42','transfer','460761978135248896 gave 1 crystals to 370495051815714816.'),(3844,278241670540034048,'2018-07-08 07:39:45','checkin','Checked in for 5 crystals.'),(3845,164419318086369280,'2018-07-08 07:46:56','conversion','Converted to The Order.'),(3846,357981974931046400,'2018-07-08 07:50:43','checkin','Checked in for 6 crystals.'),(3847,118124619117887488,'2018-07-08 07:57:07','checkin','Checked in for 9 crystals.'),(3848,429787012481024010,'2018-07-08 07:57:59','checkin','Checked in for 9 crystals.'),(3849,164419318086369280,'2018-07-08 07:58:35','checkin','Checked in for 5 crystals.'),(3850,142612779377885185,'2018-07-08 08:00:37','checkin','Checked in for 7 crystals.'),(3851,438052138141351936,'2018-07-08 08:06:47','checkin','Checked in for 6 crystals.'),(3852,390938926761639936,'2018-07-08 08:33:37','checkin','Checked in for 9 crystals.'),(3853,173468649884090368,'2018-07-08 08:36:11','checkin','Checked in for 8 crystals.'),(3854,330301910386999297,'2018-07-08 09:29:03','checkin','Checked in for 6 crystals.'),(3855,274619765790867458,'2018-07-08 10:02:02','conversion','Converted to The Anarchy.'),(3856,274619765790867458,'2018-07-08 10:04:06','checkin','Checked in for 9 crystals.'),(3857,274619765790867458,'2018-07-08 10:09:44','deposit','Deposited 3 crystals to 454460756520337418.'),(3858,191198987490033664,'2018-07-08 10:21:06','checkin','Checked in for 9 crystals.'),(3859,280477072713842688,'2018-07-08 10:21:16','checkin','Checked in for 6 crystals.'),(3860,274301199841361920,'2018-07-08 10:49:21','checkin','Checked in for 7 crystals.'),(3861,139861211746402304,'2018-07-08 11:22:55','checkin','Checked in for 7 crystals.'),(3862,211232684209340426,'2018-07-08 12:05:34','checkin','Checked in for 4 crystals.'),(3863,325565391478718464,'2018-07-08 12:29:03','checkin','Checked in for 9 crystals.'),(3864,459884642192064512,'2018-07-08 14:16:36','transfer','459884642192064512 gave 2 crystals to 459876383431327746.'),(3865,459879057295671296,'2018-07-08 14:23:16','transfer','459879057295671296 gave 2 crystals to 201102155896193024.'),(3866,459873273308643328,'2018-07-08 14:23:52','transfer','459873273308643328 gave 1 crystals to 201102155896193024.'),(3867,334042819335553026,'2018-07-08 14:43:24','conversion','Converted to The Anarchy.'),(3868,334042819335553026,'2018-07-08 14:48:09','checkin','Checked in for 5 crystals.'),(3869,283395529449406464,'2018-07-08 15:27:10','checkin','Checked in for 7 crystals.'),(3870,459879057295671296,'2018-07-08 15:36:35','transfer','459879057295671296 gave 4 crystals to 201102155896193024.'),(3871,388505302292627456,'2018-07-08 15:53:14','checkin','Checked in for 8 crystals.'),(3872,246712838603800577,'2018-07-08 16:35:41','checkin','Checked in for 9 crystals.'),(3873,454823752925052930,'2018-07-08 16:48:27','transfer','454823752925052930 gave 2 crystals to 278115594879107074.'),(3874,454823752925052930,'2018-07-08 16:48:33','transfer','454823752925052930 gave 2 crystals to 118124619117887488.'),(3875,459873273308643328,'2018-07-08 17:00:16','transfer','459873273308643328 gave 6 crystals to 201102155896193024.'),(3876,257137018897694721,'2018-07-08 17:18:12','checkin','Checked in for 5 crystals.'),(3877,381978984566489100,'2018-07-08 17:29:00','checkin','Checked in for 8 crystals.'),(3878,196081395494289408,'2018-07-08 17:40:41','checkin','Checked in for 4 crystals.'),(3879,231539559454867467,'2018-07-08 18:02:02','checkin','Checked in for 4 crystals.'),(3880,201102155896193024,'2018-07-08 18:22:16','transfer','201102155896193024 gave 12 crystals to 459879057295671296.'),(3881,459879057295671296,'2018-07-08 18:22:50','transfer','459879057295671296 gave 2 crystals to 459881667104997376.'),(3882,459876383431327746,'2018-07-08 18:23:27','transfer','459876383431327746 gave 2 crystals to 459883167160205313.'),(3883,459873273308643328,'2018-07-08 18:23:36','transfer','459873273308643328 gave 3 crystals to 459883167160205313.'),(3884,459884642192064512,'2018-07-08 18:24:06','transfer','459884642192064512 gave 2 crystals to 459834182961463299.'),(3885,459834182961463299,'2018-07-08 18:26:28','transfer','459834182961463299 gave 5 crystals to 201102155896193024.'),(3886,150768078714568705,'2018-07-08 18:40:48','checkin','Checked in for 8 crystals.'),(3887,266606663807533056,'2018-07-08 19:40:09','conversion','Converted to The Anarchy.'),(3888,201102155896193024,'2018-07-08 20:19:15','transfer','201102155896193024 gave 5 crystals to 459881667104997376.'),(3889,459876383431327746,'2018-07-08 20:19:24','transfer','459876383431327746 gave 1 crystals to 459881667104997376.'),(3890,438094660712267778,'2018-07-08 20:42:11','checkin','Checked in for 7 crystals.'),(3891,444556456180842497,'2018-07-08 20:49:18','conversion','Converted to The Anarchy.'),(3892,150649616772235264,'2018-07-08 20:49:27','checkin','Checked in for 6 crystals.'),(3893,444556456180842497,'2018-07-08 20:49:47','checkin','Checked in for 6 crystals.'),(3894,244191245390315520,'2018-07-08 20:53:24','conversion','Converted to The Anarchy.'),(3895,244191245390315520,'2018-07-08 20:55:16','checkin','Checked in for 7 crystals.'),(3896,196372356514447360,'2018-07-08 20:55:29','checkin','Checked in for 4 crystals.'),(3897,168775748495212545,'2018-07-08 21:58:20','checkin','Checked in for 7 crystals.'),(3898,235980232723660800,'2018-07-08 22:25:39','conversion','Converted to The Order.'),(3899,280445248789020672,'2018-07-08 23:30:02','checkin','Checked in for 8 crystals.'),(3900,265610485812953088,'2018-07-09 01:07:55','checkin','Checked in for 8 crystals.'),(3901,457300954660995114,'2018-07-09 01:58:29','checkin','Checked in for 6 crystals.'),(3902,306542748113043456,'2018-07-09 01:59:24','checkin','Checked in for 7 crystals.'),(3903,381978984566489100,'2018-07-09 02:15:48','checkin','Checked in for 7 crystals.'),(3904,433759248800022532,'2018-07-09 02:15:55','checkin','Checked in for 4 crystals.'),(3905,454823752925052930,'2018-07-09 02:15:59','checkin','Checked in for 5 crystals.'),(3906,200340393596944384,'2018-07-09 02:16:04','checkin','Checked in for 5 crystals.'),(3907,105809692936126464,'2018-07-09 02:31:56','checkin','Checked in for 5 crystals.'),(3908,450736651497635850,'2018-07-09 04:12:06','checkin','Checked in for 5 crystals.'),(3909,150649616772235264,'2018-07-09 04:21:36','checkin','Checked in for 5 crystals.'),(3910,218498162745278474,'2018-07-09 04:24:07','checkin','Checked in for 6 crystals.'),(3911,185698541052755968,'2018-07-09 04:24:37','checkin','Checked in for 6 crystals.'),(3912,429615167492325376,'2018-07-09 04:50:59','checkin','Checked in for 6 crystals.'),(3913,398215411998654466,'2018-07-09 04:57:00','checkin','Checked in for 5 crystals.'),(3914,390618369545601028,'2018-07-09 05:26:59','checkin','Checked in for 5 crystals.'),(3915,224083099246395403,'2018-07-09 05:50:45','checkin','Checked in for 5 crystals.'),(3916,457300954660995114,'2018-07-09 06:19:45','transfer','457300954660995114 gave 2 crystals to 429615167492325376.'),(3917,280445248789020672,'2018-07-09 06:50:17','checkin','Checked in for 8 crystals.'),(3918,0,'2018-07-09 06:58:22','revive','reviveAll'),(3919,142612779377885185,'2018-07-09 07:20:11','checkin','Checked in for 7 crystals.'),(3920,464723134105255943,'2018-07-09 07:48:07','checkin','Checked in for 7 crystals.'),(3921,163655183438446593,'2018-07-09 07:55:16','checkin','Checked in for 9 crystals.'),(3922,464723134105255943,'2018-07-09 07:55:27','deposit','Deposited 4 crystals to 457312250147897366.'),(3923,325565391478718464,'2018-07-09 08:00:15','checkin','Checked in for 9 crystals.'),(3924,357981974931046400,'2018-07-09 08:52:06','checkin','Checked in for 4 crystals.'),(3925,139861211746402304,'2018-07-09 09:02:49','checkin','Checked in for 9 crystals.'),(3926,191198987490033664,'2018-07-09 09:20:04','checkin','Checked in for 7 crystals.'),(3927,211232684209340426,'2018-07-09 09:27:40','checkin','Checked in for 8 crystals.'),(3928,330301910386999297,'2018-07-09 09:58:53','checkin','Checked in for 7 crystals.'),(3929,274301199841361920,'2018-07-09 10:04:56','checkin','Checked in for 8 crystals.'),(3930,278241670540034048,'2018-07-09 11:23:45','checkin','Checked in for 9 crystals.'),(3931,438094660712267778,'2018-07-09 11:32:30','checkin','Checked in for 7 crystals.'),(3932,334750493085794304,'2018-07-09 11:45:41','checkin','Checked in for 8 crystals.'),(3933,294657701617598464,'2018-07-09 12:05:54','checkin','Checked in for 8 crystals.'),(3934,294657701617598464,'2018-07-09 12:06:36','deposit','Deposited 8 crystals to 454460756520337418.'),(3935,294657701617598464,'2018-07-09 12:06:50','deposit','Deposited 1 crystals to 454460756520337418.'),(3936,257137018897694721,'2018-07-09 12:21:20','checkin','Checked in for 4 crystals.'),(3937,244191245390315520,'2018-07-09 12:23:11','checkin','Checked in for 9 crystals.'),(3938,460761978135248896,'2018-07-09 13:52:26','checkin','Checked in for 9 crystals.'),(3939,173468649884090368,'2018-07-09 13:52:31','checkin','Checked in for 8 crystals.'),(3940,201102155896193024,'2018-07-09 13:57:50','checkin','Checked in for 5 crystals.'),(3941,459879057295671296,'2018-07-09 13:58:15','checkin','Checked in for 8 crystals.'),(3942,459876383431327746,'2018-07-09 13:58:32','checkin','Checked in for 8 crystals.'),(3943,118124619117887488,'2018-07-09 13:58:33','checkin','Checked in for 6 crystals.'),(3944,459881667104997376,'2018-07-09 13:59:53','checkin','Checked in for 6 crystals.'),(3945,459873273308643328,'2018-07-09 14:00:49','checkin','Checked in for 5 crystals.'),(3946,459883167160205313,'2018-07-09 14:01:45','checkin','Checked in for 7 crystals.'),(3947,459884642192064512,'2018-07-09 14:02:15','checkin','Checked in for 5 crystals.'),(3948,459834182961463299,'2018-07-09 14:02:28','checkin','Checked in for 4 crystals.'),(3949,459879057295671296,'2018-07-09 14:12:29','transfer','459879057295671296 gave 2 crystals to 201102155896193024.'),(3950,459876383431327746,'2018-07-09 14:12:46','transfer','459876383431327746 gave 2 crystals to 201102155896193024.'),(3951,459873273308643328,'2018-07-09 14:13:17','transfer','459873273308643328 gave 2 crystals to 201102155896193024.'),(3952,459883167160205313,'2018-07-09 14:13:32','transfer','459883167160205313 gave 1 crystals to 201102155896193024.'),(3953,459884642192064512,'2018-07-09 14:13:54','transfer','459884642192064512 gave 2 crystals to 201102155896193024.'),(3954,459834182961463299,'2018-07-09 14:14:11','transfer','459834182961463299 gave 4 crystals to 201102155896193024.'),(3955,201102155896193024,'2018-07-09 14:53:02','transfer','201102155896193024 gave 1 crystals to 191198987490033664.'),(3956,280477072713842688,'2018-07-09 14:57:24','checkin','Checked in for 7 crystals.'),(3957,339169842781487106,'2018-07-09 15:47:17','checkin','Checked in for 7 crystals.'),(3958,459873273308643328,'2018-07-09 16:06:16','transfer','459873273308643328 gave 2 crystals to 201102155896193024.'),(3959,140195026528370688,'2018-07-09 16:06:25','checkin','Checked in for 5 crystals.'),(3960,459883167160205313,'2018-07-09 16:06:40','transfer','459883167160205313 gave 2 crystals to 201102155896193024.'),(3961,459834182961463299,'2018-07-09 16:06:58','transfer','459834182961463299 gave 2 crystals to 201102155896193024.'),(3962,429787012481024010,'2018-07-09 17:33:10','checkin','Checked in for 7 crystals.'),(3963,459876383431327746,'2018-07-09 18:05:15','transfer','459876383431327746 gave 7 crystals to 201102155896193024.'),(3964,274619765790867458,'2018-07-09 18:07:59','checkin','Checked in for 9 crystals.'),(3965,390938926761639936,'2018-07-09 18:21:41','checkin','Checked in for 7 crystals.'),(3966,459873273308643328,'2018-07-09 20:05:10','transfer','459873273308643328 gave 1 crystals to 459876383431327746.'),(3967,201102155896193024,'2018-07-09 20:05:29','transfer','201102155896193024 gave 3 crystals to 459876383431327746.'),(3968,459884642192064512,'2018-07-09 20:05:53','transfer','459884642192064512 gave 2 crystals to 459876383431327746.'),(3969,286105785052954626,'2018-07-09 20:20:08','checkin','Checked in for 6 crystals.'),(3970,196081395494289408,'2018-07-09 21:05:29','checkin','Checked in for 6 crystals.'),(3971,429787012481024010,'2018-07-09 21:08:55','transfer','429787012481024010 gave 20 crystals to 118124619117887488.'),(3972,457300954660995114,'2018-07-09 21:13:41','transfer','457300954660995114 gave 20 crystals to 429787012481024010.'),(3973,460761978135248896,'2018-07-09 21:29:06','transfer','460761978135248896 gave 10 crystals to 457300954660995114.'),(3974,459876383431327746,'2018-07-09 22:11:59','transfer','459876383431327746 gave 2 crystals to 201102155896193024.'),(3975,454823752925052930,'2018-07-09 23:16:22','transfer','454823752925052930 gave 2 crystals to 457300954660995114.'),(3976,460761978135248896,'2018-07-09 23:16:49','transfer','460761978135248896 gave 2 crystals to 457300954660995114.'),(3977,118124619117887488,'2018-07-09 23:18:03','deposit','Deposited 5 crystals to 454460756520337418.'),(3978,457300954660995114,'2018-07-09 23:53:08','transfer','457300954660995114 gave 1 crystals to 429787012481024010.'),(3979,457300954660995114,'2018-07-09 23:53:24','transfer','457300954660995114 gave 1 crystals to 388505302292627456.'),(3980,460761978135248896,'2018-07-09 23:54:45','transfer','460761978135248896 gave 1 crystals to 457300954660995114.'),(3981,454823752925052930,'2018-07-09 23:54:50','transfer','454823752925052930 gave 2 crystals to 457289865516548098.'),(3982,459876383431327746,'2018-07-10 00:04:59','transfer','459876383431327746 gave 1 crystals to 201102155896193024.'),(3983,457300954660995114,'2018-07-10 00:05:06','transfer','457300954660995114 gave 1 crystals to 429787012481024010.'),(3984,459883167160205313,'2018-07-10 00:05:13','transfer','459883167160205313 gave 3 crystals to 201102155896193024.'),(3985,460761978135248896,'2018-07-10 00:06:10','transfer','460761978135248896 gave 1 crystals to 457289865516548098.'),(3986,454823752925052930,'2018-07-10 00:07:10','transfer','454823752925052930 gave 5 crystals to 388505302292627456.'),(3987,200340393596944384,'2018-07-10 00:19:00','transfer','200340393596944384 gave 3 crystals to 388505302292627456.'),(3988,150649616772235264,'2018-07-10 00:22:38','checkin','Checked in for 6 crystals.'),(3989,457300954660995114,'2018-07-10 01:04:07','checkin','Checked in for 5 crystals.'),(3990,370495051815714816,'2018-07-10 01:34:46','checkin','Checked in for 7 crystals.'),(3991,201102155896193024,'2018-07-10 02:01:02','checkin','Checked in for 5 crystals.'),(3992,459876383431327746,'2018-07-10 02:01:19','checkin','Checked in for 6 crystals.'),(3993,459876383431327746,'2018-07-10 02:35:58','transfer','459876383431327746 gave 3 crystals to 201102155896193024.'),(3994,438094660712267778,'2018-07-10 03:03:48','checkin','Checked in for 6 crystals.'),(3995,218498162745278474,'2018-07-10 03:15:51','transfer','218498162745278474 gave 1 crystals to 438094660712267778.'),(3996,218498162745278474,'2018-07-10 03:15:57','transfer','218498162745278474 gave 1 crystals to 460761978135248896.'),(3997,265610485812953088,'2018-07-10 03:35:44','checkin','Checked in for 6 crystals.'),(3998,224083099246395403,'2018-07-10 03:39:30','checkin','Checked in for 9 crystals.'),(3999,200340393596944384,'2018-07-10 03:48:58','checkin','Checked in for 5 crystals.'),(4000,433759248800022532,'2018-07-10 03:49:01','checkin','Checked in for 5 crystals.'),(4001,454823752925052930,'2018-07-10 03:49:03','checkin','Checked in for 5 crystals.'),(4002,465785309821534248,'2018-07-10 03:49:12','conversion','Converted to The Anarchy.'),(4003,465785309821534248,'2018-07-10 03:49:28','checkin','Checked in for 9 crystals.'),(4004,200340393596944384,'2018-07-10 04:03:30','transfer','200340393596944384 gave 5 crystals to 460761978135248896.'),(4005,459879057295671296,'2018-07-10 04:16:05','checkin','Checked in for 5 crystals.'),(4006,201102155896193024,'2018-07-10 04:16:51','transfer','201102155896193024 gave 1 crystals to 459876383431327746.'),(4007,459881667104997376,'2018-07-10 04:18:31','checkin','Checked in for 7 crystals.'),(4008,459873273308643328,'2018-07-10 04:19:12','checkin','Checked in for 9 crystals.'),(4009,459834182961463299,'2018-07-10 04:20:05','checkin','Checked in for 5 crystals.'),(4010,459884642192064512,'2018-07-10 04:20:53','checkin','Checked in for 7 crystals.'),(4011,459883167160205313,'2018-07-10 04:21:53','checkin','Checked in for 8 crystals.'),(4012,459834182961463299,'2018-07-10 04:23:20','transfer','459834182961463299 gave 5 crystals to 201102155896193024.'),(4013,454823752925052930,'2018-07-10 04:31:32','transfer','454823752925052930 gave 1 crystals to 429615167492325376.'),(4014,457300954660995114,'2018-07-10 04:31:58','transfer','457300954660995114 gave 1 crystals to 429615167492325376.'),(4015,325565391478718464,'2018-07-10 04:34:45','checkin','Checked in for 9 crystals.'),(4016,438094660712267778,'2018-07-10 04:37:48','deposit','Deposited 5 crystals to 454460756520337418.'),(4017,334750493085794304,'2018-07-10 04:50:00','checkin','Checked in for 5 crystals.'),(4018,438052138141351936,'2018-07-10 04:50:05','checkin','Checked in for 6 crystals.'),(4019,118124619117887488,'2018-07-10 04:56:49','checkin','Checked in for 4 crystals.'),(4020,130765718525444096,'2018-07-10 05:22:18','checkin','Checked in for 7 crystals.'),(4021,185698541052755968,'2018-07-10 05:26:12','checkin','Checked in for 7 crystals.'),(4022,139861211746402304,'2018-07-10 06:10:08','checkin','Checked in for 6 crystals.'),(4023,0,'2018-07-10 06:58:20','revive','reviveAll'),(4024,142612779377885185,'2018-07-10 07:32:54','checkin','Checked in for 6 crystals.'),(4025,357981974931046400,'2018-07-10 08:23:41','checkin','Checked in for 4 crystals.'),(4026,265907268942299136,'2018-07-10 08:56:14','checkin','Checked in for 8 crystals.'),(4027,191198987490033664,'2018-07-10 09:15:48','checkin','Checked in for 7 crystals.'),(4028,274301199841361920,'2018-07-10 09:23:27','checkin','Checked in for 6 crystals.'),(4029,466180576357908480,'2018-07-10 10:12:00','conversion','Converted to The Anarchy.'),(4030,224083099246395403,'2018-07-10 10:12:27','transfer','224083099246395403 gave 100 crystals to 466180576357908480.'),(4031,325565391478718464,'2018-07-10 10:27:58','deposit','Deposited 1 crystals to 454460756520337418.'),(4032,464723134105255943,'2018-07-10 10:41:42','checkin','Checked in for 8 crystals.'),(4033,163655183438446593,'2018-07-10 10:53:47','checkin','Checked in for 7 crystals.'),(4034,381978984566489100,'2018-07-10 11:03:47','checkin','Checked in for 7 crystals.'),(4035,390938926761639936,'2018-07-10 11:11:35','checkin','Checked in for 9 crystals.'),(4036,257137018897694721,'2018-07-10 11:36:43','checkin','Checked in for 8 crystals.'),(4037,211232684209340426,'2018-07-10 13:12:37','checkin','Checked in for 6 crystals.'),(4038,330301910386999297,'2018-07-10 13:41:27','checkin','Checked in for 6 crystals.'),(4039,390618369545601028,'2018-07-10 13:46:27','checkin','Checked in for 8 crystals.'),(4040,463212636465790998,'2018-07-10 14:11:28','checkin','Checked in for 7 crystals.'),(4041,429615167492325376,'2018-07-10 14:13:38','checkin','Checked in for 6 crystals.'),(4042,285930195125403650,'2018-07-10 15:35:39','checkin','Checked in for 8 crystals.'),(4043,231539559454867467,'2018-07-10 16:47:42','checkin','Checked in for 7 crystals.'),(4044,231539559454867467,'2018-07-10 16:47:54','deposit','Deposited 7 crystals to 454460679244480512.'),(4045,306542748113043456,'2018-07-10 17:03:44','checkin','Checked in for 8 crystals.'),(4046,173468649884090368,'2018-07-10 17:03:54','checkin','Checked in for 8 crystals.'),(4047,224083099246395403,'2018-07-10 17:20:06','deposit','Deposited 1 crystals to 454460756520337418.'),(4048,388505302292627456,'2018-07-10 17:26:54','checkin','Checked in for 5 crystals.'),(4049,460761978135248896,'2018-07-10 17:38:06','checkin','Checked in for 8 crystals.'),(4050,244191245390315520,'2018-07-10 19:35:37','checkin','Checked in for 7 crystals.'),(4051,457289865516548098,'2018-07-10 19:35:51','checkin','Checked in for 8 crystals.'),(4052,218498162745278474,'2018-07-10 20:02:02','checkin','Checked in for 6 crystals.'),(4053,283395529449406464,'2018-07-10 20:12:27','checkin','Checked in for 8 crystals.'),(4054,411878868274642945,'2018-07-10 20:59:09','checkin','Checked in for 8 crystals.'),(4055,429787012481024010,'2018-07-10 21:00:52','checkin','Checked in for 5 crystals.'),(4056,278241670540034048,'2018-07-10 21:49:53','checkin','Checked in for 6 crystals.'),(4057,286105785052954626,'2018-07-10 22:17:49','checkin','Checked in for 5 crystals.'),(4058,278115594879107074,'2018-07-10 22:48:59','checkin','Checked in for 5 crystals.'),(4059,111973500121579520,'2018-07-11 00:04:18','conversion','Converted to The Religion.'),(4060,111973500121579520,'2018-07-11 00:09:29','checkin','Checked in for 8 crystals.'),(4061,370495051815714816,'2018-07-11 00:24:02','checkin','Checked in for 7 crystals.'),(4062,457300954660995114,'2018-07-11 00:28:08','checkin','Checked in for 8 crystals.'),(4063,265610485812953088,'2018-07-11 00:37:30','checkin','Checked in for 7 crystals.'),(4064,201102155896193024,'2018-07-11 01:05:06','checkin','Checked in for 9 crystals.'),(4065,459873273308643328,'2018-07-11 01:27:03','checkin','Checked in for 8 crystals.'),(4066,459881667104997376,'2018-07-11 01:27:11','checkin','Checked in for 6 crystals.'),(4067,438094660712267778,'2018-07-11 01:29:39','transfer','438094660712267778 gave 1 crystals to 457289865516548098.'),(4068,438094660712267778,'2018-07-11 01:29:44','checkin','Checked in for 5 crystals.'),(4069,200340393596944384,'2018-07-11 01:30:00','checkin','Checked in for 7 crystals.'),(4070,465785309821534248,'2018-07-11 01:30:04','checkin','Checked in for 6 crystals.'),(4071,454823752925052930,'2018-07-11 01:30:09','checkin','Checked in for 6 crystals.'),(4072,433759248800022532,'2018-07-11 01:30:12','checkin','Checked in for 7 crystals.'),(4073,450736651497635850,'2018-07-11 01:33:04','checkin','Checked in for 6 crystals.'),(4074,150649616772235264,'2018-07-11 01:42:05','checkin','Checked in for 7 crystals.'),(4075,162544056059035648,'2018-07-11 02:53:40','checkin','Checked in for 5 crystals.'),(4076,193156866631663616,'2018-07-11 03:13:55','conversion','Converted to The Anarchy.'),(4077,218458041790496768,'2018-07-11 03:25:40','checkin','Checked in for 8 crystals.'),(4078,193156866631663616,'2018-07-11 03:38:54','checkin','Checked in for 4 crystals.'),(4079,175357710252900353,'2018-07-11 03:39:11','conversion','Converted to The Order.'),(4080,325565391478718464,'2018-07-11 04:15:54','checkin','Checked in for 4 crystals.'),(4081,218498162745278474,'2018-07-11 04:33:28','transfer','218498162745278474 gave 2 crystals to 460761978135248896.'),(4082,390938926761639936,'2018-07-11 04:42:36','checkin','Checked in for 4 crystals.'),(4083,438052138141351936,'2018-07-11 05:46:00','checkin','Checked in for 4 crystals.'),(4084,192077723676573696,'2018-07-11 05:46:05','checkin','Checked in for 5 crystals.'),(4085,224083099246395403,'2018-07-11 05:51:12','checkin','Checked in for 9 crystals.'),(4086,130765718525444096,'2018-07-11 05:52:15','checkin','Checked in for 5 crystals.'),(4087,438094660712267778,'2018-07-11 05:53:14','deposit','Deposited 5 crystals to 454460756520337418.'),(4088,466180576357908480,'2018-07-11 05:53:19','checkin','Checked in for 9 crystals.'),(4089,466180576357908480,'2018-07-11 05:54:23','transfer','466180576357908480 gave 9 crystals to 224083099246395403.'),(4090,0,'2018-07-11 06:58:18','revive','reviveAll'),(4091,330301910386999297,'2018-07-11 07:52:49','checkin','Checked in for 4 crystals.'),(4092,357981974931046400,'2018-07-11 07:59:07','checkin','Checked in for 7 crystals.'),(4093,274301199841361920,'2018-07-11 08:27:15','checkin','Checked in for 4 crystals.'),(4094,265907268942299136,'2018-07-11 08:32:46','checkin','Checked in for 5 crystals.'),(4095,390618369545601028,'2018-07-11 09:02:21','checkin','Checked in for 4 crystals.'),(4096,460761978135248896,'2018-07-11 09:28:24','transfer','460761978135248896 gave 2 crystals to 457300954660995114.'),(4097,424563962303086594,'2018-07-11 09:43:23','checkin','Checked in for 5 crystals.'),(4098,142612779377885185,'2018-07-11 09:50:49','checkin','Checked in for 6 crystals.'),(4099,139861211746402304,'2018-07-11 10:24:52','checkin','Checked in for 9 crystals.'),(4100,464723134105255943,'2018-07-11 10:37:49','checkin','Checked in for 4 crystals.'),(4101,118124619117887488,'2018-07-11 10:57:12','checkin','Checked in for 8 crystals.'),(4102,381978984566489100,'2018-07-11 11:02:15','checkin','Checked in for 9 crystals.'),(4103,191198987490033664,'2018-07-11 11:22:12','checkin','Checked in for 5 crystals.'),(4104,411878868274642945,'2018-07-11 14:34:46','checkin','Checked in for 7 crystals.'),(4105,163655183438446593,'2018-07-11 15:29:56','checkin','Checked in for 7 crystals.'),(4106,173468649884090368,'2018-07-11 15:52:20','checkin','Checked in for 5 crystals.'),(4107,286105785052954626,'2018-07-11 16:49:32','checkin','Checked in for 7 crystals.'),(4108,339169842781487106,'2018-07-11 17:15:30','checkin','Checked in for 5 crystals.'),(4109,211232684209340426,'2018-07-11 17:25:33','checkin','Checked in for 4 crystals.'),(4110,429615167492325376,'2018-07-11 18:00:22','checkin','Checked in for 7 crystals.'),(4111,224083099246395403,'2018-07-11 18:21:30','transfer','224083099246395403 gave 50 crystals to 466180576357908480.'),(4112,175357710252900353,'2018-07-11 18:42:32','checkin','Checked in for 8 crystals.'),(4113,460761978135248896,'2018-07-11 18:50:29','checkin','Checked in for 8 crystals.'),(4114,444556456180842497,'2018-07-11 18:59:38','checkin','Checked in for 7 crystals.'),(4115,257137018897694721,'2018-07-11 19:07:07','checkin','Checked in for 7 crystals.'),(4116,429787012481024010,'2018-07-11 19:26:53','checkin','Checked in for 7 crystals.'),(4117,244191245390315520,'2018-07-11 19:57:07','checkin','Checked in for 8 crystals.'),(4118,459876383431327746,'2018-07-11 21:41:07','checkin','Checked in for 4 crystals.'),(4119,459873273308643328,'2018-07-11 21:42:08','transfer','459873273308643328 gave 24 crystals to 201102155896193024.'),(4120,459884642192064512,'2018-07-11 21:44:42','checkin','Checked in for 4 crystals.'),(4121,459879057295671296,'2018-07-11 21:46:00','checkin','Checked in for 6 crystals.'),(4122,201102155896193024,'2018-07-11 22:02:52','transfer','201102155896193024 gave 9 crystals to 459876383431327746.'),(4123,201102155896193024,'2018-07-11 22:05:58','transfer','201102155896193024 gave 9 crystals to 459834182961463299.'),(4124,201102155896193024,'2018-07-11 22:06:51','transfer','201102155896193024 gave 4 crystals to 459884642192064512.'),(4125,459883167160205313,'2018-07-11 22:08:08','checkin','Checked in for 8 crystals.'),(4126,459876383431327746,'2018-07-11 23:59:58','transfer','459876383431327746 gave 1 crystals to 201102155896193024.'),(4127,459834182961463299,'2018-07-12 00:00:14','transfer','459834182961463299 gave 2 crystals to 201102155896193024.'),(4128,459883167160205313,'2018-07-12 00:00:59','transfer','459883167160205313 gave 1 crystals to 201102155896193024.'),(4129,285930195125403650,'2018-07-12 00:39:21','checkin','Checked in for 9 crystals.'),(4130,457300954660995114,'2018-07-12 00:39:28','checkin','Checked in for 7 crystals.'),(4131,381978984566489100,'2018-07-12 00:48:14','checkin','Checked in for 7 crystals.'),(4132,218498162745278474,'2018-07-12 01:00:18','checkin','Checked in for 9 crystals.'),(4133,433759248800022532,'2018-07-12 01:16:17','transfer','433759248800022532 gave 2 crystals to 460761978135248896.'),(4134,370495051815714816,'2018-07-12 01:33:12','checkin','Checked in for 9 crystals.'),(4135,118124619117887488,'2018-07-12 01:55:52','checkin','Checked in for 9 crystals.'),(4136,465785309821534248,'2018-07-12 02:20:46','checkin','Checked in for 9 crystals.'),(4137,200340393596944384,'2018-07-12 02:20:50','checkin','Checked in for 9 crystals.'),(4138,454823752925052930,'2018-07-12 02:20:52','checkin','Checked in for 6 crystals.'),(4139,433759248800022532,'2018-07-12 02:21:23','checkin','Checked in for 7 crystals.'),(4140,111973500121579520,'2018-07-12 02:32:27','checkin','Checked in for 4 crystals.'),(4141,460761978135248896,'2018-07-12 02:51:21','transfer','460761978135248896 gave 5 crystals to 457300954660995114.'),(4142,457300954660995114,'2018-07-12 03:52:27','transfer','457300954660995114 gave 2 crystals to 460761978135248896.'),(4143,224083099246395403,'2018-07-12 04:15:38','checkin','Checked in for 6 crystals.'),(4144,466180576357908480,'2018-07-12 04:18:08','checkin','Checked in for 5 crystals.'),(4145,466180576357908480,'2018-07-12 04:18:19','transfer','466180576357908480 gave 5 crystals to 224083099246395403.'),(4146,150649616772235264,'2018-07-12 04:42:50','checkin','Checked in for 9 crystals.'),(4147,201102155896193024,'2018-07-12 04:45:28','checkin','Checked in for 9 crystals.'),(4148,459879057295671296,'2018-07-12 04:47:09','checkin','Checked in for 4 crystals.'),(4149,459881667104997376,'2018-07-12 04:48:21','checkin','Checked in for 8 crystals.'),(4150,390938926761639936,'2018-07-12 04:49:27','checkin','Checked in for 5 crystals.'),(4151,457289865516548098,'2018-07-12 04:49:53','checkin','Checked in for 4 crystals.'),(4152,459876383431327746,'2018-07-12 04:58:59','checkin','Checked in for 9 crystals.'),(4153,429615167492325376,'2018-07-12 05:02:10','checkin','Checked in for 7 crystals.'),(4154,466821403027701760,'2018-07-12 05:18:25','conversion','Converted to The Anarchy.'),(4155,466821403027701760,'2018-07-12 05:18:33','checkin','Checked in for 6 crystals.'),(4156,173468649884090368,'2018-07-12 06:14:19','checkin','Checked in for 7 crystals.'),(4157,130765718525444096,'2018-07-12 06:47:20','checkin','Checked in for 7 crystals.'),(4158,0,'2018-07-12 06:58:16','revive','reviveAll'),(4159,424563962303086594,'2018-07-12 06:58:22','checkin','Checked in for 5 crystals.'),(4160,278115594879107074,'2018-07-12 07:33:00','checkin','Checked in for 7 crystals.'),(4161,334750493085794304,'2018-07-12 07:51:40','checkin','Checked in for 8 crystals.'),(4162,286105785052954626,'2018-07-12 08:06:04','checkin','Checked in for 9 crystals.'),(4163,325565391478718464,'2018-07-12 08:10:01','checkin','Checked in for 8 crystals.'),(4164,357981974931046400,'2018-07-12 08:11:44','checkin','Checked in for 6 crystals.'),(4165,274301199841361920,'2018-07-12 08:35:10','checkin','Checked in for 7 crystals.'),(4166,211232684209340426,'2018-07-12 09:01:30','checkin','Checked in for 7 crystals.'),(4167,330301910386999297,'2018-07-12 09:33:10','checkin','Checked in for 7 crystals.'),(4168,163655183438446593,'2018-07-12 09:46:29','checkin','Checked in for 7 crystals.'),(4169,466180576357908480,'2018-07-12 10:48:55','transfer','466180576357908480 gave 3 crystals to 224083099246395403.'),(4170,257137018897694721,'2018-07-12 11:02:51','checkin','Checked in for 9 crystals.'),(4171,466180576357908480,'2018-07-12 11:39:15','transfer','466180576357908480 gave 1 crystals to 224083099246395403.'),(4172,438094660712267778,'2018-07-12 11:42:12','checkin','Checked in for 6 crystals.'),(4173,185698541052755968,'2018-07-12 11:44:46','checkin','Checked in for 6 crystals.'),(4174,142612779377885185,'2018-07-12 11:44:56','checkin','Checked in for 6 crystals.'),(4175,265907268942299136,'2018-07-12 11:53:59','checkin','Checked in for 6 crystals.'),(4176,463212636465790998,'2018-07-12 12:04:23','checkin','Checked in for 8 crystals.'),(4177,224083099246395403,'2018-07-12 12:30:38','transfer','224083099246395403 gave 50 crystals to 466180576357908480.'),(4178,139861211746402304,'2018-07-12 13:09:05','checkin','Checked in for 7 crystals.'),(4179,438052138141351936,'2018-07-12 13:49:50','checkin','Checked in for 6 crystals.'),(4180,464723134105255943,'2018-07-12 14:15:29','checkin','Checked in for 4 crystals.'),(4181,388505302292627456,'2018-07-12 15:05:48','checkin','Checked in for 5 crystals.'),(4182,466996164789796884,'2018-07-12 16:08:26','conversion','Converted to The Order.'),(4183,466995296795230219,'2018-07-12 16:08:50','conversion','Converted to The Anarchy.'),(4184,459881667104997376,'2018-07-12 16:16:06','transfer','459881667104997376 gave 2 crystals to 201102155896193024.'),(4185,459873273308643328,'2018-07-12 16:17:11','checkin','Checked in for 6 crystals.'),(4186,459883167160205313,'2018-07-12 16:17:51','checkin','Checked in for 5 crystals.'),(4187,459883167160205313,'2018-07-12 16:18:03','transfer','459883167160205313 gave 2 crystals to 201102155896193024.'),(4188,466995296795230219,'2018-07-12 16:19:03','checkin','Checked in for 4 crystals.'),(4189,459884642192064512,'2018-07-12 16:20:01','checkin','Checked in for 9 crystals.'),(4190,466996164789796884,'2018-07-12 16:20:44','checkin','Checked in for 7 crystals.'),(4191,459834182961463299,'2018-07-12 16:21:37','checkin','Checked in for 4 crystals.'),(4192,459834182961463299,'2018-07-12 16:21:43','transfer','459834182961463299 gave 1 crystals to 201102155896193024.'),(4193,459834182961463299,'2018-07-12 16:21:57','transfer','459834182961463299 gave 3 crystals to 201102155896193024.'),(4194,459879057295671296,'2018-07-12 17:38:10','transfer','459879057295671296 gave 1 crystals to 201102155896193024.'),(4195,359521958519504926,'2018-07-12 18:47:49','checkin','Checked in for 5 crystals.'),(4196,380570161893081089,'2018-07-12 18:51:42','conversion','Converted to The Anarchy.'),(4197,380570161893081089,'2018-07-12 18:56:52','checkin','Checked in for 5 crystals.'),(4198,460761978135248896,'2018-07-12 19:42:30','checkin','Checked in for 9 crystals.'),(4199,457300954660995114,'2018-07-12 21:38:01','transfer','457300954660995114 gave 2 crystals to 466995296795230219.'),(4200,150649616772235264,'2018-07-13 00:07:14','checkin','Checked in for 5 crystals.'),(4201,457300954660995114,'2018-07-13 00:07:25','checkin','Checked in for 8 crystals.'),(4202,111973500121579520,'2018-07-13 00:13:45','checkin','Checked in for 7 crystals.'),(4203,244191245390315520,'2018-07-13 00:14:43','checkin','Checked in for 6 crystals.'),(4204,196372356514447360,'2018-07-13 00:39:43','checkin','Checked in for 7 crystals.'),(4205,398215411998654466,'2018-07-13 01:12:01','checkin','Checked in for 8 crystals.'),(4206,460761978135248896,'2018-07-13 01:15:25','transfer','460761978135248896 gave 1 crystals to 285930195125403650.'),(4207,130765718525444096,'2018-07-13 01:37:12','checkin','Checked in for 6 crystals.'),(4208,381978984566489100,'2018-07-13 01:47:43','checkin','Checked in for 5 crystals.'),(4209,463937120592199681,'2018-07-13 02:10:36','conversion','Converted to The Religion.'),(4210,200340393596944384,'2018-07-13 02:35:07','transfer','200340393596944384 gave 1 crystals to 460761978135248896.'),(4211,200340393596944384,'2018-07-13 02:35:10','transfer','200340393596944384 gave 1 crystals to 457300954660995114.'),(4212,200340393596944384,'2018-07-13 03:31:14','transfer','200340393596944384 gave 3 crystals to 457300954660995114.'),(4213,201102155896193024,'2018-07-13 04:14:49','checkin','Checked in for 8 crystals.'),(4214,390938926761639936,'2018-07-13 05:21:01','checkin','Checked in for 4 crystals.'),(4215,200340393596944384,'2018-07-13 05:21:06','checkin','Checked in for 6 crystals.'),(4216,390618369545601028,'2018-07-13 05:21:09','checkin','Checked in for 8 crystals.'),(4217,465785309821534248,'2018-07-13 05:21:10','checkin','Checked in for 5 crystals.'),(4218,454823752925052930,'2018-07-13 05:21:13','checkin','Checked in for 4 crystals.'),(4219,433759248800022532,'2018-07-13 05:21:15','checkin','Checked in for 9 crystals.'),(4220,294657701617598464,'2018-07-13 05:23:22','checkin','Checked in for 7 crystals.'),(4221,278115594879107074,'2018-07-13 05:36:04','checkin','Checked in for 7 crystals.'),(4222,325565391478718464,'2018-07-13 06:07:59','checkin','Checked in for 5 crystals.'),(4223,359521958519504926,'2018-07-13 06:09:08','checkin','Checked in for 7 crystals.'),(4224,466180576357908480,'2018-07-13 06:12:30','checkin','Checked in for 4 crystals.'),(4225,466180576357908480,'2018-07-13 06:12:44','transfer','466180576357908480 gave 4 crystals to 224083099246395403.'),(4226,466821403027701760,'2018-07-13 06:13:01','checkin','Checked in for 8 crystals.'),(4227,224083099246395403,'2018-07-13 06:14:44','checkin','Checked in for 7 crystals.'),(4228,459881667104997376,'2018-07-13 06:24:03','checkin','Checked in for 9 crystals.'),(4229,459876383431327746,'2018-07-13 06:26:19','checkin','Checked in for 6 crystals.'),(4230,459879057295671296,'2018-07-13 06:26:34','checkin','Checked in for 4 crystals.'),(4231,0,'2018-07-13 06:58:14','revive','reviveAll'),(4232,457300954660995114,'2018-07-13 07:46:39','transfer','457300954660995114 gave 1 crystals to 460761978135248896.'),(4233,173468649884090368,'2018-07-13 07:55:34','checkin','Checked in for 4 crystals.'),(4234,265907268942299136,'2018-07-13 08:08:13','checkin','Checked in for 4 crystals.'),(4235,334750493085794304,'2018-07-13 08:27:18','checkin','Checked in for 9 crystals.'),(4236,274301199841361920,'2018-07-13 08:29:34','checkin','Checked in for 5 crystals.'),(4237,357981974931046400,'2018-07-13 08:30:40','checkin','Checked in for 8 crystals.'),(4238,163655183438446593,'2018-07-13 08:32:56','checkin','Checked in for 4 crystals.'),(4239,330301910386999297,'2018-07-13 08:58:44','checkin','Checked in for 8 crystals.'),(4240,257137018897694721,'2018-07-13 09:04:12','checkin','Checked in for 6 crystals.'),(4241,224083099246395403,'2018-07-13 09:33:24','transfer','224083099246395403 gave 50 crystals to 466180576357908480.'),(4242,464723134105255943,'2018-07-13 10:36:02','checkin','Checked in for 9 crystals.'),(4243,118124619117887488,'2018-07-13 10:40:25','checkin','Checked in for 8 crystals.'),(4244,211232684209340426,'2018-07-13 11:22:04','checkin','Checked in for 5 crystals.'),(4245,173468649884090368,'2018-07-13 11:31:53','transfer','173468649884090368 gave 11 crystals to 224083099246395403.'),(4246,173468649884090368,'2018-07-13 11:34:57','transfer','173468649884090368 gave 3 crystals to 224083099246395403.'),(4247,224083099246395403,'2018-07-13 11:37:28','transfer','224083099246395403 gave 14 crystals to 173468649884090368.'),(4248,191198987490033664,'2018-07-13 12:21:39','checkin','Checked in for 4 crystals.'),(4249,139861211746402304,'2018-07-13 12:48:38','checkin','Checked in for 6 crystals.'),(4250,459873273308643328,'2018-07-13 13:47:04','checkin','Checked in for 4 crystals.'),(4251,438052138141351936,'2018-07-13 13:56:14','checkin','Checked in for 7 crystals.'),(4252,455451366626951200,'2018-07-13 14:27:36','checkin','Checked in for 110 crystals.'),(4253,455451366626951168,'2018-07-13 14:29:36','checkin','Checked in for 7 crystals.'),(4254,285930195125403650,'2018-07-13 15:01:50','checkin','Checked in for 9 crystals.'),(4255,388505302292627456,'2018-07-13 15:51:54','checkin','Checked in for 8 crystals.'),(4256,434786346033217548,'2018-07-13 15:55:35','conversion','Converted to The Order.'),(4257,434786346033217548,'2018-07-13 15:56:03','checkin','Checked in for 9 crystals.'),(4258,201102155896193024,'2018-07-13 16:15:59','transfer','201102155896193024 gave 15 crystals to 459879057295671296.'),(4259,459879057295671296,'2018-07-13 16:16:28','transfer','459879057295671296 gave 8 crystals to 459873273308643328.'),(4260,459884642192064512,'2018-07-13 16:17:52','checkin','Checked in for 7 crystals.'),(4261,459884642192064512,'2018-07-13 16:17:57','transfer','459884642192064512 gave 1 crystals to 459881667104997376.'),(4262,459883167160205313,'2018-07-13 16:18:55','checkin','Checked in for 8 crystals.'),(4263,459883167160205313,'2018-07-13 16:19:09','transfer','459883167160205313 gave 2 crystals to 201102155896193024.'),(4264,459834182961463299,'2018-07-13 16:19:44','checkin','Checked in for 8 crystals.'),(4265,459834182961463299,'2018-07-13 16:19:50','transfer','459834182961463299 gave 2 crystals to 201102155896193024.'),(4266,459879057295671296,'2018-07-13 17:02:49','transfer','459879057295671296 gave 3 crystals to 201102155896193024.'),(4267,459881667104997376,'2018-07-13 17:03:23','transfer','459881667104997376 gave 8 crystals to 201102155896193024.'),(4268,459884642192064512,'2018-07-13 17:17:59','transfer','459884642192064512 gave 9 crystals to 201102155896193024.'),(4269,459876383431327746,'2018-07-13 17:20:55','transfer','459876383431327746 gave 4 crystals to 201102155896193024.'),(4270,459873273308643328,'2018-07-13 17:21:13','transfer','459873273308643328 gave 1 crystals to 201102155896193024.'),(4271,339169842781487106,'2018-07-13 17:32:54','checkin','Checked in for 8 crystals.'),(4272,224083099246395403,'2018-07-13 17:44:00','transfer','224083099246395403 gave 20 crystals to 466821403027701760.'),(4273,438094660712267778,'2018-07-13 17:45:25','checkin','Checked in for 8 crystals.'),(4274,466995296795230219,'2018-07-13 18:04:52','checkin','Checked in for 4 crystals.'),(4275,460761978135248896,'2018-07-13 18:14:42','checkin','Checked in for 6 crystals.'),(4276,201102155896193024,'2018-07-13 18:31:48','transfer','201102155896193024 gave 9 crystals to 459873273308643328.'),(4277,459834182961463299,'2018-07-13 18:32:07','transfer','459834182961463299 gave 4 crystals to 459873273308643328.'),(4278,459873273308643328,'2018-07-13 18:32:39','transfer','459873273308643328 gave 6 crystals to 459883167160205313.'),(4279,272423601922375680,'2018-07-13 18:36:21','checkin','Checked in for 4 crystals.'),(4280,323176514617081857,'2018-07-13 18:46:03','conversion','Converted to The Anarchy.'),(4281,323176514617081857,'2018-07-13 18:46:55','checkin','Checked in for 8 crystals.'),(4282,466821403027701760,'2018-07-13 19:24:21','transfer','466821403027701760 gave 21 crystals to 224083099246395403.'),(4283,466180576357908480,'2018-07-13 19:24:58','transfer','466180576357908480 gave 52 crystals to 224083099246395403.'),(4284,173468649884090368,'2018-07-13 19:26:29','transfer','173468649884090368 gave 11 crystals to 224083099246395403.'),(4285,142612779377885185,'2018-07-13 19:49:18','checkin','Checked in for 7 crystals.'),(4286,455451366626951168,'2018-07-13 19:53:00','transfer','455451366626951168 gave 7 crystals to 150649616772235264.'),(4287,467413488961060875,'2018-07-13 19:53:37','conversion','Converted to The Anarchy.'),(4288,467413488961060875,'2018-07-13 19:54:08','checkin','Checked in for 8 crystals.'),(4289,224083099246395403,'2018-07-13 19:55:36','transfer','224083099246395403 gave 100 crystals to 467413488961060875.'),(4290,459873273308643328,'2018-07-13 20:00:44','transfer','459873273308643328 gave 1 crystals to 459876383431327746.'),(4291,459883167160205313,'2018-07-13 20:02:08','transfer','459883167160205313 gave 6 crystals to 459876383431327746.'),(4292,433759248800022532,'2018-07-13 20:04:08','transfer','433759248800022532 gave 25 crystals to 454823752925052930.'),(4293,467413488961060875,'2018-07-13 20:37:09','transfer','467413488961060875 gave 11 crystals to 173468649884090368.'),(4294,150649616772235264,'2018-07-13 20:40:24','deposit','Deposited 1 crystals to 454460756520337418.'),(4295,466996164789796884,'2018-07-13 20:43:52','checkin','Checked in for 9 crystals.'),(4296,405868548150394890,'2018-07-13 20:49:07','conversion','Converted to The Anarchy.'),(4297,405868548150394890,'2018-07-13 20:50:09','checkin','Checked in for 7 crystals.'),(4298,405263704222072832,'2018-07-13 20:53:03','conversion','Converted to The Anarchy.'),(4299,466996164789796884,'2018-07-13 20:58:01','deposit','Deposited 1 crystals to 454460679244480512.'),(4300,405868548150394890,'2018-07-13 22:24:34','deposit','Deposited 1 crystals to 454460756520337418.'),(4301,457300954660995114,'2018-07-13 23:46:44','transfer','457300954660995114 gave 2 crystals to 118124619117887488.'),(4302,460761978135248896,'2018-07-13 23:47:04','transfer','460761978135248896 gave 2 crystals to 457300954660995114.'),(4303,457300954660995114,'2018-07-14 00:08:30','checkin','Checked in for 9 crystals.'),(4304,118124619117887488,'2018-07-14 00:11:10','deposit','Deposited 5 crystals to 454460756520337418.'),(4305,191198987490033664,'2018-07-14 00:18:17','checkin','Checked in for 4 crystals.'),(4306,218458041790496768,'2018-07-14 01:39:17','checkin','Checked in for 6 crystals.'),(4307,244191245390315520,'2018-07-14 01:40:01','checkin','Checked in for 6 crystals.'),(4308,457300954660995114,'2018-07-14 01:49:47','transfer','457300954660995114 gave 30 crystals to 460761978135248896.'),(4309,111973500121579520,'2018-07-14 01:58:50','checkin','Checked in for 5 crystals.'),(4310,466821403027701760,'2018-07-14 04:01:48','checkin','Checked in for 9 crystals.'),(4311,466180576357908480,'2018-07-14 04:01:53','checkin','Checked in for 5 crystals.'),(4312,467413488961060875,'2018-07-14 04:01:59','checkin','Checked in for 7 crystals.'),(4313,454823752925052930,'2018-07-14 04:02:08','checkin','Checked in for 4 crystals.'),(4314,224083099246395403,'2018-07-14 04:02:12','checkin','Checked in for 9 crystals.'),(4315,465785309821534248,'2018-07-14 04:02:12','checkin','Checked in for 9 crystals.'),(4316,433759248800022532,'2018-07-14 04:02:17','checkin','Checked in for 8 crystals.'),(4317,200340393596944384,'2018-07-14 04:02:22','checkin','Checked in for 7 crystals.'),(4318,466180576357908480,'2018-07-14 04:02:42','transfer','466180576357908480 gave 5 crystals to 224083099246395403.'),(4319,218498162745278474,'2018-07-14 05:32:36','checkin','Checked in for 5 crystals.'),(4320,457300954660995114,'2018-07-14 05:53:24','transfer','457300954660995114 gave 3 crystals to 460761978135248896.'),(4321,393415098766458892,'2018-07-14 06:35:20','checkin','Checked in for 5 crystals.'),(4322,390938926761639936,'2018-07-14 06:35:51','checkin','Checked in for 4 crystals.'),(4323,467413488961060875,'2018-07-14 06:46:14','transfer','467413488961060875 gave 30 crystals to 224083099246395403.'),(4324,429615167492325376,'2018-07-14 06:48:11','checkin','Checked in for 7 crystals.'),(4325,0,'2018-07-14 06:58:13','revive','reviveAll'),(4326,173468649884090368,'2018-07-14 07:06:27','checkin','Checked in for 6 crystals.'),(4327,438052138141351936,'2018-07-14 07:55:56','checkin','Checked in for 6 crystals.'),(4328,139861211746402304,'2018-07-14 08:15:40','checkin','Checked in for 5 crystals.'),(4329,330301910386999297,'2018-07-14 08:52:12','checkin','Checked in for 9 crystals.'),(4330,286105785052954626,'2018-07-14 08:52:17','checkin','Checked in for 5 crystals.'),(4331,130765718525444096,'2018-07-14 09:02:15','checkin','Checked in for 4 crystals.'),(4332,357981974931046400,'2018-07-14 09:14:26','checkin','Checked in for 6 crystals.'),(4333,274301199841361920,'2018-07-14 11:27:42','checkin','Checked in for 6 crystals.'),(4334,142612779377885185,'2018-07-14 11:37:12','checkin','Checked in for 6 crystals.'),(4335,325565391478718464,'2018-07-14 12:21:28','checkin','Checked in for 4 crystals.'),(4336,334750493085794304,'2018-07-14 13:24:44','checkin','Checked in for 6 crystals.'),(4337,438094660712267778,'2018-07-14 14:22:58','checkin','Checked in for 5 crystals.'),(4338,450736651497635850,'2018-07-14 14:39:14','checkin','Checked in for 8 crystals.'),(4339,429787012481024010,'2018-07-14 14:44:56','checkin','Checked in for 4 crystals.'),(4340,118124619117887488,'2018-07-14 14:45:52','checkin','Checked in for 8 crystals.'),(4341,466180576357908480,'2018-07-14 16:04:01','transfer','466180576357908480 gave 2 crystals to 224083099246395403.'),(4342,137004645468995585,'2018-07-14 17:58:48','checkin','Checked in for 6 crystals.'),(4343,150649616772235264,'2018-07-14 18:53:20','checkin','Checked in for 8 crystals.'),(4344,460761978135248896,'2018-07-14 19:19:26','checkin','Checked in for 5 crystals.'),(4345,278241670540034048,'2018-07-14 19:27:48','checkin','Checked in for 8 crystals.'),(4346,265610485812953088,'2018-07-14 20:47:36','checkin','Checked in for 9 crystals.'),(4347,457300954660995114,'2018-07-14 21:22:01','transfer','457300954660995114 gave 4 crystals to 118124619117887488.'),(4348,457300954660995114,'2018-07-14 21:25:59','transfer','457300954660995114 gave 4 crystals to 460761978135248896.'),(4349,457300954660995114,'2018-07-15 00:01:32','checkin','Checked in for 7 crystals.'),(4350,465785309821534248,'2018-07-15 00:02:06','checkin','Checked in for 9 crystals.'),(4351,200340393596944384,'2018-07-15 00:02:10','checkin','Checked in for 5 crystals.'),(4352,433759248800022532,'2018-07-15 00:02:13','checkin','Checked in for 7 crystals.'),(4353,454823752925052930,'2018-07-15 00:02:17','checkin','Checked in for 5 crystals.'),(4354,460761978135248896,'2018-07-15 02:02:02','transfer','460761978135248896 gave 3 crystals to 457300954660995114.'),(4355,324727149930086400,'2018-07-15 02:21:30','checkin','Checked in for 7 crystals.'),(4356,201102155896193024,'2018-07-15 02:21:45','checkin','Checked in for 9 crystals.'),(4357,450736651497635850,'2018-07-15 02:29:14','checkin','Checked in for 7 crystals.'),(4358,200340393596944384,'2018-07-15 02:49:16','transfer','200340393596944384 gave 2 crystals to 457300954660995114.'),(4359,200340393596944384,'2018-07-15 02:49:19','transfer','200340393596944384 gave 2 crystals to 460761978135248896.'),(4360,460761978135248896,'2018-07-15 04:23:11','transfer','460761978135248896 gave 3 crystals to 324727149930086400.'),(4361,420988461693009920,'2018-07-15 04:34:38','conversion','Converted to The Religion.'),(4362,457300954660995114,'2018-07-15 05:32:54','transfer','457300954660995114 gave 2 crystals to 460761978135248896.'),(4363,0,'2018-07-15 06:58:11','revive','reviveAll'),(4364,390938926761639936,'2018-07-15 07:03:37','checkin','Checked in for 9 crystals.'),(4365,265907268942299136,'2018-07-15 07:13:33','checkin','Checked in for 4 crystals.'),(4366,357981974931046400,'2018-07-15 07:17:20','checkin','Checked in for 4 crystals.'),(4367,466180576357908480,'2018-07-15 08:04:26','checkin','Checked in for 9 crystals.'),(4368,467413488961060875,'2018-07-15 08:04:31','checkin','Checked in for 4 crystals.'),(4369,466821403027701760,'2018-07-15 08:04:35','checkin','Checked in for 7 crystals.'),(4370,224083099246395403,'2018-07-15 08:04:38','checkin','Checked in for 9 crystals.'),(4371,466180576357908480,'2018-07-15 08:04:54','transfer','466180576357908480 gave 4 crystals to 224083099246395403.'),(4372,334750493085794304,'2018-07-15 08:06:42','checkin','Checked in for 5 crystals.'),(4373,191198987490033664,'2018-07-15 08:26:52','checkin','Checked in for 5 crystals.'),(4374,390618369545601028,'2018-07-15 08:49:35','checkin','Checked in for 5 crystals.'),(4375,185698541052755968,'2018-07-15 08:50:54','checkin','Checked in for 7 crystals.'),(4376,330301910386999297,'2018-07-15 09:19:50','checkin','Checked in for 7 crystals.'),(4377,139861211746402304,'2018-07-15 09:20:21','checkin','Checked in for 6 crystals.'),(4378,130765718525444096,'2018-07-15 09:47:36','checkin','Checked in for 8 crystals.'),(4379,142612779377885185,'2018-07-15 10:04:55','checkin','Checked in for 4 crystals.'),(4380,249261396938850304,'2018-07-15 11:45:18','conversion','Converted to The Religion.'),(4381,249261396938850304,'2018-07-15 11:46:16','checkin','Checked in for 4 crystals.'),(4382,274301199841361920,'2018-07-15 11:51:13','checkin','Checked in for 5 crystals.'),(4383,457289865516548098,'2018-07-15 11:54:04','checkin','Checked in for 6 crystals.'),(4384,467861306465058836,'2018-07-15 12:17:35','conversion','Converted to The Anarchy.'),(4385,467861306465058836,'2018-07-15 12:17:53','checkin','Checked in for 5 crystals.'),(4386,224083099246395403,'2018-07-15 12:18:55','transfer','224083099246395403 gave 1 crystals to 457289865516548098.'),(4387,405868548150394890,'2018-07-15 13:03:58','checkin','Checked in for 9 crystals.'),(4388,325565391478718464,'2018-07-15 13:20:05','checkin','Checked in for 8 crystals.'),(4389,278115594879107074,'2018-07-15 13:20:34','checkin','Checked in for 6 crystals.'),(4390,224083099246395403,'2018-07-15 13:53:29','deposit','Deposited 1 crystals to 454460756520337418.'),(4391,457289865516548098,'2018-07-15 14:04:14','deposit','Deposited 1 crystals to 454460756520337418.'),(4392,459879057295671296,'2018-07-15 14:06:57','checkin','Checked in for 4 crystals.'),(4393,459879057295671296,'2018-07-15 14:07:19','transfer','459879057295671296 gave 1 crystals to 201102155896193024.'),(4394,459876383431327746,'2018-07-15 14:07:47','checkin','Checked in for 6 crystals.'),(4395,459881667104997376,'2018-07-15 14:08:31','checkin','Checked in for 9 crystals.'),(4396,459873273308643328,'2018-07-15 14:09:14','checkin','Checked in for 8 crystals.'),(4397,459873273308643328,'2018-07-15 14:09:26','transfer','459873273308643328 gave 1 crystals to 201102155896193024.'),(4398,459883167160205313,'2018-07-15 14:10:09','checkin','Checked in for 6 crystals.'),(4399,459834182961463299,'2018-07-15 14:11:20','checkin','Checked in for 6 crystals.'),(4400,459884642192064512,'2018-07-15 14:12:33','checkin','Checked in for 5 crystals.'),(4401,201102155896193024,'2018-07-15 14:12:41','transfer','201102155896193024 gave 1 crystals to 459884642192064512.'),(4402,334387347380502529,'2018-07-15 14:27:46','checkin','Checked in for 6 crystals.'),(4403,466180576357908480,'2018-07-15 15:40:25','transfer','466180576357908480 gave 4 crystals to 224083099246395403.'),(4404,466180576357908480,'2018-07-15 15:41:44','transfer','466180576357908480 gave 5 crystals to 224083099246395403.'),(4405,276538857174990858,'2018-07-15 15:56:52','checkin','Checked in for 9 crystals.'),(4406,433759248800022532,'2018-07-15 16:04:18','transfer','433759248800022532 gave 5 crystals to 200340393596944384.'),(4407,433759248800022532,'2018-07-15 16:04:18','transfer','433759248800022532 gave 5 crystals to 200340393596944384.'),(4408,200340393596944384,'2018-07-15 16:04:42','transfer','200340393596944384 gave 5 crystals to 433759248800022532.'),(4409,459883167160205313,'2018-07-15 16:08:49','transfer','459883167160205313 gave 1 crystals to 201102155896193024.'),(4410,201102155896193024,'2018-07-15 16:09:07','transfer','201102155896193024 gave 1 crystals to 459834182961463299.'),(4411,459884642192064512,'2018-07-15 16:09:35','transfer','459884642192064512 gave 2 crystals to 459873273308643328.'),(4412,201102155896193024,'2018-07-15 16:09:46','transfer','201102155896193024 gave 15 crystals to 459873273308643328.'),(4413,459873273308643328,'2018-07-15 16:10:09','transfer','459873273308643328 gave 7 crystals to 459881667104997376.'),(4414,137004645468995585,'2018-07-15 17:20:09','checkin','Checked in for 6 crystals.'),(4415,466995296795230219,'2018-07-15 17:57:30','checkin','Checked in for 5 crystals.'),(4416,411878868274642945,'2018-07-15 18:33:22','checkin','Checked in for 7 crystals.'),(4417,411878868274642945,'2018-07-15 18:34:21','deposit','Deposited 5 crystals to 454460756520337418.'),(4418,224083099246395403,'2018-07-15 18:35:52','deposit','Deposited 1 crystals to 454460756520337418.'),(4419,459657978656718850,'2018-07-15 19:07:16','conversion','Converted to The Anarchy.'),(4420,466180576357908480,'2018-07-15 19:15:51','transfer','466180576357908480 gave 2 crystals to 224083099246395403.'),(4421,391286119884390410,'2018-07-15 19:36:50','conversion','Converted to The Religion.'),(4422,460761978135248896,'2018-07-15 19:55:00','checkin','Checked in for 4 crystals.'),(4423,244191245390315520,'2018-07-15 19:55:47','checkin','Checked in for 7 crystals.'),(4424,265610485812953088,'2018-07-15 21:20:03','checkin','Checked in for 5 crystals.'),(4425,438094660712267778,'2018-07-15 21:48:52','checkin','Checked in for 6 crystals.'),(4426,438094660712267778,'2018-07-15 21:49:16','deposit','Deposited 1 crystals to 454460756520337418.'),(4427,424563962303086594,'2018-07-16 00:04:13','checkin','Checked in for 4 crystals.'),(4428,150768078714568705,'2018-07-16 00:37:52','checkin','Checked in for 6 crystals.'),(4429,200340393596944384,'2018-07-16 00:38:09','checkin','Checked in for 4 crystals.'),(4430,465785309821534248,'2018-07-16 00:38:14','checkin','Checked in for 7 crystals.'),(4431,454823752925052930,'2018-07-16 00:38:16','checkin','Checked in for 4 crystals.'),(4432,433759248800022532,'2018-07-16 00:38:19','checkin','Checked in for 9 crystals.'),(4433,457300954660995114,'2018-07-16 01:20:44','transfer','457300954660995114 gave 4 crystals to 405868548150394890.'),(4434,433759248800022532,'2018-07-16 02:18:24','transfer','433759248800022532 gave 3 crystals to 200340393596944384.'),(4435,457289865516548098,'2018-07-16 02:18:39','checkin','Checked in for 8 crystals.'),(4436,457300954660995114,'2018-07-16 02:22:33','checkin','Checked in for 6 crystals.'),(4437,224083099246395403,'2018-07-16 03:36:08','checkin','Checked in for 6 crystals.'),(4438,466821403027701760,'2018-07-16 03:38:00','checkin','Checked in for 4 crystals.'),(4439,467413488961060875,'2018-07-16 03:38:22','checkin','Checked in for 6 crystals.'),(4440,466180576357908480,'2018-07-16 03:38:46','checkin','Checked in for 4 crystals.'),(4441,466180576357908480,'2018-07-16 03:38:59','transfer','466180576357908480 gave 4 crystals to 224083099246395403.'),(4442,297748308523483138,'2018-07-16 05:06:07','checkin','Checked in for 4 crystals.'),(4443,0,'2018-07-16 06:58:10','revive','reviveAll'),(4444,130765718525444096,'2018-07-16 07:24:19','checkin','Checked in for 7 crystals.'),(4445,457300954660995114,'2018-07-16 07:37:21','transfer','457300954660995114 gave 2 crystals to 460761978135248896.'),(4446,457300954660995114,'2018-07-16 07:37:33','transfer','457300954660995114 gave 2 crystals to 185698541052755968.'),(4447,457300954660995114,'2018-07-16 07:38:05','transfer','457300954660995114 gave 2 crystals to 224083099246395403.'),(4448,224083099246395403,'2018-07-16 07:39:52','transfer','224083099246395403 gave 2 crystals to 185698541052755968.'),(4449,139861211746402304,'2018-07-16 07:43:07','checkin','Checked in for 5 crystals.'),(4450,163655183438446593,'2018-07-16 07:50:03','checkin','Checked in for 5 crystals.'),(4451,325565391478718464,'2018-07-16 07:59:18','checkin','Checked in for 9 crystals.'),(4452,438052138141351936,'2018-07-16 08:00:10','checkin','Checked in for 6 crystals.'),(4453,185698541052755968,'2018-07-16 08:00:14','checkin','Checked in for 9 crystals.'),(4454,357981974931046400,'2018-07-16 08:40:49','checkin','Checked in for 6 crystals.'),(4455,460761978135248896,'2018-07-16 08:46:33','transfer','460761978135248896 gave 3 crystals to 185698541052755968.'),(4456,460761978135248896,'2018-07-16 08:46:46','transfer','460761978135248896 gave 2 crystals to 457300954660995114.'),(4457,274301199841361920,'2018-07-16 08:53:03','checkin','Checked in for 7 crystals.'),(4458,405868548150394890,'2018-07-16 11:07:21','checkin','Checked in for 9 crystals.'),(4459,142612779377885185,'2018-07-16 11:09:48','checkin','Checked in for 4 crystals.'),(4460,191198987490033664,'2018-07-16 11:18:33','checkin','Checked in for 9 crystals.'),(4461,173468649884090368,'2018-07-16 12:00:48','checkin','Checked in for 4 crystals.'),(4462,390618369545601028,'2018-07-16 12:27:24','checkin','Checked in for 6 crystals.'),(4463,218498162745278474,'2018-07-16 12:57:23','checkin','Checked in for 9 crystals.'),(4464,411878868274642945,'2018-07-16 13:33:18','checkin','Checked in for 8 crystals.'),(4465,438094660712267778,'2018-07-16 13:40:38','checkin','Checked in for 8 crystals.'),(4466,438094660712267778,'2018-07-16 13:41:00','deposit','Deposited 2 crystals to 454460756520337418.'),(4467,150649616772235264,'2018-07-16 14:27:11','checkin','Checked in for 5 crystals.'),(4468,455451366626951168,'2018-07-16 14:28:31','checkin','Checked in for 4 crystals.'),(4469,455451366626951168,'2018-07-16 14:28:52','transfer','455451366626951168 gave 4 crystals to 150649616772235264.'),(4470,201102155896193024,'2018-07-16 15:11:38','checkin','Checked in for 8 crystals.'),(4471,388505302292627456,'2018-07-16 15:25:45','checkin','Checked in for 5 crystals.'),(4472,383328874169237506,'2018-07-16 15:30:19','checkin','Checked in for 4 crystals.'),(4473,304814266144260097,'2018-07-16 16:07:00','conversion','Converted to The Anarchy.'),(4474,304814266144260097,'2018-07-16 16:13:52','checkin','Checked in for 4 crystals.'),(4475,450736651497635850,'2018-07-16 16:32:02','checkin','Checked in for 6 crystals.'),(4476,454823752925052930,'2018-07-16 17:07:27','transfer','454823752925052930 gave 5 crystals to 218498162745278474.'),(4477,200340393596944384,'2018-07-16 17:31:49','transfer','200340393596944384 gave 1 crystals to 383328874169237506.'),(4478,460761978135248896,'2018-07-16 18:44:22','checkin','Checked in for 8 crystals.'),(4479,391286119884390410,'2018-07-16 20:14:38','checkin','Checked in for 6 crystals.'),(4480,257137018897694721,'2018-07-16 20:23:52','checkin','Checked in for 7 crystals.'),(4481,118124619117887488,'2018-07-16 20:32:13','checkin','Checked in for 4 crystals.'),(4482,315219062546497547,'2018-07-16 20:32:44','checkin','Checked in for 9 crystals.'),(4483,262771588946984963,'2018-07-16 21:08:38','checkin','Checked in for 5 crystals.'),(4484,390938926761639936,'2018-07-16 22:20:25','checkin','Checked in for 5 crystals.'),(4485,137004645468995585,'2018-07-16 22:34:26','checkin','Checked in for 8 crystals.'),(4486,196081395494289408,'2018-07-17 00:32:21','checkin','Checked in for 6 crystals.'),(4487,457289865516548098,'2018-07-17 00:33:10','checkin','Checked in for 4 crystals.'),(4488,465785309821534248,'2018-07-17 00:33:15','checkin','Checked in for 5 crystals.'),(4489,433759248800022532,'2018-07-17 00:33:18','checkin','Checked in for 6 crystals.'),(4490,454823752925052930,'2018-07-17 00:33:21','checkin','Checked in for 8 crystals.'),(4491,200340393596944384,'2018-07-17 00:33:26','checkin','Checked in for 4 crystals.'),(4492,457300954660995114,'2018-07-17 00:42:08','checkin','Checked in for 7 crystals.'),(4493,185698541052755968,'2018-07-17 00:53:17','checkin','Checked in for 4 crystals.'),(4494,276538857174990858,'2018-07-17 01:16:51','checkin','Checked in for 9 crystals.'),(4495,200340393596944384,'2018-07-17 01:17:16','transfer','200340393596944384 gave 4 crystals to 457289865516548098.'),(4496,439250333177348107,'2018-07-17 01:37:54','conversion','Converted to The Anarchy.'),(4497,201102155896193024,'2018-07-17 01:44:17','checkin','Checked in for 5 crystals.'),(4498,439250333177348107,'2018-07-17 01:55:01','checkin','Checked in for 6 crystals.'),(4499,438094660712267778,'2018-07-17 02:10:59','checkin','Checked in for 4 crystals.'),(4500,265610485812953088,'2018-07-17 02:47:43','checkin','Checked in for 7 crystals.'),(4501,150649616772235264,'2018-07-17 03:24:20','checkin','Checked in for 4 crystals.'),(4502,200340393596944384,'2018-07-17 03:39:23','transfer','200340393596944384 gave 2 crystals to 185698541052755968.'),(4503,202539587342434305,'2018-07-17 04:05:03','conversion','Converted to The Anarchy.'),(4504,202539587342434305,'2018-07-17 04:05:39','checkin','Checked in for 7 crystals.'),(4505,111973500121579520,'2018-07-17 05:01:14','checkin','Checked in for 7 crystals.'),(4506,139861211746402304,'2018-07-17 05:23:31','checkin','Checked in for 8 crystals.'),(4507,200340393596944384,'2018-07-17 05:49:59','transfer','200340393596944384 gave 1 crystals to 460761978135248896.'),(4508,429615167492325376,'2018-07-17 05:56:32','checkin','Checked in for 8 crystals.'),(4509,460761978135248896,'2018-07-17 06:35:12','transfer','460761978135248896 gave 2 crystals to 429615167492325376.'),(4510,0,'2018-07-17 06:58:08','revive','reviveAll'),(4511,163655183438446593,'2018-07-17 07:20:40','checkin','Checked in for 7 crystals.'),(4512,191198987490033664,'2018-07-17 07:53:00','checkin','Checked in for 9 crystals.'),(4513,357981974931046400,'2018-07-17 08:08:13','checkin','Checked in for 8 crystals.'),(4514,325565391478718464,'2018-07-17 09:01:14','checkin','Checked in for 4 crystals.'),(4515,224083099246395403,'2018-07-17 09:18:42','checkin','Checked in for 8 crystals.'),(4516,274301199841361920,'2018-07-17 09:22:41','checkin','Checked in for 8 crystals.'),(4517,466821403027701760,'2018-07-17 09:48:07','checkin','Checked in for 7 crystals.'),(4518,467413488961060875,'2018-07-17 09:48:17','checkin','Checked in for 7 crystals.'),(4519,466180576357908480,'2018-07-17 09:48:32','checkin','Checked in for 6 crystals.'),(4520,466180576357908480,'2018-07-17 09:48:48','transfer','466180576357908480 gave 6 crystals to 224083099246395403.'),(4521,224083099246395403,'2018-07-17 09:57:49','transfer','224083099246395403 gave 100 crystals to 466180576357908480.'),(4522,173468649884090368,'2018-07-17 11:16:18','transfer','173468649884090368 gave 12 crystals to 118124619117887488.'),(4523,391286119884390410,'2018-07-17 12:15:09','checkin','Checked in for 4 crystals.'),(4524,150768078714568705,'2018-07-17 13:51:41','checkin','Checked in for 7 crystals.'),(4525,283395529449406464,'2018-07-17 14:04:54','checkin','Checked in for 6 crystals.'),(4526,383328874169237506,'2018-07-17 16:06:59','checkin','Checked in for 4 crystals.'),(4527,459879057295671296,'2018-07-17 16:12:49','checkin','Checked in for 4 crystals.'),(4528,459879057295671296,'2018-07-17 16:13:20','transfer','459879057295671296 gave 1 crystals to 201102155896193024.'),(4529,459876383431327746,'2018-07-17 16:13:53','checkin','Checked in for 6 crystals.'),(4530,459881667104997376,'2018-07-17 16:14:28','checkin','Checked in for 8 crystals.'),(4531,459873273308643328,'2018-07-17 16:15:06','checkin','Checked in for 5 crystals.'),(4532,201102155896193024,'2018-07-17 16:15:14','transfer','201102155896193024 gave 1 crystals to 459873273308643328.'),(4533,459884642192064512,'2018-07-17 16:15:59','checkin','Checked in for 8 crystals.'),(4534,459884642192064512,'2018-07-17 16:16:09','transfer','459884642192064512 gave 2 crystals to 201102155896193024.'),(4535,459883167160205313,'2018-07-17 16:16:57','checkin','Checked in for 9 crystals.'),(4536,200340393596944384,'2018-07-17 16:18:21','transfer','200340393596944384 gave 2 crystals to 325565391478718464.'),(4537,201102155896193024,'2018-07-17 16:18:25','transfer','201102155896193024 gave 3 crystals to 459873273308643328.'),(4538,137004645468995585,'2018-07-17 16:35:49','checkin','Checked in for 4 crystals.'),(4539,390618369545601028,'2018-07-17 18:09:38','checkin','Checked in for 7 crystals.'),(4540,460761978135248896,'2018-07-17 19:04:53','checkin','Checked in for 9 crystals.'),(4541,218498162745278474,'2018-07-17 19:05:46','checkin','Checked in for 9 crystals.'),(4542,150649616772235260,'2018-07-17 20:15:27','checkin','Checked in for 10 crystals.'),(4543,390938926761639936,'2018-07-17 20:18:06','checkin','Checked in for 10 crystals.'),(4544,455451366626951168,'2018-07-17 20:29:48','checkin','Checked in for 100000 crystals.'),(4545,265907268942299136,'2018-07-17 21:54:31','checkin','Checked in for 8 crystals.'),(4546,140195026528370688,'2018-07-17 21:58:33','checkin','Checked in for 7 crystals.'),(4547,459834182961463299,'2018-07-17 22:03:28','checkin','Checked in for 9 crystals.'),(4548,467861306465058836,'2018-07-17 23:55:57','checkin','Checked in for 9 crystals.'),(4549,467861306465058836,'2018-07-17 23:56:06','deposit','Deposited 11 crystals to 454460756520337418.'),(4550,457300954660995114,'2018-07-18 00:08:30','checkin','Checked in for 7 crystals.'),(4551,283395529449406464,'2018-07-18 00:10:22','checkin','Checked in for 5 crystals.'),(4552,137004645468995585,'2018-07-18 00:45:53','checkin','Checked in for 5 crystals.'),(4553,265610485812953088,'2018-07-18 00:52:02','checkin','Checked in for 5 crystals.'),(4554,460761978135248896,'2018-07-18 01:18:05','transfer','460761978135248896 gave 2 crystals to 185698541052755968.'),(4555,457300954660995114,'2018-07-18 01:18:22','transfer','457300954660995114 gave 2 crystals to 185698541052755968.'),(4556,276538857174990858,'2018-07-18 02:42:50','checkin','Checked in for 4 crystals.'),(4557,390618369545601028,'2018-07-18 02:50:14','checkin','Checked in for 8 crystals.'),(4558,306381311923453953,'2018-07-18 02:52:08','checkin','Checked in for 4 crystals.'),(4559,163770616581718017,'2018-08-19 01:58:18','checkin','Checked in for crystals.'),(4560,200340393596944384,'2018-08-19 02:25:33','checkin','Checked in for crystals.'); -/*!40000 ALTER TABLE `userLog` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `users` --- - -DROP TABLE IF EXISTS `users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `users` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `discordUserID` bigint(20) DEFAULT NULL, - `timeJoined` timestamp NULL DEFAULT CURRENT_TIMESTAMP, - `wallet` int(11) DEFAULT NULL, - `speed` smallint(6) NOT NULL DEFAULT '10', - `health` smallint(6) NOT NULL DEFAULT '100', - `maxHealth` smallint(6) NOT NULL DEFAULT '100', - `strength` smallint(6) NOT NULL DEFAULT '10', - `stamina` int(11) NOT NULL DEFAULT '5', - `maxStamina` int(11) NOT NULL DEFAULT '5', - `xp` int(11) NOT NULL DEFAULT '0', - `lvl` int(11) NOT NULL DEFAULT '0', - `statPoints` int(11) NOT NULL DEFAULT '0', - `chests` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=222 DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `users` --- - -LOCK TABLES `users` WRITE; -/*!40000 ALTER TABLE `users` DISABLE KEYS */; -INSERT INTO `users` VALUES (3,163770616581718017,'2018-06-15 23:55:29',9600,10,150,150,11,10,10,105,12,3,0),(4,123,'2018-06-16 00:22:32',6,10,100,100,10,5,5,0,0,0,0),(5,211232684209340426,'2018-06-22 21:30:22',185,18,150,150,20,10,10,553,28,0,0),(6,265907268942299136,'2018-06-22 21:30:55',67,14,100,100,15,6,6,81,10,0,0),(7,459834182961463299,'2018-06-22 21:36:43',0,14,110,110,12,7,7,64,9,0,0),(8,274301199841361920,'2018-06-22 21:36:43',479,20,180,180,20,7,7,633,30,0,1),(9,218498162745278474,'2018-06-22 21:36:43',342,16,130,130,20,7,7,335,21,0,0),(10,316519190456565771,'2018-06-22 21:36:43',10,10,100,100,10,5,5,0,0,0,0),(11,229524509047128074,'2018-06-22 21:36:43',8,10,100,100,10,5,5,0,0,0,0),(12,201102155896193024,'2018-06-22 21:36:43',0,12,0,140,26,6,6,384,23,0,0),(13,168775748495212545,'2018-06-22 21:47:52',13,11,100,100,11,5,5,4,2,0,0),(14,200340393596944384,'2018-06-22 21:47:55',1096,21,88,180,18,8,8,646,30,0,13),(15,282656257716912139,'2018-06-22 21:48:19',24,10,100,100,10,5,5,0,0,0,0),(16,280136086296985600,'2018-06-22 21:48:33',0,10,100,100,10,5,5,0,0,0,0),(17,359521958519504926,'2018-06-22 21:48:40',25,11,110,110,12,6,6,20,5,0,0),(18,412026575203205122,'2018-06-22 21:50:47',8,10,100,100,10,5,5,0,0,0,0),(19,433759248800022532,'2018-06-22 21:53:13',111,19,0,210,16,8,8,603,29,0,0),(20,262771588946984963,'2018-06-22 21:53:13',19,16,150,150,21,8,8,447,25,0,0),(21,457300954660995114,'2018-06-22 22:29:32',325,16,130,200,20,9,9,637,30,0,15),(22,204933415252787202,'2018-06-22 22:42:26',28,10,110,110,11,6,6,45,8,5,0),(23,286105785052954626,'2018-06-22 22:49:39',87,10,120,120,18,7,7,106,12,0,0),(25,177620785676943360,'2018-06-23 00:05:20',0,10,100,100,10,5,5,0,0,0,0),(26,297748308523483138,'2018-06-23 00:05:41',140,10,160,160,13,10,10,149,14,0,0),(27,402502051478896651,'2018-06-23 00:07:05',2,10,100,100,10,5,5,0,0,0,0),(28,459873273308643328,'2018-06-23 00:17:05',0,10,120,120,20,7,7,149,14,0,0),(29,459876383431327746,'2018-06-23 00:25:56',2,12,140,140,18,5,5,153,14,0,0),(30,459879057295671296,'2018-06-23 00:37:26',0,13,130,130,17,6,6,137,14,0,0),(31,459881667104997376,'2018-06-23 00:45:03',0,13,140,140,16,5,5,134,13,0,0),(32,459883167160205313,'2018-06-23 00:50:44',3,12,0,130,18,6,6,146,14,0,0),(33,459884642192064512,'2018-06-23 01:01:07',0,11,110,110,18,6,6,95,11,0,0),(34,131968711312539648,'2018-06-23 01:27:01',23,14,100,100,15,5,5,69,9,0,0),(35,249535509280456705,'2018-06-23 02:03:17',1,10,100,100,10,5,5,0,0,0,0),(36,222309309235724289,'2018-06-23 02:03:53',20,10,100,100,10,5,5,0,0,0,0),(37,185698541052755968,'2018-06-23 16:24:49',295,20,0,200,11,10,10,474,26,0,0),(38,424563962303086594,'2018-06-23 18:21:49',70,13,120,120,13,9,9,120,13,1,0),(39,334750493085794304,'2018-06-24 03:37:02',129,12,130,130,12,9,9,93,11,0,0),(40,236304169533833216,'2018-06-24 03:39:25',0,10,100,100,10,5,5,11,3,3,0),(41,390618369545601028,'2018-06-24 05:01:05',84,15,140,140,19,6,6,259,19,0,0),(42,388505302292627456,'2018-06-24 05:16:38',199,13,150,150,13,8,8,151,14,0,0),(43,352537678538866688,'2018-06-24 05:36:21',10,10,100,100,10,5,5,0,0,0,0),(44,148942504077557760,'2018-06-24 05:39:14',0,10,140,140,11,6,6,25,6,0,0),(45,244472475662942216,'2018-06-24 06:11:19',4,10,100,100,10,5,5,0,0,0,0),(46,117627480591958025,'2018-06-24 06:12:33',9,10,100,100,10,5,5,0,0,0,0),(47,278947007035604993,'2018-06-24 06:19:52',0,10,100,100,10,5,5,0,0,0,0),(48,205371990800990208,'2018-06-24 12:11:57',0,10,100,100,10,5,5,0,0,0,0),(49,142612779377885185,'2018-06-24 19:53:45',28,11,110,110,17,8,8,100,12,0,0),(50,284154357883338752,'2018-06-25 00:16:28',0,10,100,100,10,5,5,0,0,0,0),(51,460761978135248896,'2018-06-25 11:26:45',284,16,116,200,20,9,9,627,30,0,13),(52,115285522863226888,'2018-06-25 12:01:13',1,10,100,100,10,5,5,0,0,0,0),(53,443150342725566484,'2018-06-25 16:56:12',10,10,100,100,10,5,5,16,1,1,0),(54,429615167492325376,'2018-06-26 04:17:04',73,13,120,120,13,8,8,94,11,0,0),(55,220272827327053824,'2018-06-26 04:46:24',31,10,100,100,10,5,5,3,2,2,0),(56,438094660712267778,'2018-06-26 05:29:43',139,15,150,150,16,8,8,278,19,0,0),(57,461290244520673280,'2018-06-26 22:06:41',1,10,100,100,10,5,5,0,0,0,0),(60,454823752925052930,'2018-06-27 01:00:57',19,18,86,190,18,8,8,550,28,0,0),(61,218458041790496768,'2018-06-27 20:39:06',49,11,130,130,12,7,7,49,8,0,0),(62,461792445668261888,'2018-06-28 07:17:50',1,10,100,100,10,5,5,0,0,0,0),(63,329153903557869569,'2018-06-28 14:59:25',12,10,100,100,10,5,5,20,1,1,0),(64,283395529449406464,'2018-06-28 18:54:29',30,10,100,100,20,5,5,75,10,0,0),(65,124137587773276160,'2018-06-28 18:59:48',11,10,110,110,11,5,5,5,2,0,0),(66,293160157989568513,'2018-06-28 19:45:46',0,10,100,100,10,5,5,0,0,0,0),(67,124512152466882560,'2018-06-28 19:53:58',13,10,100,100,10,5,5,11,0,0,0),(68,163347196278734848,'2018-06-28 20:05:20',0,10,100,100,10,5,5,0,0,0,0),(69,325565391478718464,'2018-06-28 20:16:13',153,10,110,110,28,7,7,322,21,0,0),(70,97466512444493824,'2018-06-28 20:36:42',0,10,100,100,10,5,5,0,0,0,0),(71,283671323639676929,'2018-06-28 20:37:20',10,10,100,100,10,5,5,1,0,0,0),(72,461859170258255902,'2018-06-28 22:41:50',6,10,100,100,10,5,5,1,1,1,0),(73,438548294223003650,'2018-06-28 23:26:04',5,10,100,100,10,5,5,0,0,0,0),(74,306381311923453953,'2018-06-28 23:32:56',63,15,130,130,12,8,8,122,13,0,0),(75,300231408675323906,'2018-06-29 10:00:58',0,10,100,100,10,5,5,0,0,0,0),(76,259442979599679492,'2018-06-29 17:11:21',0,10,100,100,10,5,5,0,0,0,0),(77,278115594879107074,'2018-06-29 17:36:56',97,16,100,100,14,7,7,113,12,0,0),(78,137004645468995585,'2018-06-29 18:03:33',72,10,100,100,11,5,5,12,3,2,0),(79,393415098766458892,'2018-06-29 21:11:58',5,12,120,120,11,7,7,39,7,0,0),(80,389482225600561184,'2018-06-29 21:23:42',7,10,100,100,10,5,5,1,1,1,0),(81,324727149930086400,'2018-06-29 21:25:06',29,13,110,110,11,6,6,29,6,0,0),(82,405420172736987146,'2018-06-29 21:25:07',0,10,100,100,10,5,5,1,0,0,0),(83,193176558784086016,'2018-06-29 21:26:28',5,10,100,100,10,5,5,1,0,0,0),(84,286176706933293057,'2018-06-29 21:27:40',0,10,100,100,10,5,5,0,0,0,0),(85,294927961310625793,'2018-06-29 21:27:50',22,11,100,100,20,10,10,186,16,0,0),(86,272423601922375680,'2018-06-29 21:48:33',20,10,130,130,12,6,6,27,6,0,0),(87,337931581740285963,'2018-06-29 21:49:42',0,10,100,100,10,5,5,1,0,0,0),(88,150649616772235264,'2018-06-29 22:23:08',116,20,89,140,19,6,6,407,24,0,0),(89,150768078714568705,'2018-06-29 22:34:19',33,14,100,100,11,6,6,33,6,0,0),(90,411878868274642945,'2018-06-29 23:03:45',29,10,100,100,12,7,7,15,4,0,0),(91,130765718525444096,'2018-06-29 23:15:38',102,11,130,130,11,6,6,45,6,0,0),(92,285930195125403650,'2018-06-29 23:48:58',66,11,130,130,15,7,7,90,11,0,0),(93,354514063763701760,'2018-06-30 00:02:29',0,10,100,100,10,5,5,0,0,0,0),(94,309558039881580545,'2018-06-30 00:08:58',0,10,100,100,10,5,5,0,0,0,0),(95,462410163643613184,'2018-06-30 00:12:33',0,10,100,100,10,5,5,0,0,0,0),(96,166026007499767809,'2018-06-30 00:15:34',0,10,100,100,10,5,5,0,0,0,0),(97,195790975115722753,'2018-06-30 00:39:13',4,10,100,100,10,5,5,1,0,0,0),(98,275371162983464960,'2018-06-30 00:58:32',8,10,100,100,10,5,5,1,0,0,0),(99,223534281908027392,'2018-06-30 01:29:31',0,10,100,100,10,5,5,0,0,0,0),(100,173595886897725440,'2018-06-30 02:21:35',1,10,100,100,10,6,6,1,1,0,0),(101,246788321404125185,'2018-06-30 02:24:42',0,11,130,130,11,8,8,53,8,0,0),(102,381978984566489100,'2018-06-30 02:31:36',70,10,120,120,11,5,5,16,4,1,0),(103,220455346345345024,'2018-06-30 02:41:24',0,10,100,100,10,5,5,0,0,0,0),(104,400022926348386315,'2018-06-30 03:33:53',25,10,110,110,14,9,9,61,9,0,0),(105,455898887929200640,'2018-06-30 04:24:52',19,10,100,100,10,5,5,3,0,0,0),(106,335348144428810251,'2018-06-30 05:23:03',3,10,100,100,10,5,5,3,2,2,0),(107,406863421183885312,'2018-06-30 07:51:26',0,10,100,100,10,5,5,0,0,0,0),(108,410462121063874561,'2018-06-30 09:01:30',16,12,110,110,11,5,5,29,6,2,0),(109,224083099246395403,'2018-06-30 19:22:03',16,10,100,100,31,5,5,321,21,0,0),(110,241402782282678272,'2018-06-30 20:21:24',4,10,100,100,10,5,5,1,0,0,0),(111,313683772081963010,'2018-06-30 20:29:53',0,10,100,100,10,5,5,0,0,0,0),(112,196372356514447360,'2018-06-30 21:05:34',11,11,100,100,15,5,5,30,6,0,0),(113,411929809753604107,'2018-06-30 21:14:34',0,10,100,100,10,5,5,0,0,0,0),(114,461430125322567701,'2018-06-30 22:42:15',168,10,100,100,10,5,5,0,0,0,0),(115,290020823643717632,'2018-07-01 19:32:30',9,10,100,100,10,5,5,1,1,1,0),(116,205006241808777216,'2018-07-01 22:45:26',12,11,120,120,12,5,5,18,5,0,0),(117,370495051815714816,'2018-07-02 00:04:22',56,10,110,110,15,10,10,86,11,0,0),(118,357981974931046400,'2018-07-02 11:31:38',609,22,100,100,25,7,7,659,30,1,0),(119,419738931731365888,'2018-07-03 10:22:46',6,10,100,100,10,5,5,1,0,0,0),(120,276538857174990858,'2018-07-03 21:10:31',84,10,110,110,15,7,7,51,8,0,0),(121,217208462889844736,'2018-07-04 14:24:34',7,10,100,100,10,6,6,2,1,0,0),(122,457289865516548098,'2018-07-04 17:29:02',94,11,120,120,13,8,8,59,9,0,0),(123,294657701617598464,'2018-07-05 19:38:32',8,11,100,100,12,5,5,9,3,0,0),(124,336190417454235658,'2018-07-05 19:44:26',0,10,100,100,10,5,5,0,0,0,0),(125,331884269159055370,'2018-07-05 19:47:20',7,10,100,100,10,5,5,1,0,0,0),(126,328320677058707456,'2018-07-05 19:47:27',16,11,100,100,11,5,5,5,2,0,0),(127,278241670540034048,'2018-07-05 20:01:56',53,10,110,110,16,6,6,53,8,0,0),(128,401776435997704193,'2018-07-05 20:05:49',6,10,110,110,10,5,5,3,1,0,0),(129,140195026528370688,'2018-07-05 20:09:09',9,10,100,100,10,5,5,4,1,1,0),(130,173468649884090368,'2018-07-05 20:13:55',160,10,260,260,15,5,5,313,21,0,0),(131,257149205850750976,'2018-07-05 20:15:38',6,10,100,100,11,5,5,1,1,0,0),(132,450736651497635850,'2018-07-05 20:32:16',37,11,110,110,11,6,6,15,4,0,0),(133,464528929965735936,'2018-07-05 20:34:00',0,10,100,100,10,5,5,0,0,0,0),(134,191198987490033664,'2018-07-05 20:37:12',93,12,110,110,16,5,5,60,9,0,0),(135,118124619117887488,'2018-07-05 20:39:36',8,12,160,160,20,6,6,252,19,0,0),(136,383328874169237506,'2018-07-05 20:45:26',30,10,0,120,14,5,5,25,6,0,0),(137,315219062546497547,'2018-07-05 20:49:54',16,10,100,100,10,5,5,8,1,1,0),(138,334387347380502529,'2018-07-05 20:51:29',19,10,110,110,11,5,5,5,2,0,0),(139,231539559454867467,'2018-07-05 20:51:52',6,10,100,100,11,5,5,4,1,0,0),(140,139861211746402304,'2018-07-05 20:55:35',16,11,120,120,12,6,6,26,6,0,0),(141,368439592443183153,'2018-07-05 20:59:16',6,10,100,100,10,5,5,1,1,1,0),(142,280477072713842688,'2018-07-05 21:01:06',32,10,110,110,11,6,6,10,3,0,0),(143,377125578005807115,'2018-07-05 21:35:22',13,10,100,100,10,5,5,2,1,1,0),(144,431917608451964942,'2018-07-05 21:43:54',0,10,100,100,10,5,5,0,0,0,0),(145,397417104292446240,'2018-07-05 21:56:17',2,11,100,100,10,5,5,7,1,0,0),(146,254438147897819136,'2018-07-05 22:07:59',0,10,100,100,10,5,5,0,0,0,0),(147,390938926761639936,'2018-07-05 22:31:20',183,11,150,150,20,5,5,182,16,0,0),(148,419553745236393995,'2018-07-05 22:39:27',2,12,100,100,10,5,5,3,2,0,0),(149,263928114646745088,'2018-07-05 23:00:55',0,10,100,100,10,5,5,0,0,0,0),(150,162544056059035648,'2018-07-05 23:05:17',9,10,110,110,11,5,5,12,2,0,0),(151,364444724834074625,'2018-07-05 23:33:23',12,10,100,100,11,5,5,4,2,1,0),(152,242742754331983873,'2018-07-05 23:36:14',0,10,100,100,10,5,5,0,0,0,0),(153,306542748113043456,'2018-07-06 00:35:57',19,10,100,100,10,5,5,3,1,1,0),(154,196081395494289408,'2018-07-06 02:11:35',10,11,110,110,12,5,5,13,4,0,0),(155,142491890271518720,'2018-07-06 02:29:29',10,10,120,120,10,6,6,11,3,0,0),(156,269123062270656512,'2018-07-06 02:47:39',1,10,100,100,10,5,5,2,1,1,0),(157,265610485812953088,'2018-07-06 03:16:14',50,11,100,100,15,6,6,43,7,0,0),(158,295691934759125003,'2018-07-06 04:05:06',0,10,100,100,11,5,5,1,1,0,0),(159,339169842781487106,'2018-07-06 05:23:44',31,10,100,100,12,5,5,6,2,0,0),(160,234207051398512640,'2018-07-06 05:56:22',0,10,100,100,10,5,5,0,0,0,0),(161,238795465158557697,'2018-07-06 06:10:05',1,10,100,100,10,5,5,2,1,1,0),(162,250455372421267457,'2018-07-06 06:35:01',0,10,110,110,10,5,5,1,1,0,0),(163,284715360932986880,'2018-07-06 07:52:12',0,10,100,100,10,5,5,0,0,0,0),(164,318931418204078081,'2018-07-06 08:52:18',0,10,100,100,10,5,5,0,0,0,0),(165,464723134105255943,'2018-07-06 09:24:41',11,12,110,110,13,7,7,50,8,0,0),(166,326453631870173187,'2018-07-06 09:26:16',0,10,100,100,10,5,5,0,0,0,0),(167,330301910386999297,'2018-07-06 10:30:08',67,12,110,110,11,5,5,18,4,0,0),(168,280445248789020672,'2018-07-06 10:32:32',30,10,100,100,12,6,6,10,3,0,0),(169,399953503008718859,'2018-07-06 11:41:32',14,10,110,110,11,6,6,8,3,0,0),(170,257137018897694721,'2018-07-06 13:22:46',47,11,130,130,14,5,5,49,8,0,0),(171,163655183438446593,'2018-07-06 13:30:22',137,17,0,130,13,6,6,154,14,0,0),(172,254670017201700866,'2018-07-06 15:06:52',0,10,100,100,10,5,5,0,0,0,0),(173,194229124980670464,'2018-07-06 15:12:23',0,10,100,100,10,5,5,0,0,0,0),(174,352512598639509505,'2018-07-06 15:24:21',0,10,100,100,10,5,5,0,0,0,0),(175,246712838603800577,'2018-07-06 15:46:54',19,10,150,150,11,5,5,27,6,0,0),(176,455451366626951168,'2018-07-06 16:18:48',0,10,100,100,10,5,5,2,1,1,0),(177,192077723676573696,'2018-07-06 16:27:18',6,10,100,100,14,5,5,15,4,0,0),(178,397375315594444801,'2018-07-06 19:55:33',2,10,100,100,10,5,5,1,0,0,0),(179,386079497645981717,'2018-07-06 20:09:27',4,10,100,100,10,5,5,1,0,0,0),(180,346737511546093568,'2018-07-06 20:54:17',7,10,100,100,10,5,5,1,0,0,0),(181,374708322881765376,'2018-07-06 22:43:38',4,10,100,100,10,5,5,1,0,0,0),(182,177920677909757953,'2018-07-06 23:20:19',13,10,100,100,10,5,5,2,0,0,0),(183,113380972912766976,'2018-07-07 02:57:06',6,10,100,100,11,5,5,1,1,0,0),(184,91918286647750656,'2018-07-07 11:52:17',0,10,100,100,10,5,5,1,1,1,0),(185,410502760962981888,'2018-07-07 12:37:46',0,10,100,100,10,5,5,0,0,0,0),(186,463212636465790998,'2018-07-07 14:04:11',12,10,100,100,11,5,5,3,1,0,0),(187,429787012481024010,'2018-07-07 18:17:44',51,10,120,120,11,6,6,20,4,0,0),(188,438052138141351936,'2018-07-07 21:46:50',41,10,100,100,11,7,7,8,3,0,0),(189,221383251246186496,'2018-07-08 00:45:31',5,10,110,110,10,5,5,1,1,0,0),(190,105809692936126464,'2018-07-08 03:40:20',14,10,100,100,10,5,5,2,0,0,0),(191,398215411998654466,'2018-07-08 04:32:23',16,10,100,100,10,5,5,3,2,2,0),(192,164419318086369280,'2018-07-08 07:46:56',0,10,100,100,10,5,5,1,1,1,0),(193,274619765790867458,'2018-07-08 10:02:02',12,10,100,100,11,5,5,2,1,0,0),(194,334042819335553026,'2018-07-08 14:43:24',5,10,100,100,10,5,5,1,0,0,0),(195,266606663807533056,'2018-07-08 19:40:09',0,10,100,100,10,5,5,0,0,0,0),(196,444556456180842497,'2018-07-08 20:49:18',13,10,100,100,10,5,5,2,1,1,0),(197,244191245390315520,'2018-07-08 20:53:24',14,10,100,100,12,5,5,8,2,0,0),(198,235980232723660800,'2018-07-08 22:25:39',0,10,100,100,10,5,5,0,0,0,0),(199,465785309821534248,'2018-07-10 03:49:12',65,10,120,120,17,6,6,80,10,0,0),(200,466180576357908480,'2018-07-10 10:12:00',300,10,100,100,10,5,5,32,4,4,0),(201,111973500121579520,'2018-07-11 00:04:18',2,11,100,100,11,5,5,6,2,0,0),(202,193156866631663616,'2018-07-11 03:13:55',4,10,100,100,10,5,5,1,0,0,0),(203,175357710252900353,'2018-07-11 03:39:11',8,10,100,100,10,5,5,1,0,0,0),(204,466821403027701760,'2018-07-12 05:18:25',83,10,120,120,20,5,5,105,12,0,0),(205,466996164789796884,'2018-07-12 16:08:26',19,10,110,110,12,5,5,8,3,0,0),(206,466995296795230219,'2018-07-12 16:08:50',6,11,100,100,11,5,5,3,2,0,0),(207,380570161893081089,'2018-07-12 18:51:42',5,10,100,100,10,5,5,1,0,0,0),(208,463937120592199681,'2018-07-13 02:10:36',0,10,100,100,10,5,5,0,0,0,0),(209,434786346033217548,'2018-07-13 15:55:35',9,10,100,100,10,5,5,1,1,1,0),(210,323176514617081857,'2018-07-13 18:46:03',2,10,100,100,11,5,5,1,1,0,0),(211,467413488961060875,'2018-07-13 19:53:37',37,10,100,100,14,6,6,64,9,4,0),(212,405868548150394890,'2018-07-13 20:49:07',2,10,120,120,11,7,7,19,5,0,0),(213,405263704222072832,'2018-07-13 20:53:03',2,10,100,100,10,5,5,6,0,0,0),(214,420988461693009920,'2018-07-15 04:34:38',0,10,100,100,10,5,5,0,0,0,0),(215,249261396938850304,'2018-07-15 11:45:18',4,10,100,100,11,5,5,1,1,0,0),(216,467861306465058836,'2018-07-15 12:17:35',0,10,110,110,10,5,5,2,1,0,0),(217,459657978656718850,'2018-07-15 19:07:16',0,10,100,100,10,5,5,0,0,0,0),(218,391286119884390410,'2018-07-15 19:36:50',4,10,100,100,10,5,5,2,1,1,0),(219,304814266144260097,'2018-07-16 16:07:00',4,10,100,100,10,5,5,1,0,0,0),(220,439250333177348107,'2018-07-17 01:37:54',6,10,100,100,11,5,5,1,1,0,0),(221,202539587342434305,'2018-07-17 04:05:03',1,10,100,100,10,5,5,1,1,1,0); -/*!40000 ALTER TABLE `users` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2018-08-19 16:14:15 diff --git a/PHPBotServer/codex.php b/PHPBotServer/codex.php deleted file mode 100644 index 0a9d0e2..0000000 --- a/PHPBotServer/codex.php +++ /dev/null @@ -1,81 +0,0 @@ - - - - THE CODEX - - - - - - - - - - - - - - - - - - - - - - - 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $discordUserID=stripslashes($a['discordUserID']); - $wallet=stripslashes($a['wallet']); - $speed=stripslashes($a['speed']); - $health=stripslashes($a['health']); - $maxHealth=stripslashes($a['maxHealth']); - $strength=stripslashes($a['strength']); - $maxStamina=stripslashes($a['maxStamina']); - $stamina=stripslashes($a['stamina']); - $lvl=stripslashes($a['lvl']); - ?> - - - - - - - - - - - - -
IDLevelCrystalsSPDSTRSTAMHP
- - - diff --git a/PHPBotServer/database.sql b/PHPBotServer/database.sql deleted file mode 100644 index 47e0da0..0000000 --- a/PHPBotServer/database.sql +++ /dev/null @@ -1,90 +0,0 @@ -CREATE DATABASE discordbot; - -CREATE TABLE discordbot.userLog ( - id int NOT NULL AUTO_INCREMENT PRIMARY KEY, - discordUserID bigint, - actionTime TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP, - actionType varchar(16), - actionData varchar(255) -); - -CREATE TABLE discordbot.users ( - id int NOT NULL AUTO_INCREMENT PRIMARY KEY, - discordUserID bigint, - timeJoined TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP, - wallet int, - speed int NOT NULL DEFAULT 5, - health int NOT NULL DEFAULT 100, - maxHealth int NOT NULL DEFAULT 100, - strength int NOT NULL DEFAULT 5, - stamina int NOT NULL DEFAULT 5, - maxStamina int NOT NULL DEFAULT 5, - xp int NOT NULL DEFAULT 0, - lvl int NOT NULL DEFAULT 0, - statPoints int NOT NULL DEFAULT 0 -); - -CREATE TABLE discordbot.factions ( - id int NOT NULL AUTO_INCREMENT PRIMARY KEY, - discordRoleID bigint, - discordRoleName varchar(16), - account int, - isCurrentVictor bool -); - -CREATE TABLE discordbot.hostiles ( - id int NOT NULL AUTO_INCREMENT PRIMARY KEY, - timeCreated TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP, - hostileName varchar(32), - hostileType varchar(32), - maxHealth int NOT NULL DEFAULT 100, - health varchar(16) NOT NULL DEFAULT 100, - strength int NOT NULL DEFAULT 10, - speed int NOT NULL DEFAULT 10, - stash int NOT NULL DEFAULT 10, - alive bool NOT NULL DEFAULT 0, - fled bool NOT NULL DEFAULT 0, - claimID varchar(4) -); - -CREATE TABLE discordbot.attackLog ( - id int NOT NULL AUTO_INCREMENT PRIMARY KEY, - timeAttacked TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP, - discordUserID bigint, - hostileID varchar(16), - damage int NOT NULL DEFAULT 0 -); - - -CREATE TABLE discordbot.artifacts ( - id int NOT NULL AUTO_INCREMENT PRIMARY KEY, - discordUserID bigint, - scrap int NOT NULL DEFAULT 0, - common int NOT NULL DEFAULT 0, - uncommon int NOT NULL DEFAULT 0, - rare int NOT NULL DEFAULT 0, - ultrarare int NOT NULL DEFAULT 0 -); - -CREATE TABLE discordbot.artifactEvents ( - id int NOT NULL AUTO_INCREMENT PRIMARY KEY, - timeStarted TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP, - eventType varchar(16) NOT NULL DEFAULT "default", - eventLevel int NOT NULL DEFAULT 0 -); - - - -CREATE TABLE discordbot.lootPool ( - id int NOT NULL AUTO_INCREMENT PRIMARY KEY, - created TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP, - name varchar(128) NOT NULL DEFAULT "default", - gearType varchar(16) NOT NULL DEFAULT "weapon", - subType varchar(16) NOT NULL DEFAULT "melee", - baseLvl int NOT NULL DEFAULT 0, - baseAtk int NOT NULL DEFAULT 0, - baseDef int NOT NULL DEFAULT 0, - rarity int NOT NULL DEFAULT 0, - perksAvailable varchar(16) NOT NULL DEFAULT "none", - eventLevel int NOT NULL DEFAULT 0 -); diff --git a/PHPBotServer/functions.php b/PHPBotServer/functions.php deleted file mode 100644 index 3e39464..0000000 --- a/PHPBotServer/functions.php +++ /dev/null @@ -1,197 +0,0 @@ -= 1){ - $lvl = $lvlbase * sqrt($xp);; - } else{ - $lvl = 0; - } - - //Returns level based total # of xp - return $lvl; -} -/* -function getLevel($xp,$lvlbase){ - if($xp >= 1){ - $lvl = log($xp,$lvlbase); - } else{ - $lvl = 0; - } - - //Returns level based total # of xp - return $lvl; -} -*/ - - -function getCurrentLevelProgress($xp,$lvl){ - - $baseLevel = floor($lvl); - $levelDecimal = $lvl - $baseLevel; - - $percentage = $levelDecimal*100; - $fullNumber = 100; - - $actualPercentage = floor(($percentage / 100) * $fullNumber); - - //Returns progress in percentage - return $actualPercentage; -} -/* - - -function getXp($lvl,$lvlbase){ - - $xp = floor(pow($lvlbase,ceil($lvl)) - pow($lvlbase,floor($lvl))); - - //Returns xp needed from start to finish to complete current level - return $xp; -} - -function getAllXp($lvl,$lvlbase){ - - - $xp = pow($lvlbase,floor($lvl)); - //Returns # of xp required to reach current level - return $xp; -} -function getCurrentLevelProgress($xp,$lvl,$lvlbase){ - - $xpInCurrentLevel = getXp($lvl,$lvlbase); - $totalXpRequiredForCurrentLevel = getAllXp($lvl,$lvlbase); - $xpTowardNextLevel = $xp - $totalXpRequiredForCurrentLevel; - - if($xpInCurrentLevel > 0){ - $xpProgress = round(($xpTowardNextLevel / $xpInCurrentLevel)*100,1); - }else{ - $xpProgress = 1; - } - - //Returns progress in percentage - return $xpProgress; -} -*/ - - -function addXp($uid,$xpamount){ - $con = mysqlConnect(); - $q = "UPDATE users SET xp=(xp + $xpamount) WHERE discordUserID = '$uid'"; - $r = mysqli_query($con,$q); -} -function getLevelBase(){ - return 1.2; -} - -function full_url() -{ - $s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" : ""; - $sp = strtolower($_SERVER["SERVER_PROTOCOL"]); - $protocol = substr($sp, 0, strpos($sp, "/")) . $s; - $port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]); - return $protocol . "://" . $_SERVER['SERVER_NAME'] . $port . $_SERVER['REQUEST_URI']; -} -// CLASS FOR CONVERTING TIME TO AGO -class convertToAgo { - - function convert_datetime($str) { - - list($date, $time) = explode(' ', $str); - list($year, $month, $day) = explode('-', $date); - list($hour, $minute, $second) = explode(':', $time); - $timestamp = mktime($hour, $minute, $second, $month, $day, $year); - return $timestamp; - } - - function makeAgo($timestamp){ - - $difference = time() - $timestamp; - $periods = array("second", "minute", "hour", "day", "week", "month", "year", "decade"); - $lengths = array("60","60","24","7","4.35","12","10"); - for($j = 0; $difference >= $lengths[$j]; $j++) - $difference /= $lengths[$j]; - $difference = round($difference); - if($difference != 1) $periods[$j].= "s"; - if ( (($periods[$j] == "minute") or ($periods[$j] == "minutes") && ($difference < 3)) - or (($periods[$j] == "second") or ($periods[$j] == "seconds")) ){ - $text = "Just now"; - } else { - $text = "$difference $periods[$j] ago"; - } - return $text; - } - -} // END CLASS - - -function checkArrayFor($array, $key, $val) { - foreach ($array as $item) - if (isset($item[$key]) && $item[$key] == $val) - return true; - return false; -} - - - -function addhttp($url) { - if ($url != ''){ - if (!preg_match("~^(?:f|ht)tps?://~i", $url)) { - $url = "http://" . $url; - } - } - return $url; -} - - - -function mysqlConnect() { - $dbhost = 'INSERT DB HOST'; - $dbusername = 'INSERT DB USERNAME'; - $dbpassword = 'INSERT DB PASSWORD'; - $dbtable = 'INSERT DB TABLE'; - - $userDB = 'user'; - $userdataDB = 'userdata'; - $memberDB = 'member'; - $memberdataDB = 'memberdata'; - - $con = mysqli_connect($dbhost,$dbusername,$dbpassword,$dbtable); - if (!$con) { die('Could not connect: ' . mysqli_error());} - mysqli_select_db($con, "$dbtable")or die("cannot select DB"); - return $con; -} - -?> diff --git a/PHPBotServer/getData.php b/PHPBotServer/getData.php deleted file mode 100644 index 0d9fe31..0000000 --- a/PHPBotServer/getData.php +++ /dev/null @@ -1,222 +0,0 @@ -= (DATE_SUB(now(), INTERVAL 30 DAY)) AND actionType = 'conversion' AND discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - echo 1; - exit; - } else{ - echo 0; - } -break; - -case "account": - $q = "SELECT wallet FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $account=stripslashes($a['wallet']); - } - echo $account; - exit; - } else{ - echo "{ERROR}"; - } -break; - -case "bank": - $q = "SELECT account FROM factions WHERE discordRoleID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $account=stripslashes($a['account']); - } - echo $account; - exit; - } else{ - echo "{ERROR}"; - } -break; - -case "victors": - $q = "SELECT discordRoleName FROM factions WHERE isCurrentVictor = '1';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $discordRoleName=stripslashes($a['discordRoleName']); - } - echo $discordRoleName; - exit; - } else{ - echo "0"; - } -break; -case "hostileActive": - $q = "SELECT id FROM hostiles WHERE alive = 1 AND health > 0 AND fled = 0;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $hostileID=stripslashes($a['id']); - } - echo $hostileID; - exit; - } else{ - echo "0"; - } -break; -case "lastHostileActive": - $q = "SELECT id FROM hostiles ORDER BY id DESC LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $hostileID=stripslashes($a['id']); - } - echo $hostileID; - exit; - } else{ - echo "0"; - } -break; -case "userStats": - $q = "SELECT strength,speed,stamina,health,maxStamina,maxHealth,wallet,xp,lvl,statPoints,chests FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $strength=stripslashes($a['strength']); - $speed=stripslashes($a['speed']); - $stamina=stripslashes($a['stamina']); - $health=stripslashes($a['health']); - $maxHealth=stripslashes($a['maxHealth']); - $maxStamina=stripslashes($a['maxStamina']); - $wallet=stripslashes($a['wallet']); - $xp=stripslashes($a['xp']); - $recordedLVL=stripslashes($a['lvl']); - $statPoints=stripslashes($a['statPoints']); - $chests=stripslashes($a['chests']); - $lvlbase = getLevelBase(); - $lvl = getLevel($xp,$lvlbase); - $lvlpercent = getCurrentLevelProgress($xp,$lvl); - } - echo $strength.",".$speed.",".$stamina.",".$health.",".$maxStamina.",".$maxHealth.",".$wallet.",".$xp.",".$recordedLVL.",".$lvlpercent.",".$statPoints.",".$chests; - exit; - } else{ - echo "0"; - } -break; - - - -case "artifactsGet": - - $q = "SELECT scrap,common,uncommon,rare,ultrarare FROM artifacts WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - $a = mysqli_fetch_assoc($r2); - $scrapQuantity=stripslashes($a['scrap']); - $commonQuantity=stripslashes($a['common']); - $uncommonQuantity=stripslashes($a['uncommon']); - $rareQuantity=stripslashes($a['rare']); - $ultrarareQuantity=stripslashes($a['ultrarare']); - echo "success,".$ultrarareQuantity.",".$rareQuantity.",".$uncommonQuantity.",".$commonQuantity.",".$scrapQuantity; - } else{ - echo "failure"; - } - -break; - - -} - - - -/* -if ($dataToLoad == "crystals"){ - echo "343 Crystals in the vault!"; -} else{ - echo "No command found."; -} - - -if($featured==1){ - $sqlterms .= "AND userartistinfo.featured = 1 "; -} -if($search !== ''){ - $sqlterms .= "AND (userartistinfo.city LIKE '%".$search."%' OR userartistinfo.state LIKE '%".$search."%' OR userartistinfo.zip LIKE '%".$search."%')"; -} - $q = "SELECT - user.id as artistid, user.slug, user.displayname, user.picurl, - userartistinfo.genre, userartistinfo.views, - userartistinfo.contactemail, userartistinfo.phone, userartistinfo.address, userartistinfo.city, userartistinfo.state, userartistinfo.zip, userartistinfo.website - FROM user, userartistinfo - where user.active = 1 - AND user.id = userartistinfo.id - AND user.type = 'store' - ".$sqlterms." - ORDER BY user.created DESC, views DESC - LIMIT 15"; - - $r2 = mysqli_query($con,$q); - $i=0; - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - - $displayname = stripslashes($a['displayname']); - $picurl = s3url('weedauthority-userimages', stripslashes($a['picurl']) ); - $phone = stripslashes($a['phone']); - $address = stripslashes($a['address'])."
".stripslashes($a['city'])." ".stripslashes($a['state']).", ".stripslashes($a['zip']); - $addressPlainText = stripslashes($a['address'])." ".stripslashes($a['city'])." ".stripslashes($a['state']).", ".stripslashes($a['zip']); - $link = $baseurl."dispensary/".stripslashes($a['slug']); - //$maplink ="https://maps.google.com/maps?q=". urlencode($addressPlainText); - //$maplink = "https://www.google.com/maps/place/".urlencode($addressPlainText)."/"; - $maplink = stripslashes($a['website']); - - $statushtml = "
" . $displayname . "
"; - $statushtml .= "
" . $phone . "
" . $address . "
"; - $statushtml .= ""; - //$statushtml .= ""; - $statushtml .= "

"; - - - $array[$i]=array($statushtml ); - //$array[$i]=array($displayname,$picurl,$phone,$address,$link ); - //echo $title; - $i++; - } - }else{ - $array[0]=array("



- Looks like we can't find any shops matching that criteria.
Try searching again!
"); - //echo json_encode($array); - } - - echo json_encode($array); - -//} - -*/ -if($debug){ - echo "\n"."UID:".$userID; -} - -//mysqli_close($con); - - - ?> diff --git a/PHPBotServer/sendData.php b/PHPBotServer/sendData.php deleted file mode 100644 index 06955d4..0000000 --- a/PHPBotServer/sendData.php +++ /dev/null @@ -1,752 +0,0 @@ - 0 ) { - echo "userAlreadyExists"; - } else{ - $q = "INSERT INTO users (discordUserID,wallet) - SELECT * FROM (SELECT '$userID',0) AS tmp - WHERE NOT EXISTS ( - SELECT discordUserID FROM users WHERE discordUserID = '$userID' - ) LIMIT 1;"; - $r2 = mysqli_query($con,$q); - echo "createdUser"; - } - break; - case "checkin": - $q = "SELECT id,actionTime FROM userLog WHERE actionTime >= CURDATE() AND actionType = 'checkin' AND discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - //already checked in today. - $a = mysqli_fetch_assoc($r2); - $flastupdated=stripslashes($a['actionTime']); - - $timeAgoObject = new convertToAgo; // Create an object for the time conversion functions - // Query your database here and get timestamp - $ts = $flastupdated; - $convertedTime = ($timeAgoObject -> convert_datetime($ts)); // Convert Date Time - $when = ($timeAgoObject -> makeAgo($convertedTime)); // Then convert to ago time - //date("F j, Y, g:i a", strtotime($flastupdated)); - echo $when; - } else{ - //Can check in. - $q = "UPDATE users SET wallet = wallet + $dataToSend WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (" . $userID . ", '" . $dataType . "', 'Checked in for $dataToSend crystals.');"; - $r2 = mysqli_query($con,$q); - echo 1; - exit; - } - break; - - case "deposit": - $q = "SELECT wallet FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $account=stripslashes($a['wallet']); - } - if($account >= $dataToSend && $dataToSend > 0){ - //has enough credits in their account - $q = "UPDATE users SET wallet = wallet - $dataToSend WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "UPDATE factions SET account = account + $dataToSend WHERE discordRoleID = '$dataToSend2' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (" . $userID . ", '" . $dataType . "', 'Deposited $dataToSend crystals to $dataToSend2.');"; - $r2 = mysqli_query($con,$q); - echo 1; - } else{ - echo "{ERROR} - Not enough crystals in your account."; - } - exit; - } else{ - echo "{ERROR} - Cant find wallet. Something went wrong."; - } - break; - - case "gambleWon": - $q = "UPDATE users SET wallet = wallet + $dataToSend WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (" . $userID . ", '" . $dataType . "', 'Gambled and won for $dataToSend crystals.');"; - $r2 = mysqli_query($con,$q); - echo 1; - exit; - - break; - case "gambleLost": - $q = "UPDATE users SET wallet = wallet - $dataToSend WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (" . $userID . ", '" . $dataType . "', 'Gambled and lost for $dataToSend crystals.');"; - $r2 = mysqli_query($con,$q); - echo 1; - exit; - - break; - - case "transfer": - $q = "UPDATE users SET wallet = wallet - $dataToSend2 WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - $q = "UPDATE users SET wallet = wallet + $dataToSend2 WHERE discordUserID = '$dataToSend' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (" . $userID . ", '" . $dataType . "', '$userID gave $dataToSend2 crystals to $dataToSend.');"; - $r2 = mysqli_query($con,$q); - echo 1; - exit; - - break; - - case "attack": - - $q = "UPDATE hostiles SET health = health - $dataToSend WHERE id = '$dataToSend2' LIMIT 1"; - $r2 = mysqli_query($con,$q); - $q = "UPDATE users SET stamina = stamina - 1 WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - //$q = "INSERT INTO userLog (discordUserID, actionType, actionData) - //VALUES (" . $userID . ", '" . $dataType . "', '$userID attacked Ravager#$dataToSend2.');"; - //$r2 = mysqli_query($con,$q); - - $q = "INSERT INTO attackLog (discordUserID, hostileID, damage) - VALUES ('$userID','$dataToSend2','$dataToSend');"; - $r2 = mysqli_query($con,$q); - - $q = "SELECT hostiles.health,hostiles.maxHealth,hostiles.speed,hostiles.strength,users.speed as userspeed,users.health as userhealth FROM hostiles,users WHERE hostiles.id = '$dataToSend2' AND users.discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $hostileHealth=stripslashes($a['health']); - $hostileMaxHealth=stripslashes($a['maxHealth']); - $hostileSpeed=stripslashes($a['speed']); - $hostileStrength=stripslashes($a['strength']); - $userSpeed=stripslashes($a['userspeed']); - $userHealth=stripslashes($a['userhealth']); - } - if($hostileHealth <= 0){ - if($hostileHealth < 0){ $hostileHealth = 0;}; - //returns health less than zero, kill enemy. - $q = "UPDATE hostiles SET alive = 0,health = 0 WHERE id = '$dataToSend2' LIMIT 1"; - $r2 = mysqli_query($con,$q); - } - $criticalHit = 0; - $hitAmount = getEnemyDamage($hostileSpeed,$userSpeed,$hostileStrength); - if($hitAmount > 0){ - if ($hitAmount >= $userHealth){$hitAmount = $userHealth; $criticalHit = 1;}; - $q = "UPDATE users SET health = health - $hitAmount WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - } - echo $hostileHealth.",".$hostileMaxHealth.",".$hitAmount.",".$criticalHit; - exit; - } else{ - echo "0"; - } - - - exit; - - - break; - - case "hostileAttackBack": - - $q = "UPDATE users SET stamina = stamina - 1 WHERE discordUserID = '$userID' AND stamina > 0 LIMIT 1"; - $r2 = mysqli_query($con,$q); - - - $q = "SELECT hostiles.health,hostiles.maxHealth,hostiles.speed,hostiles.strength,users.speed as userspeed,users.health as userhealth FROM hostiles,users WHERE hostiles.id = '$dataToSend2' AND users.discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $hostileHealth=stripslashes($a['health']); - $hostileMaxHealth=stripslashes($a['maxHealth']); - $hostileSpeed=stripslashes($a['speed']); - $hostileStrength=stripslashes($a['strength']); - $userSpeed=stripslashes($a['userspeed']); - $userHealth=stripslashes($a['userhealth']); - } - $criticalHit = 0; - $hitAmount = getEnemyDamage($hostileSpeed,$userSpeed,$hostileStrength); - if($hitAmount > 0){ - if ($hitAmount >= $userHealth){$hitAmount = $userHealth; $criticalHit = 1;}; - $q = "UPDATE users SET health = health - $hitAmount WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - } - echo $hostileHealth.",".$hostileMaxHealth.",".$hitAmount.",".$criticalHit; - exit; - } else{ - echo "0"; - } - - - exit; - - - break; - - case "hostileFlee": - $q = "SELECT id FROM hostiles WHERE alive = 1 ORDER BY id DESC LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $hostileID=stripslashes($a['id']); - } - $q = "UPDATE hostiles SET fled = 1,alive=0 WHERE id = '$hostileID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - echo "fled"; - } else{ - echo "alreadyDead"; - } - break; - - case "newHostile": - $q = "SELECT id FROM hostiles WHERE alive = 1 LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - echo "notCreated"; - } else{ - $elvl = $dataToSend; - $healthBase = 50; $strengthBase = 3; $speedBase = 3; $stashBase = 3; - $healthMin = ($healthBase * $elvl) / 2; $healthMax = $healthBase * $elvl; - $strengthMin = ($strengthBase * $elvl) / 2; $strengthMax = $strengthBase * $elvl; - $speedMin = ($speedBase * $elvl) / 2; $speedMax = $speedBase * $elvl; - $stashMin = ($stashBase * $elvl) / 2; $stashMax = $stashBase * $elvl; - - $health = floor(rand($healthMin,$healthMax)); - $strength = floor(rand($strengthMin,$strengthMax)); - $speed = floor(rand($speedMin,$speedMax)); - $stash = floor(rand($stashMin,$stashMax)); - - $claimID = floor(rand(1000,9999)); - $q = "INSERT INTO hostiles (hostileType, maxHealth, health, strength, speed, stash, alive, claimID) - VALUES ('ravager', '$health', '$health', '$strength', '$speed', '$stash', 1, '$claimID');"; - $r2 = mysqli_query($con,$q); - echo $health.",".$speed.",".$strength.",".$claimID; - } - break; - - - - - case "claim": - $claimAmount = $dataToSend2; - - - $q = "SELECT stash FROM hostiles WHERE alive = 0 AND claimID = '$dataToSend' LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $stash=stripslashes($a['stash']); - } - if($claimAmount <= $stash){ - //take money from the stash - $q = "UPDATE hostiles SET stash = stash - $claimAmount WHERE claimID = '$dataToSend' LIMIT 1"; - $r2 = mysqli_query($con,$q); - $q = "UPDATE users SET wallet = wallet + $claimAmount WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (" . $userID . ", '" . $dataType . "', '$userID claimed $claimAmount crystals from a Ravager.');"; - $r2 = mysqli_query($con,$q); - $stash = $stash - $claimAmount; - if($stash == 0){ - $q = "UPDATE hostiles SET claimID=0 WHERE claimID = '$dataToSend' LIMIT 1"; - $r2 = mysqli_query($con,$q); - } - echo $stash; - }else{ - echo "notEnough"; - } - exit; - } else{ - echo "noClaimID"; - } - - - exit; - - break; - - case "getHostileData": - $q = "SELECT stash,claimID FROM hostiles WHERE alive = 0 AND id = '$dataToSend' LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $stash=stripslashes($a['stash']); - $claimID=stripslashes($a['claimID']); - } - echo $stash.",".$claimID; - } - exit; - - break; - - - - case "getDamageDistribution": - //Gets base stats for enemy - $q = "SELECT stash,maxHealth,fled FROM hostiles WHERE id = '$dataToSend' LIMIT 1;"; - $r2 = mysqli_query($con,$q); - $a = mysqli_fetch_assoc($r2); - $stash=stripslashes($a['stash']); - $maxHealth=stripslashes($a['maxHealth']); - $fled=stripslashes($a['fled']); - $totalCrystalsInStash = 0; - - if($fled == 1){ - echo "fled"; - }else{ - //gets all dammage from users - $damageDistribution = array(); - $q = "SELECT discordUserID,SUM(damage) totalDamage FROM attackLog WHERE hostileID = $dataToSend GROUP BY discordUserID;"; - //$q = "SELECT attackLog.damage,attackLog.discordUserID,hostiles.stash,hostiles.maxHealth FROM attackLog WHERE hostiles.id = attackLog.hostileID AND attackLog.hostileID = '$dataToSend';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $damage=stripslashes($a['totalDamage']); - $discordUserID=stripslashes($a['discordUserID']); - $damagePercent = round(( $damage / $maxHealth ) * 100); - $percentStashAmount = round($stash * ($damagePercent/100)); - $totalCrystalsInStash += $percentStashAmount; - // you can add single array values too - $damageDistribution[] = array('id'=>$discordUserID, 'totalDamage'=>$damage, 'damagePercent'=>$damagePercent, 'crystalsReceived'=>$percentStashAmount); - if($dataToSend2 == 1){ - //Flag to actually distribute crystals - $q2 = "UPDATE users SET wallet = wallet + $percentStashAmount WHERE discordUserID = '$discordUserID' LIMIT 1"; - $r3 = mysqli_query($con,$q2); - } - - } - echo json_encode($damageDistribution); - } else{ - echo 0; - } - exit; - } - - break; - - - case "updateStamina": - $q = "UPDATE users SET stamina = stamina + 1 WHERE stamina < maxStamina;"; - $r2 = mysqli_query($con,$q); - //UPDATE users SET health = min(floor(health + (maxHeath/100)), maxHealth) - $q = "UPDATE users SET health = least(floor(health + (maxHealth/100)), maxHealth) WHERE health < maxHealth AND health > 0;"; - $r2 = mysqli_query($con,$q); - exit; - break; - - - case "reviveAll": - $q = "UPDATE users SET health = 1 WHERE health = 0;"; - $r2 = mysqli_query($con,$q); - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (0,'revive','reviveAll');"; - $r2 = mysqli_query($con,$q); - exit; - break; - - - case "lvlinfo": - $q = "SELECT xp,lvl FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $xp=stripslashes($a['xp']); - $currentlvl=stripslashes($a['lvl']); - $lvlbase=getLevelBase(); - $lvl=getLevel($xp,$lvlbase); - - } - } - //echo "LEVEL: ".getLevel($xp,$lvlbase),"
XP: ".$xp."
CURRENT LEVEL PROGRESS:".getCurrentLevelProgress($xp,$lvl); - echo "LEVEL: ".getLevel($dataToSend,$lvlbase),"
XP: ".$xp."
CURRENT LEVEL PROGRESS:".getCurrentLevelProgress($xp,$lvl); - break; - - case "upgradeStats": - //Changed it to just upgrade 1 point automatically - $dataToSend2 = 1; - $q = "SELECT statPoints FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $statPoints=stripslashes($a['statPoints']); - } - if($dataToSend2 <= $statPoints){ - $tableName = ""; - switch (strtoupper($dataToSend)) { - case "STR": - $tableName = "strength = strength + ".$dataToSend2; - break; - case "HP": - $tableName = "maxHealth = maxHealth + 10"; - break; - case "SPD": - $tableName = "speed = speed + ".$dataToSend2; - break; - case "STAM": - $tableName = "maxStamina = maxStamina + ".$dataToSend2; - break; - } - $q = "UPDATE users SET statPoints = statPoints - $dataToSend2,$tableName WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - echo "success"; - } else{ - echo "notEnoughPoints"; - } - } else{ - echo "failure"; - } - - break; - - - - - case "heal": - $q = "SELECT health,maxHealth,wallet FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $health=stripslashes($a['health']); - $maxHealth=stripslashes($a['maxHealth']); - $crystals=stripslashes($a['wallet']); - } - $treatmentCost = $dataToSend; - $treatmentName = $dataToSend2; - $newHealth = $health; - if($health == $maxHealth){echo "fullHealth";exit;} - - if($health > 0){ - if($crystals >= $treatmentCost){ - switch ($treatmentName) { - case "TREAT": - $newHealth += 15; - break; - case "TREATV2": - $newHealth = $maxHealth*0.15; - break; - case "PATCH": - $newHealth += 50; - break; - case "PATCHV2": - $newHealth = $maxHealth*0.5; - break; - case "REGEN": - $newHealth += 100; - break; - case "REGENV2": - $newHealth = $maxHealth; - break; - default: - echo "cantDoThat";exit; - break; - } - if($newHealth < $health){echo "lessThanYourHealth";exit;} - if($newHealth>$maxHealth){$newHealth = $maxHealth;}; - $q = "UPDATE users SET health = $newHealth,wallet = wallet - $treatmentCost WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - echo "success,".$newHealth."/".$maxHealth; - } else{ - echo "notEnoughCrystals"; - } - } else{ - if($crystals >= $treatmentCost){ - switch ($treatmentName) { - case "REVIVE": - $newHealth = 25; - break; - case "REVIVEV2": - $newHealth = $maxHealth*0.5; - break; - case "REVIVEV3": - $newHealth = $maxHealth; - break; - case "TREAT": - echo "youreKnockedOut";exit; - break; - case "TREATV2": - echo "youreKnockedOut";exit; - break; - case "PATCH": - echo "youreKnockedOut";exit; - break; - case "PATCHV2": - echo "youreKnockedOut";exit; - break; - case "REGEN": - echo "youreKnockedOut";exit; - break; - default: - echo "cantDoThat";exit; - break; - } - if($newHealth < $health){echo "lessThanYourHealth";exit;} - if($newHealth>$maxHealth){$newHealth = $maxHealth;}; - $q = "UPDATE users SET health = $newHealth,wallet = wallet - $treatmentCost WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - echo "success,".$newHealth."/".$maxHealth; - }else{ - echo "notEnoughCrystals"; - } - } - } else{ - echo "failure"; - } - - break; - - - - case "addXP": - addXp($userID,$dataToSend); - break; - - - case "getLevelUp": - //addXp($userID,$dataToSend); - $levelCap = 30;$levelCapXP = 625; - $q = "SELECT xp,lvl,statPoints,chests FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $xp=stripslashes($a['xp']); - $lvl=stripslashes($a['lvl']); - $statPoints=stripslashes($a['statPoints']); - $chests=stripslashes($a['chests']); - } - $lvlbase = getLevelBase(); - $currentLVL = floor(getLevel($xp,$lvlbase)); - if($currentLVL > $lvl){ - if($currentLVL > $levelCap){ - $chests += 1; - $q = "UPDATE users SET lvl = $levelCap,chests = chests + 1,xp = $levelCapXP WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - }else{ - $statPoints += 1; - $q = "UPDATE users SET lvl = lvl + 1,statPoints = statPoints + 1 WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - $lvl = $lvl + 1; - } - echo "levelup,".$lvl.",".$statPoints.",".$statPoints; - } else{ - echo "xpadded,".$currentLVL.",".$statPoints; - } - } - - break; - - - case "scavenge": - $random = floor(rand(0,101)); - $ultrarare = 0;$rare = 0; $uncommon = 0; $common = 0; $scrap = 0; - if($random <= 0.5){ - $ultrarare = 1; - } - if($random <= 3 && $random > 0.5){ - $rare = round(rand(1,2)); - } - if($random <= 10 && $random > 3){ - $uncommon = round(rand(1,3)); - } - if($random <= 50 && $random > 10){ - $common = round(rand(1,3)); - } - if($random > 50){ - $scrap = round(rand(1,7)); - } - - $staminaCost = $dataToSend; - $crystalCost = $dataToSend2; - $q = "UPDATE users SET stamina = stamina - $staminaCost,wallet = wallet - $crystalCost WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - - $q = "SELECT id FROM artifacts WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - - $q = "UPDATE artifacts SET scrap = scrap + $scrap,common = common + $common,uncommon = uncommon + $uncommon,rare = rare + $rare,ultrarare = ultrarare + $ultrarare WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - echo "success,".$ultrarare.",".$rare.",".$uncommon.",".$common.",".$scrap; - } else{ - $q = "INSERT INTO artifacts (discordUserID, scrap, common, uncommon, rare, ultrarare) - VALUES ($userID,$scrap,$common,$uncommon,$rare,$ultrarare);"; - $r2 = mysqli_query($con,$q); - echo "success,".$ultrarare.",".$rare.",".$uncommon.",".$common.",".$scrap; - } - break; - - - - case "artifactSell": - - - $q = "SELECT scrap,common,uncommon,rare,ultrarare FROM artifacts WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - $a = mysqli_fetch_assoc($r2); - $scrapQuantity=stripslashes($a['scrap']); - $commonQuantity=stripslashes($a['common']); - $uncommonQuantity=stripslashes($a['uncommon']); - $rareQuantity=stripslashes($a['rare']); - $ultrarareQuantity=stripslashes($a['ultrarare']); - - $itemToSell = strtolower ($dataToSend); - $price = 0;$totalPayout = 0;$itemQuantity = 0; - - $price = 0.1; - $scrapTotalPayout = round($price * $scrapQuantity); - $price = 2; - $commonTotalPayout = $price * $commonQuantity; - $price = 5; - $uncommonTotalPayout = $price * $uncommonQuantity; - $price = 10; - $rareTotalPayout = $price * $rareQuantity; - $price = 30; - $ultrarareTotalPayout = $price * $ultrarareQuantity; - - $itemQuantity = $scrapQuantity + $commonQuantity + $uncommonQuantity + $rareQuantity + $ultrarareQuantity; - $totalPayout = $scrapTotalPayout + $commonTotalPayout + $uncommonTotalPayout + $rareTotalPayout + $ultrarareTotalPayout; - - if($itemToSell == "all"){ - $q = "UPDATE artifacts SET scrap =0,common = 0,uncommon = 0,rare = 0,ultrarare = 0 WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - $q = "UPDATE users SET wallet = wallet + $totalPayout WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - echo "success,".$itemQuantity.",".$totalPayout; - }else{ - - $crystals = 0; - switch ($itemToSell) { - case "scrap": - $singlePayout = $scrapTotalPayout; - $itemQuantity = $scrapQuantity; - break; - case "common": - $singlePayout = $commonTotalPayout; - $itemQuantity = $commonQuantity; - break; - case "uncommon": - $singlePayout = $uncommonTotalPayout; - $itemQuantity = $uncommonQuantity; - break; - case "rare": - $singlePayout = $rareTotalPayout; - $itemQuantity = $rareQuantity; - break; - case "ultrarare": - $singlePayout = $ultrarareTotalPayout; - $itemQuantity = $ultrarareQuantity; - break; - } - $q = "UPDATE artifacts SET $itemToSell = 0 WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - $q = "UPDATE users SET wallet = wallet + $singlePayout WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - echo "success,".$itemQuantity.",".$singlePayout; - } - }else{ - echo "failure"; - } - break; - - - - case "buyDrink": - $q = "UPDATE users SET wallet = wallet - $dataToSend WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - break; - - - - - -} - -//echo json_encode($array); - - - -if($debug){ - echo "\n"."UID:".$userID; -} - -mysqli_close($con); - - -function getEnemyDamage($hostileSpeed,$userSpeed,$hostileStrength){ - $hitAmount = 0; - $percentage = floor(rand(0,101)); - if($hostileSpeed > $userSpeed){ - if($percentage <= 80 ){ - //80% chance to hit you back. - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } else{ - if($percentage <= 30){ - //30% chance to hit you back. - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } -/* - if($hostileSpeed > $userSpeed){ - if(20 > rand(0,100)){ - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } elseif($hostileSpeed == $userSpeed){ - if(50 >= rand(0,100)){ - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } else{ - if(70 >= rand(0,100)){ - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } - */ - return $hitAmount; -} - - ?> diff --git a/PHPBotServer/sendData2.php b/PHPBotServer/sendData2.php deleted file mode 100644 index aedd133..0000000 --- a/PHPBotServer/sendData2.php +++ /dev/null @@ -1,743 +0,0 @@ - 0 ) { - echo "userAlreadyExists"; - } else{ - $q = "INSERT INTO users (discordUserID,wallet) - SELECT * FROM (SELECT '$userID',0) AS tmp - WHERE NOT EXISTS ( - SELECT discordUserID FROM users WHERE discordUserID = '$userID' - ) LIMIT 1;"; - $r2 = mysqli_query($con,$q); - echo "createdUser"; - } - break; - case "checkin": - $q = "SELECT id,actionTime FROM userLog WHERE actionTime >= CURDATE() AND actionType = 'checkin' AND discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - //already checked in today. - $a = mysqli_fetch_assoc($r2); - $flastupdated=stripslashes($a['actionTime']); - - $timeAgoObject = new convertToAgo; // Create an object for the time conversion functions - // Query your database here and get timestamp - $ts = $flastupdated; - $convertedTime = ($timeAgoObject -> convert_datetime($ts)); // Convert Date Time - $when = ($timeAgoObject -> makeAgo($convertedTime)); // Then convert to ago time - //date("F j, Y, g:i a", strtotime($flastupdated)); - echo $when; - } else{ - //Can check in. - $q = "UPDATE users SET wallet = wallet + $dataToSend WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (" . $userID . ", '" . $dataType . "', 'Checked in for $dataToSend crystals.');"; - $r2 = mysqli_query($con,$q); - echo 1; - exit; - } - break; - - case "deposit": - $q = "SELECT wallet FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $account=stripslashes($a['wallet']); - } - if($account >= $dataToSend && $dataToSend > 0){ - //has enough credits in their account - $q = "UPDATE users SET wallet = wallet - $dataToSend WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "UPDATE factions SET account = account + $dataToSend WHERE discordRoleID = '$dataToSend2' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (" . $userID . ", '" . $dataType . "', 'Deposited $dataToSend crystals to $dataToSend2.');"; - $r2 = mysqli_query($con,$q); - echo 1; - } else{ - echo "{ERROR} - Not enough crystals in your account."; - } - exit; - } else{ - echo "{ERROR} - Cant find wallet. Something went wrong."; - } - break; - - case "gambleWon": - $q = "UPDATE users SET wallet = wallet + $dataToSend WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (" . $userID . ", '" . $dataType . "', 'Gambled and won for $dataToSend crystals.');"; - $r2 = mysqli_query($con,$q); - echo 1; - exit; - - break; - case "gambleLost": - $q = "UPDATE users SET wallet = wallet - $dataToSend WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (" . $userID . ", '" . $dataType . "', 'Gambled and lost for $dataToSend crystals.');"; - $r2 = mysqli_query($con,$q); - echo 1; - exit; - - break; - - case "transfer": - $q = "UPDATE users SET wallet = wallet - $dataToSend2 WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - $q = "UPDATE users SET wallet = wallet + $dataToSend2 WHERE discordUserID = '$dataToSend' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (" . $userID . ", '" . $dataType . "', '$userID gave $dataToSend2 crystals to $dataToSend.');"; - $r2 = mysqli_query($con,$q); - echo 1; - exit; - - break; - - case "attack": - - $q = "UPDATE hostiles SET health = health - $dataToSend WHERE id = '$dataToSend2' LIMIT 1"; - $r2 = mysqli_query($con,$q); - $q = "UPDATE users SET stamina = stamina - 1 WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - //$q = "INSERT INTO userLog (discordUserID, actionType, actionData) - //VALUES (" . $userID . ", '" . $dataType . "', '$userID attacked Ravager#$dataToSend2.');"; - //$r2 = mysqli_query($con,$q); - - $q = "INSERT INTO attackLog (discordUserID, hostileID, damage) - VALUES ('$userID','$dataToSend2','$dataToSend');"; - $r2 = mysqli_query($con,$q); - - $q = "SELECT hostiles.health,hostiles.maxHealth,hostiles.speed,hostiles.strength,users.speed as userspeed,users.health as userhealth FROM hostiles,users WHERE hostiles.id = '$dataToSend2' AND users.discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $hostileHealth=stripslashes($a['health']); - $hostileMaxHealth=stripslashes($a['maxHealth']); - $hostileSpeed=stripslashes($a['speed']); - $hostileStrength=stripslashes($a['strength']); - $userSpeed=stripslashes($a['userspeed']); - $userHealth=stripslashes($a['userhealth']); - } - if($hostileHealth <= 0){ - if($hostileHealth < 0){ $hostileHealth = 0;}; - //returns health less than zero, kill enemy. - $q = "UPDATE hostiles SET alive = 0,health = 0 WHERE id = '$dataToSend2' LIMIT 1"; - $r2 = mysqli_query($con,$q); - } - $criticalHit = 0; - $hitAmount = getEnemyDamage($hostileSpeed,$userSpeed,$hostileStrength); - if($hitAmount > 0){ - if ($hitAmount >= $userHealth){$hitAmount = $userHealth; $criticalHit = 1;}; - $q = "UPDATE users SET health = health - $hitAmount WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - } - echo $hostileHealth.",".$hostileMaxHealth.",".$hitAmount.",".$criticalHit; - exit; - } else{ - echo "0"; - } - - - exit; - - - break; - - case "hostileAttackBack": - - $q = "UPDATE users SET stamina = stamina - 1 WHERE discordUserID = '$userID' AND stamina > 0 LIMIT 1"; - $r2 = mysqli_query($con,$q); - - - $q = "SELECT hostiles.health,hostiles.maxHealth,hostiles.speed,hostiles.strength,users.speed as userspeed,users.health as userhealth FROM hostiles,users WHERE hostiles.id = '$dataToSend2' AND users.discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $hostileHealth=stripslashes($a['health']); - $hostileMaxHealth=stripslashes($a['maxHealth']); - $hostileSpeed=stripslashes($a['speed']); - $hostileStrength=stripslashes($a['strength']); - $userSpeed=stripslashes($a['userspeed']); - $userHealth=stripslashes($a['userhealth']); - } - $criticalHit = 0; - $hitAmount = getEnemyDamage($hostileSpeed,$userSpeed,$hostileStrength); - if($hitAmount > 0){ - if ($hitAmount >= $userHealth){$hitAmount = $userHealth; $criticalHit = 1;}; - $q = "UPDATE users SET health = health - $hitAmount WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - } - echo $hostileHealth.",".$hostileMaxHealth.",".$hitAmount.",".$criticalHit; - exit; - } else{ - echo "0"; - } - - - exit; - - - break; - - case "hostileFlee": - $q = "SELECT id FROM hostiles WHERE alive = 1 ORDER BY id DESC LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $hostileID=stripslashes($a['id']); - } - $q = "UPDATE hostiles SET fled = 1,alive=0 WHERE id = '$hostileID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - echo "fled"; - } else{ - echo "alreadyDead"; - } - break; - - case "newHostile": - $q = "SELECT id FROM hostiles WHERE alive = 1 LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - echo "notCreated"; - } else{ - $elvl = $dataToSend; - $healthBase = 150; $strengthBase = 6; $speedBase = 6; $stashBase = 9; - $healthMin = ($healthBase * $elvl) / 2; $healthMax = $healthBase * $elvl; - $strengthMin = ($strengthBase * $elvl) / 2; $strengthMax = $strengthBase * $elvl; - $speedMin = ($speedBase * $elvl) / 2; $speedMax = $speedBase * $elvl; - $stashMin = ($stashBase * $elvl) / 2; $stashMax = $stashBase * $elvl; - - $health = floor(rand($healthMin,$healthMax)); - $strength = floor(rand($strengthMin,$strengthMax)); - $speed = floor(rand($speedMin,$speedMax)); - $stash = floor(rand($stashMin,$stashMax)); - - $claimID = floor(rand(1000,9999)); - $q = "INSERT INTO hostiles (hostileType, maxHealth, health, strength, speed, stash, alive, claimID) - VALUES ('ravager', '$health', '$health', '$strength', '$speed', '$stash', 1, '$claimID');"; - $r2 = mysqli_query($con,$q); - echo $health.",".$speed.",".$strength.",".$claimID; - } - break; - - - - - case "claim": - $claimAmount = $dataToSend2; - - - $q = "SELECT stash FROM hostiles WHERE alive = 0 AND claimID = '$dataToSend' LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $stash=stripslashes($a['stash']); - } - if($claimAmount <= $stash){ - //take money from the stash - $q = "UPDATE hostiles SET stash = stash - $claimAmount WHERE claimID = '$dataToSend' LIMIT 1"; - $r2 = mysqli_query($con,$q); - $q = "UPDATE users SET wallet = wallet + $claimAmount WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (" . $userID . ", '" . $dataType . "', '$userID claimed $claimAmount crystals from a Ravager.');"; - $r2 = mysqli_query($con,$q); - $stash = $stash - $claimAmount; - if($stash == 0){ - $q = "UPDATE hostiles SET claimID=0 WHERE claimID = '$dataToSend' LIMIT 1"; - $r2 = mysqli_query($con,$q); - } - echo $stash; - }else{ - echo "notEnough"; - } - exit; - } else{ - echo "noClaimID"; - } - - - exit; - - break; - - case "getHostileData": - $q = "SELECT stash,claimID FROM hostiles WHERE alive = 0 AND id = '$dataToSend' LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $stash=stripslashes($a['stash']); - $claimID=stripslashes($a['claimID']); - } - echo $stash.",".$claimID; - } - exit; - - break; - - - - case "getDamageDistribution": - //Gets base stats for enemy - $q = "SELECT stash,maxHealth,fled FROM hostiles WHERE id = '$dataToSend' LIMIT 1;"; - $r2 = mysqli_query($con,$q); - $a = mysqli_fetch_assoc($r2); - $stash=stripslashes($a['stash']); - $maxHealth=stripslashes($a['maxHealth']); - $fled=stripslashes($a['fled']); - $totalCrystalsInStash = 0; - - if($fled == 1){ - echo "fled"; - }else{ - //gets all dammage from users - $damageDistribution = array(); - $q = "SELECT discordUserID,SUM(damage) totalDamage FROM attackLog WHERE hostileID = $dataToSend GROUP BY discordUserID;"; - //$q = "SELECT attackLog.damage,attackLog.discordUserID,hostiles.stash,hostiles.maxHealth FROM attackLog WHERE hostiles.id = attackLog.hostileID AND attackLog.hostileID = '$dataToSend';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $damage=stripslashes($a['totalDamage']); - $discordUserID=stripslashes($a['discordUserID']); - $damagePercent = round(( $damage / $maxHealth ) * 100); - $percentStashAmount = round($stash * ($damagePercent/100)); - $totalCrystalsInStash += $percentStashAmount; - // you can add single array values too - $damageDistribution[] = array('id'=>$discordUserID, 'totalDamage'=>$damage, 'damagePercent'=>$damagePercent, 'crystalsReceived'=>$percentStashAmount); - if($dataToSend2 == 1){ - //Flag to actually distribute crystals - $q2 = "UPDATE users SET wallet = wallet + $percentStashAmount WHERE discordUserID = '$discordUserID' LIMIT 1"; - $r3 = mysqli_query($con,$q2); - } - - } - echo json_encode($damageDistribution); - } else{ - echo 0; - } - exit; - } - - break; - - - case "updateStamina": - $q = "UPDATE users SET stamina = stamina + 1 WHERE stamina < maxStamina;"; - $r2 = mysqli_query($con,$q); - //UPDATE users SET health = min(floor(health + (maxHeath/100)), maxHealth) - $q = "UPDATE users SET health = least(floor(health + (maxHealth/100)), maxHealth) WHERE health < maxHealth AND health > 0;"; - $r2 = mysqli_query($con,$q); - exit; - break; - - - case "reviveAll": - $q = "UPDATE users SET health = 1 WHERE health = 0;"; - $r2 = mysqli_query($con,$q); - $q = "INSERT INTO userLog (discordUserID, actionType, actionData) - VALUES (0,'revive','reviveAll');"; - $r2 = mysqli_query($con,$q); - exit; - break; - - - case "lvlinfo": - $q = "SELECT xp,lvl FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $xp=stripslashes($a['xp']); - $currentlvl=stripslashes($a['lvl']); - $lvlbase=getLevelBase(); - $lvl=getLevel($xp,$lvlbase); - - } - } - echo "LEVEL: ".getLevel($xp,$lvlbase),"
XP: ".$xp."
CURRENT LEVEL PROGRESS:".getCurrentLevelProgress($xp,$lvl); - break; - - case "upgradeStats": - //Changed it to just upgrade 1 point automatically - $dataToSend2 = 1; - $q = "SELECT statPoints FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $statPoints=stripslashes($a['statPoints']); - } - if($dataToSend2 <= $statPoints){ - $tableName = ""; - switch (strtoupper($dataToSend)) { - case "STR": - $tableName = "strength = strength + ".$dataToSend2; - break; - case "HP": - $tableName = "maxHealth = maxHealth + 10"; - break; - case "SPD": - $tableName = "speed = speed + ".$dataToSend2; - break; - case "STAM": - $tableName = "maxStamina = maxStamina + ".$dataToSend2; - break; - } - $q = "UPDATE users SET statPoints = statPoints - $dataToSend2,$tableName WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - echo "success"; - } else{ - echo "notEnoughPoints"; - } - } else{ - echo "failure"; - } - - break; - - - - - case "heal": - $q = "SELECT health,maxHealth,wallet FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $health=stripslashes($a['health']); - $maxHealth=stripslashes($a['maxHealth']); - $crystals=stripslashes($a['wallet']); - } - $treatmentCost = $dataToSend; - $treatmentName = $dataToSend2; - $newHealth = $health; - if($health == $maxHealth){echo "fullHealth";exit;} - - if($health > 0){ - if($crystals >= $treatmentCost){ - switch ($treatmentName) { - case "TREAT": - $newHealth += 15; - break; - case "TREATV2": - $newHealth = $maxHealth*0.15; - break; - case "PATCH": - $newHealth += 50; - break; - case "PATCHV2": - $newHealth = $maxHealth*0.5; - break; - case "REGEN": - $newHealth += 100; - break; - case "REGENV2": - $newHealth = $maxHealth; - break; - default: - echo "cantDoThat";exit; - break; - } - if($newHealth < $health){echo "lessThanYourHealth";exit;} - if($newHealth>$maxHealth){$newHealth = $maxHealth;}; - $q = "UPDATE users SET health = $newHealth,wallet = wallet - $treatmentCost WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - echo "success,".$newHealth."/".$maxHealth; - } else{ - echo "notEnoughCrystals"; - } - } else{ - if($crystals >= $treatmentCost){ - switch ($treatmentName) { - case "REVIVE": - $newHealth = 25; - break; - case "REVIVEV2": - $newHealth = $maxHealth*0.5; - break; - case "REVIVEV3": - $newHealth = $maxHealth; - break; - case "TREAT": - echo "youreKnockedOut";exit; - break; - case "TREATV2": - echo "youreKnockedOut";exit; - break; - case "PATCH": - echo "youreKnockedOut";exit; - break; - case "PATCHV2": - echo "youreKnockedOut";exit; - break; - case "REGEN": - echo "youreKnockedOut";exit; - break; - default: - echo "cantDoThat";exit; - break; - } - if($newHealth < $health){echo "lessThanYourHealth";exit;} - if($newHealth>$maxHealth){$newHealth = $maxHealth;}; - $q = "UPDATE users SET health = $newHealth,wallet = wallet - $treatmentCost WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - echo "success,".$newHealth."/".$maxHealth; - }else{ - echo "notEnoughCrystals"; - } - } - } else{ - echo "failure"; - } - - break; - - - - case "addXP": - addXp($userID,$dataToSend); - break; - - - case "getLevelUp": - //addXp($userID,$dataToSend); - $q = "SELECT xp,lvl,statPoints FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $xp=stripslashes($a['xp']); - $lvl=stripslashes($a['lvl']); - $statPoints=stripslashes($a['statPoints']); - } - $lvlbase = getLevelBase(); - $currentLVL = floor(getLevel($xp,$lvlbase)); - if($currentLVL > $lvl){ - $statPoints += 1; - $q = "UPDATE users SET lvl = lvl + 1,statPoints = statPoints + 1 WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - $lvl = $lvl + 1; - echo "levelup,".$lvl.",".$statPoints; - } else{ - echo "xpadded,".$currentLVL.",".$statPoints; - } - } - - break; - - - case "scavenge": - $random = floor(rand(0,101)); - $ultrarare = 0;$rare = 0; $uncommon = 0; $common = 0; $scrap = 0; - if($random <= 0.5){ - $ultrarare = 1; - } - if($random <= 3 && $random > 0.5){ - $rare = round(rand(1,2)); - } - if($random <= 10 && $random > 3){ - $uncommon = round(rand(1,3)); - } - if($random <= 50 && $random > 10){ - $common = round(rand(1,3)); - } - if($random > 50){ - $scrap = round(rand(1,7)); - } - - $staminaCost = $dataToSend; - $crystalCost = $dataToSend2; - $q = "UPDATE users SET stamina = stamina - $staminaCost,wallet = wallet - $crystalCost WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - - $q = "SELECT id FROM artifacts WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - - $q = "UPDATE artifacts SET scrap = scrap + $scrap,common = common + $common,uncommon = uncommon + $uncommon,rare = rare + $rare,ultrarare = ultrarare + $ultrarare WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - echo "success,".$ultrarare.",".$rare.",".$uncommon.",".$common.",".$scrap; - } else{ - $q = "INSERT INTO artifacts (discordUserID, scrap, common, uncommon, rare, ultrarare) - VALUES ($userID,$scrap,$common,$uncommon,$rare,$ultrarare);"; - $r2 = mysqli_query($con,$q); - echo "success,".$ultrarare.",".$rare.",".$uncommon.",".$common.",".$scrap; - } - break; - - - - case "artifactSell": - - - $q = "SELECT scrap,common,uncommon,rare,ultrarare FROM artifacts WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - $a = mysqli_fetch_assoc($r2); - $scrapQuantity=stripslashes($a['scrap']); - $commonQuantity=stripslashes($a['common']); - $uncommonQuantity=stripslashes($a['uncommon']); - $rareQuantity=stripslashes($a['rare']); - $ultrarareQuantity=stripslashes($a['ultrarare']); - - $itemToSell = strtolower ($dataToSend); - $price = 0;$totalPayout = 0;$itemQuantity = 0; - - $price = 0.1; - $scrapTotalPayout = round($price * $scrapQuantity); - $price = 2; - $commonTotalPayout = $price * $commonQuantity; - $price = 5; - $uncommonTotalPayout = $price * $uncommonQuantity; - $price = 10; - $rareTotalPayout = $price * $rareQuantity; - $price = 30; - $ultrarareTotalPayout = $price * $ultrarareQuantity; - - $itemQuantity = $scrapQuantity + $commonQuantity + $uncommonQuantity + $rareQuantity + $ultrarareQuantity; - $totalPayout = $scrapTotalPayout + $commonTotalPayout + $uncommonTotalPayout + $rareTotalPayout + $ultrarareTotalPayout; - - if($itemToSell == "all"){ - $q = "UPDATE artifacts SET scrap =0,common = 0,uncommon = 0,rare = 0,ultrarare = 0 WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - $q = "UPDATE users SET wallet = wallet + $totalPayout WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - echo "success,".$itemQuantity.",".$totalPayout; - }else{ - - $crystals = 0; - switch ($itemToSell) { - case "scrap": - $singlePayout = $scrapTotalPayout; - $itemQuantity = $scrapQuantity; - break; - case "common": - $singlePayout = $commonTotalPayout; - $itemQuantity = $commonQuantity; - break; - case "uncommon": - $singlePayout = $uncommonTotalPayout; - $itemQuantity = $uncommonQuantity; - break; - case "rare": - $singlePayout = $rareTotalPayout; - $itemQuantity = $rareQuantity; - break; - case "ultrarare": - $singlePayout = $ultrarareTotalPayout; - $itemQuantity = $ultrarareQuantity; - break; - } - $q = "UPDATE artifacts SET $itemToSell = 0 WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - $q = "UPDATE users SET wallet = wallet + $singlePayout WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - echo "success,".$itemQuantity.",".$singlePayout; - } - }else{ - echo "failure"; - } - break; - - - - case "buyDrink": - $q = "UPDATE users SET wallet = wallet - $dataToSend WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - break; - - - - - -} - -//echo json_encode($array); - - - -if($debug){ - echo "\n"."UID:".$userID; -} - -mysqli_close($con); - - -function getEnemyDamage($hostileSpeed,$userSpeed,$hostileStrength){ - $hitAmount = 0; - $percentage = floor(rand(0,101)); - if($hostileSpeed > $userSpeed){ - if($percentage <= 80 ){ - //80% chance to hit you back. - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } else{ - if($percentage <= 30){ - //30% chance to hit you back. - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } -/* - if($hostileSpeed > $userSpeed){ - if(20 > rand(0,100)){ - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } elseif($hostileSpeed == $userSpeed){ - if(50 >= rand(0,100)){ - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } else{ - if(70 >= rand(0,100)){ - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } - */ - return $hitAmount; -} - - ?> diff --git a/PHPBotServer/sendPostData.php b/PHPBotServer/sendPostData.php deleted file mode 100644 index 1977693..0000000 --- a/PHPBotServer/sendPostData.php +++ /dev/null @@ -1,400 +0,0 @@ - 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $discordUserID=stripslashes($a['discordUserID']); - $userHealth=stripslashes($a['health']); - $userMaxHealth=stripslashes($a['maxHealth']); - $userSpeed=stripslashes($a['speed']); - $userStrength=stripslashes($a['strength']); - $attackerStats[] = array('id'=>$discordUserID, 'maxHealth'=>$userHealth, 'health'=>$userHealth, 'speed'=>$userSpeed, 'strength'=>$userStrength, 'hitback'=>''); - } - } - //Get enemy data - $q = "SELECT hostiles.health,hostiles.maxHealth,hostiles.speed,hostiles.strength,hostiles.alive,hostiles.fled FROM hostiles WHERE hostileType = '$hostileType' ORDER BY id DESC LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $hostileHealth=stripslashes($a['health']); - $hostileMaxHealth=stripslashes($a['maxHealth']); - $hostileSpeed=stripslashes($a['speed']); - $hostileStrength=stripslashes($a['strength']); - $hostileAlive=stripslashes($a['alive']); - $hostileFled=stripslashes($a['fled']); - } - } - - //do all the damage - $totalDamage = 0; - $returnInfo= array(); - $query = "UPDATE users SET health = CASE discordUserID "; - $queryIDs = ""; - for ($i=0;$i $attackerStats[$i]['strength']){ - $totalDamage = $totalDamage + $attackerStats[$i]['strength']; - $hitAmount = getEnemyDamage($hostileSpeed,$attackerStats[$i]['speed'],$hostileStrength); - if($hitAmount > 0){ - if ($hitAmount >= $attackerStats[$i]['health']){$hitAmount = $attackerStats[$i]['health'];}; - $attackerStats[$i]['health'] = $attackerStats[$i]['health'] - $hitAmount; - $attackerStats[$i]['hitback'] = $hitAmount; - //$q = "UPDATE users SET health = health - $hitAmount WHERE discordUserID = '$userID' LIMIT 1"; - //$r2 = mysqli_query($con,$q); - } - $query .= " WHEN ".$attackerStats[$i]['id']." THEN ".$attackerStats[$i]['health']; - $queryIDs .= $attackerStats[$i]['id'].","; - $hhealth = $hostileHealth-$totalDamage; - $returnInfo[] = array('hostileHealth'=>$hhealth.'|'.$hostileMaxHealth, 'atkDamage'=>$attackerStats[$i]['strength'], 'id'=>$attackerStats[$i]['id'], 'hitback'=>$hitAmount, 'userHealth'=>$attackerStats[$i]['health']."|".$attackerStats[$i]['maxHealth']); - }else{ - //If the bad guy is not alive, finish up. - $q = "UPDATE hostiles SET health = 0 WHERE hostileType = '$hostileType' ORDER BY id DESC LIMIT 1"; - $r2 = mysqli_query($con,$q); - $query .= " END - WHERE discordUserID IN (".substr($queryIDs, 0, -1).");"; - $r2 = mysqli_query($con,$query); - echo json_encode($returnInfo); - exit; - } - } - //assemble the end of the query. - $query .= " END - WHERE discordUserID IN (".substr($queryIDs, 0, -1).");"; - $r2 = mysqli_query($con,$query); - $q = "UPDATE hostiles SET health = health - $totalDamage WHERE hostileType = '$hostileType' ORDER BY id DESC LIMIT 1"; - $r2 = mysqli_query($con,$q); - echo json_encode($returnInfo); - exit; - - - - }else{ - echo "notArray"; - exit; - } - - break; - - - case "lvlinfo": - $q = "SELECT xp,lvl FROM users WHERE discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $xp=stripslashes($a['xp']); - $currentlvl=stripslashes($a['lvl']); - $lvlbase=getLevelBase(); - $lvl=getLevel($xp,$lvlbase); - $level = $dataToSend2; - $str = generateStatFromLevel($level,"str"); - $spd = generateStatFromLevel($level,"spd"); - $hp = generateStatFromLevel($level,"hp"); - $stash = generateStatFromLevel($level,"stash"); - - } - } - //echo "LEVEL: ".getLevel($xp,$lvlbase),"
XP: ".$xp."
CURRENT LEVEL PROGRESS:".getCurrentLevelProgress($xp,$lvl); - echo "LEVEL: ".getLevel($dataToSend,$lvlbase),"
XP: ".$xp."
CURRENT LEVEL PROGRESS:".getCurrentLevelProgress($xp,$lvl)."

STR: ".$str." SPD: ".$spd." HP: ".$hp." STASH:: ".$stash; - break; - - case "attack": - - $q = "UPDATE hostiles SET health = health - $dataToSend WHERE id = '$dataToSend2' LIMIT 1"; - $r2 = mysqli_query($con,$q); - $q = "UPDATE users SET stamina = stamina - 1 WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - - //$q = "INSERT INTO userLog (discordUserID, actionType, actionData) - //VALUES (" . $userID . ", '" . $dataType . "', '$userID attacked Ravager#$dataToSend2.');"; - //$r2 = mysqli_query($con,$q); - - $q = "INSERT INTO attackLog (discordUserID, hostileID, damage) - VALUES ('$userID','$dataToSend2','$dataToSend');"; - $r2 = mysqli_query($con,$q); - - $q = "SELECT hostiles.health,hostiles.maxHealth,hostiles.speed,hostiles.strength,users.speed as userspeed,users.health as userhealth FROM hostiles,users WHERE hostiles.id = '$dataToSend2' AND users.discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $hostileHealth=stripslashes($a['health']); - $hostileMaxHealth=stripslashes($a['maxHealth']); - $hostileSpeed=stripslashes($a['speed']); - $hostileStrength=stripslashes($a['strength']); - $userSpeed=stripslashes($a['userspeed']); - $userHealth=stripslashes($a['userhealth']); - } - if($hostileHealth <= 0){ - if($hostileHealth < 0){ $hostileHealth = 0;}; - //returns health less than zero, kill enemy. - $q = "UPDATE hostiles SET alive = 0,health = 0 WHERE id = '$dataToSend2' LIMIT 1"; - $r2 = mysqli_query($con,$q); - } - $criticalHit = 0; - $hitAmount = getEnemyDamage($hostileSpeed,$userSpeed,$hostileStrength); - if($hitAmount > 0){ - if ($hitAmount >= $userHealth){$hitAmount = $userHealth; $criticalHit = 1;}; - $q = "UPDATE users SET health = health - $hitAmount WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - } - echo $hostileHealth.",".$hostileMaxHealth.",".$hitAmount.",".$criticalHit; - exit; - } else{ - echo "0"; - } - - - exit; - - - break; - - case "hostileAttackBack": - - $q = "UPDATE users SET stamina = stamina - 1 WHERE discordUserID = '$userID' AND stamina > 0 LIMIT 1"; - $r2 = mysqli_query($con,$q); - - - $q = "SELECT hostiles.health,hostiles.maxHealth,hostiles.speed,hostiles.strength,users.speed as userspeed,users.health as userhealth FROM hostiles,users WHERE hostiles.id = '$dataToSend2' AND users.discordUserID = '$userID';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $hostileHealth=stripslashes($a['health']); - $hostileMaxHealth=stripslashes($a['maxHealth']); - $hostileSpeed=stripslashes($a['speed']); - $hostileStrength=stripslashes($a['strength']); - $userSpeed=stripslashes($a['userspeed']); - $userHealth=stripslashes($a['userhealth']); - } - $criticalHit = 0; - $hitAmount = getEnemyDamage($hostileSpeed,$userSpeed,$hostileStrength); - if($hitAmount > 0){ - if ($hitAmount >= $userHealth){$hitAmount = $userHealth; $criticalHit = 1;}; - $q = "UPDATE users SET health = health - $hitAmount WHERE discordUserID = '$userID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - } - echo $hostileHealth.",".$hostileMaxHealth.",".$hitAmount.",".$criticalHit; - exit; - } else{ - echo "0"; - } - - - exit; - - - break; - - case "hostileFlee": - $q = "SELECT id FROM hostiles WHERE alive = 1 ORDER BY id DESC LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $hostileID=stripslashes($a['id']); - } - $q = "UPDATE hostiles SET fled = 1,alive=0 WHERE id = '$hostileID' LIMIT 1"; - $r2 = mysqli_query($con,$q); - echo "fled"; - } else{ - echo "alreadyDead"; - } - break; - - case "newHostile": - $q = "SELECT id FROM hostiles WHERE alive = 1 LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - echo "notCreated"; - } else{ - $elvl = $dataToSend; - $healthBase = 50; $strengthBase = 3; $speedBase = 3; $stashBase = 3; - $healthMin = ($healthBase * $elvl) / 2; $healthMax = $healthBase * $elvl; - $strengthMin = ($strengthBase * $elvl) / 2; $strengthMax = $strengthBase * $elvl; - $speedMin = ($speedBase * $elvl) / 2; $speedMax = $speedBase * $elvl; - $stashMin = ($stashBase * $elvl) / 2; $stashMax = $stashBase * $elvl; - - $health = floor(rand($healthMin,$healthMax)); - $strength = floor(rand($strengthMin,$strengthMax)); - $speed = floor(rand($speedMin,$speedMax)); - $stash = floor(rand($stashMin,$stashMax)); - - $claimID = floor(rand(1000,9999)); - $q = "INSERT INTO hostiles (hostileType, maxHealth, health, strength, speed, stash, alive, claimID) - VALUES ('ravager', '$health', '$health', '$strength', '$speed', '$stash', 1, '$claimID');"; - $r2 = mysqli_query($con,$q); - echo $health.",".$speed.",".$strength.",".$claimID; - } - break; - - - - - case "getHostileData": - $q = "SELECT stash,claimID FROM hostiles WHERE alive = 0 AND id = '$dataToSend' LIMIT 1;"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $stash=stripslashes($a['stash']); - $claimID=stripslashes($a['claimID']); - } - echo $stash.",".$claimID; - } - exit; - - break; - - - - case "getDamageDistribution": - //Gets base stats for enemy - $q = "SELECT stash,maxHealth,fled FROM hostiles WHERE id = '$dataToSend' LIMIT 1;"; - $r2 = mysqli_query($con,$q); - $a = mysqli_fetch_assoc($r2); - $stash=stripslashes($a['stash']); - $maxHealth=stripslashes($a['maxHealth']); - $fled=stripslashes($a['fled']); - $totalCrystalsInStash = 0; - - if($fled == 1){ - echo "fled"; - }else{ - //gets all dammage from users - $damageDistribution = array(); - $q = "SELECT discordUserID,SUM(damage) totalDamage FROM attackLog WHERE hostileID = $dataToSend GROUP BY discordUserID;"; - //$q = "SELECT attackLog.damage,attackLog.discordUserID,hostiles.stash,hostiles.maxHealth FROM attackLog WHERE hostiles.id = attackLog.hostileID AND attackLog.hostileID = '$dataToSend';"; - $r2 = mysqli_query($con,$q); - if ( $r2 !== false && mysqli_num_rows($r2) > 0 ) { - while ( $a = mysqli_fetch_assoc($r2) ) { - $damage=stripslashes($a['totalDamage']); - $discordUserID=stripslashes($a['discordUserID']); - $damagePercent = round(( $damage / $maxHealth ) * 100); - $percentStashAmount = round($stash * ($damagePercent/100)); - $totalCrystalsInStash += $percentStashAmount; - // you can add single array values too - $damageDistribution[] = array('id'=>$discordUserID, 'totalDamage'=>$damage, 'damagePercent'=>$damagePercent, 'crystalsReceived'=>$percentStashAmount); - if($dataToSend2 == 1){ - //Flag to actually distribute crystals - $q2 = "UPDATE users SET wallet = wallet + $percentStashAmount WHERE discordUserID = '$discordUserID' LIMIT 1"; - $r3 = mysqli_query($con,$q2); - } - - } - echo json_encode($damageDistribution); - } else{ - echo 0; - } - exit; - } - - break; - - - - - - -} - -//echo json_encode($array); - - - -if($debug){ - echo "\n"."UID:".$userID; -} - -mysqli_close($con); - - -function getEnemyDamage($hostileSpeed,$userSpeed,$hostileStrength){ - $hitAmount = 0; - $percentage = floor(rand(0,101)); - if($hostileSpeed > $userSpeed){ - if($percentage <= 80 ){ - //80% chance to hit you back. - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } else{ - if($percentage <= 30){ - //30% chance to hit you back. - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } -/* - if($hostileSpeed > $userSpeed){ - if(20 > rand(0,100)){ - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } elseif($hostileSpeed == $userSpeed){ - if(50 >= rand(0,100)){ - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } else{ - if(70 >= rand(0,100)){ - $hitAmount = $hostileStrength + rand(-($hostileStrength/4),$hostileStrength/4); - } - } - */ - return $hitAmount; -} - - -function generateStatFromLevel($level,$stat){ - $value = 0; - if(strtolower($stat) === "str"){ - $value = (round((((($level + 1) * log10($level + 1)) / (0.02 * ($level + 1))) + 0.6) * 0.4)) -2; - $value = round($value + (rand(-$value/10,$value/10))); - if($level < 15){$value = round($value * 0.9);}; - }elseif(strtolower($stat) === "spd"){ - $value = (round((((($level + 1) * log10($level + 1)) / (0.02 * ($level + 1))) + 0.6) * 0.4)) -2 ; //round(rand(-2,2)) - $value = round($value + (rand(-$value/10,$value/10))); - if($level < 15){$value = round($value * 0.9);}; - }elseif(strtolower($stat) === "hp"){ - $value = floor(50 + (30 * $level) + pow($level, 1.5)); - }elseif(strtolower($stat) === "stash"){ - $value = (round((((($level + 1) * log10($level + 1)) / (0.02 * ($level + 1))) + 0.6) * 0.1)) ; - $value = rand(pow($value, 2.2),pow($value, 2.3)); - if($level < 15){$value = round($value * 0.7);}; - } - - return $value; -} - - ?> diff --git a/README.md b/README.md index 992763d..51784a1 100644 --- a/README.md +++ b/README.md @@ -1,57 +1,11 @@ # ![SANCTUM Logo](https://i.imgur.com/yZI3Am9.png) SANCTUM -[![SANCTUM Discord](https://img.shields.io/badge/sanctum-discord-%237289DA.svg?logo=discord)](https://discord.gg/D7dyrVn) -[![SANCTUM Developers](https://img.shields.io/badge/sanctum-developers-%237289DA.svg?logo=discord)](https://discord.gg/mP98ZYv) -# What is SANCTUM? -SANCTUM is an open-source Discord MMO, with 200+ players. -- [Discord Game Invite Link](https://discord.gg/D7dyrVn) -- [Developer's Discord](https://discord.gg/mP98ZYv) +[![SANCTUM Discord](https://img.shields.io/badge/sanctum-discord-%237289DA.svg?logo=discord)](https://discord.gg/uUEQVwt) -# Run the Bots -## Requirements: -You will need: -- [Node.js](https://nodejs.org/en/) (recommended v8.12.0 LTS) +This is a hard-fork of SANCTUM by Tim Ruswick and the Game Dev Underground crew. For a rough guide on how to install and run this software, it's recommended that you refer to the original REAMDE.md in the original branch: -## Steps -1. Clone the repo. +[TimRuswick/SANCTUM](https://github.com/TimRuswick/SANCTUM) - You can use programs like [Git](https://git-scm.com/), [SourceTree](https://www.sourcetreeapp.com/) or simply download the project, although you won't be able to submit changes as easily. +TODO: A more official guide is coming soon. - ```bash - git clone https://github.com/TimRuswick/SANCTUM - ``` -2. Rename the `.envdev` file to `.env`, and fill out tokens and channels. - - Make sure you save it, and also don't push any of your tokens here! If you do though, consider them compromised and then reset them. On Windows, you must give the .env file a name, but you can circumvent it by using a program like [VS Code](https://code.visualstudio.com/) to rename files! - -3. Navigate via command-line to a bot's folder, install dependencies, and run it! - - Make sure you're in the project folder! - On Windows, you can hold Shift and Right Click the folder to get the option of a command prompt, inside that folder. - ```bash - cd "SANCTUM" # Navigate to project folder - npm i # For modules dependencies - cd "A.D.A.M." # Choose a bot - npm i # Install dependencies - node adam.js # Run the bot - ``` - -4. ??? - -5. Profit! You did it, unless something has happened along the way. ~~Developer luck says yes.~~ - -## Quality of Life - -We recommend [nodemon](https://nodemon.io/) for reloading bots automatically, instead of `Ctrl+C`ing in and out of bots when you need a restart. - -# Join the SANCTUM Development Team -We're looking for: -- Discord.js programmers -- Artists -- Writers -- Designers -- Producers -- and Testers! - -Join the [SANCTUM Developers](https://discord.gg/mP98ZYv) Discord for more info! diff --git a/Rey/package.json b/Rey/package.json deleted file mode 100644 index a33050a..0000000 --- a/Rey/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "sanctum-deploypackage", - "version": "1.0.1", - "description": "Universal package for all SANCTUM bots, using pm2.", - "main": "rey.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "echo \"Error: you need to use the bot name as a command.\" && exit 1", - "alexis": "pm2 start alexis.js -i max --watch", - "graze": "pm2 start graze.js -i max --watch", - "librarian": "pm2 start librarian.js -i max --watch", - "mainframe": "pm2 start mainframe.js -i max --watch", - "mori": "pm2 start mori.js -i max --watch", - "mosiah": "pm2 start mosiah.js -i max --watch", - "ravager": "pm2 start ravager.js -i max --watch", - "rey": "pm2 start rey.js -i max --watch", - "troll": "pm2 start troll.js -i max --watch" - }, - "author": "", - "license": "ISC", - "dependencies": { - "discord.js": "^11.4.2", - "dotenv": "^6.0.0", - "express": "^4.16.3", - "node-cron": "^1.2.1", - "socket.io": "^2.1.1", - "socket.io-request": "^0.8.0" - } -} diff --git a/Rey/rey.js b/Rey/rey.js deleted file mode 100644 index cbf6ca9..0000000 --- a/Rey/rey.js +++ /dev/null @@ -1,279 +0,0 @@ -// .env Variables -require('dotenv').config({path: '../.env'}); - -// Node Modules -const Discord = require('discord.js'); -const client = new Discord.Client(); -const cron = require('node-cron'); -const request = require('sync-request'); - -// Bot Modules -const dataRequest = require('../modules/dataRequest'); -const calcRandom = require('../modules/calcRandom'); - -// State Machine -var ReyEnumState = { - WAITING: 0, - SCAVENGING: 1 -} -var reyState = ReyEnumState.WAITING; - -// The ready event is vital, it means that your bot will only start reacting to information -// from Discord _after_ ready is emitted -client.on('ready', async () => { - // Generates invite link - try { - let link = await client.generateInvite(["ADMINISTRATOR"]); - console.log("Invite Link: " + link); - } catch(e) { - console.log(e.stack); - } - - client.user.setStatus('invisible'); - client.user.setActivity(''); - console.log(`Connected! \ - \nLogged in as: ${client.user.username} - (${client.user.id})`); -}); - -// Create an event listener for messages -client.on('message', async message => { - // Ignores ALL bot messages - if (message.author.bot) return; - // Message has to be in Outskirts or Test - if (!(message.channel.id === process.env.OUTSKIRTS_CHANNEL_ID - || message.channel.id === process.env.TEST_CHANNEL_ID)) return; - // Has to be (prefix)command - if (message.content.indexOf(process.env.PREFIX) !== 0) return; - - // "This is the best way to define args. Trust me." - // - Some tutorial dude on the internet - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - - switch (command) { - case "scavenge": - scavengeMessage(message); - break; - case "s": - scavengeMessage(message); - break; - case "materials": - materialsMessage(message, args); - break; - case "m": - materialsMessage(message, args); - break; - case "summon": - if (isAdmin(message.author.id)) - ReySpawnTimer(process.env.OUTSKIRTS_CHANNEL_ID); - break; - case "vanish": - if (isAdmin(message.author.id)) - ReyTurnOffline(process.env.OUTSKIRTS_CHANNEL_ID); - break; - } -}); - -client.on('error', console.error); - -function scavengeMessage(message) { - if (reyState == ReyEnumState.SCAVENGING) { - scavenge(message.author.id, message.channel.id); - } else { - // Tell that Rey is out of the city - message.reply("I'm out of the city for a while. I'll be back later!"); - } -} - -function materialsMessage(message, args) { - if (args[0] === undefined) { - var scavengeResponse = String(dataRequest.loadServerData("artifactsGet", message.author.id)); - var items = scavengeResponse.split(","); - var response = items[0]; - var ultrarare = parseFloat(items[1]); - var rare = parseFloat(items[2]); - var uncommon = parseFloat(items[3]); - var common = parseFloat(items [4]); - var scrap = parseFloat(items[5]); - var totalQuantity = ultrarare + rare + uncommon + common + scrap; - - if (response == "success"){ - if (totalQuantity > 0) { - var messageContent = "<@" + message.author.id + "> ***Here\'s what you found so far:***\n\n"; - if (scrap > 0) { messageContent += "<:scrap:463436564379336715> **" + scrap + "**\t\t"; } - if (common > 0) { messageContent += "<:mcloth:462682568483930123> **" + common + "**\t\t"; } - if (uncommon > 0) { messageContent += "<:mmetal:462682568920137728> **" + uncommon + "**\t\t"; } - if (rare > 0) { messageContent += "<:melectronics:462682568911749120> **" + rare + "**\t\t"; } - if (ultrarare > 0) { messageContent += "<:mgem:462450060718768148> **" + ultrarare + "**\n\n"; } - sendMessage(message.channel.id, messageContent); - } else { - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Looks like you don\'t have any materials yet. Help me out on a ***!scavenge***."); - } - } else { - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Sorry, something went wrong. Give me a minute."); - } - } else { - sendMessage(message.channel.id, ":x: <@" + message.author.id + "> Sorry, not sure what you want me to do."); - } -} - -//cron.schedule('*/10 * * * *', function() { -cron.schedule('0 */2 * * *', function() { - console.log('Running 2 hourly process...'); - if (reyState == ReyEnumState.WAITING) { - ReySpawnTimer(process.env.OUTSKIRTS_CHANNEL_ID); - } -}); - -// Gets if user has an Overseers rank -function isAdmin(userID) { - var guild = client.guilds.get(process.env.SANCTUM_ID); - return guild.members.get(userID).roles.find(role => role.name === "Overseers"); -} - -// Async Waiting -function sleep(time) { - return new Promise((resolve, reject) => { - setTimeout(resolve, time); - }); -} - -// https://stackoverflow.com/questions/3733227/javascript-seconds-to-minutes-and-seconds -function fmtMSS(s){ // accepts seconds as Number or String. Returns m:ss - return( s - // take value s and subtract (will try to convert String to Number) - ( s %= 60 ) // the new value of s, now holding the remainder of s divided by 60 - // (will also try to convert String to Number) - ) / 60 + ( // and divide the resulting Number by 60 - // (can never result in a fractional value = no need for rounding) - // to which we concatenate a String (converts the Number to String) - // who's reference is chosen by the conditional operator: - 9 < s // if seconds is larger than 9 - ? ':' // then we don't need to prepend a zero - : ':0' // else we do need to prepend a zero - ) + s ; // and we add Number s to the string (converting it to String as well) -} - -// Rey spawn timer -async function ReySpawnTimer(channel) { - // Random from 6 sec up to 15 min - var startTime = calcRandom.random(6000, 20 * 60 * 1000); - console.log(`Waiting for ${fmtMSS(Math.trunc(startTime / 1000))} min. for summon.`); - await sleep(startTime); - - client.user.setStatus('online'); - client.user.setActivity('Scavenging...'); - - const useEmbed = true; - - if (!useEmbed) - sendMessage(channel, `***Hey y\'all! Let's scavenge us some materials!***\ - \nUse !scavenge to get some materials.`); - else { - const reyBot = client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id); - const dialog = "***Hey y'all! Let's scavenge us some materials!***"; - const embed = new Discord.RichEmbed() - .setAuthor(reyBot.displayName, reyBot.user.avatarURL) - .setColor(reyBot.displayColor) - .setTitle("Scavenging") - .setDescription(`Use **!scavenge** to get some materials.`) - .addField("Cost", `> <:crystals:460974340247257089> **Crystals** [3x]\n> **1 STAM**`) - - client.channels.get(channel).send(dialog, embed); - } - - reyState = ReyEnumState.SCAVENGING; - - // Start time plus another 6 - 10 min - //var leaveTime = startTime + (2 * 60 * 1000); // Debug 2 Minute Mode - var leaveTime = calcRandom.random(6 * 60 * 1000, 10 * 60 * 1000); - await sleep(leaveTime); - - sendMessage(channel, "Getting ready to pack up here, I think we found enough.\n\n:warning: ***LAST CALL!***"); - await sleep(30000); - ReyTurnOffline(channel); -} - -function ReyTurnOffline(channel) { - sendMessage(channel, `Alright ladies and gents... I'm out of here. Nice finding stuff with y'all! \ - \n\n:v: ***HEADS BACK TO THE CITY***`); - client.user.setStatus('invisible'); - client.user.setActivity(''); - reyState = ReyEnumState.WAITING; -} - -// Scavenge logic -function scavenge(userID, channelID) { - var attacker = String(dataRequest.loadServerData("userStats", userID)); - var attackerStamina = parseFloat(attacker.split(",")[2]); - var attackerHealth = parseFloat(attacker.split(",")[3]); - var attackerWallet = parseFloat(attacker.split(",")[6]); - - var staminaCost = 1; - var crystalCost = 3; - if (attackerHealth > 0) { - if (attackerStamina >= staminaCost) { - if (attackerWallet >= crystalCost) { - var scavengeResponse = String(dataRequest.sendServerData("scavenge", staminaCost, userID, crystalCost)); - var items = scavengeResponse.split(","); - var response = parseFloat(items[0]); - var ultrarare = parseFloat(items[1]); - var rare = parseFloat(items[2]); - var uncommon = parseFloat(items[3]); - var common = parseFloat(items [4]); - var scrap = parseFloat(items[5]); - - var dialogOptions = [ - 'Hey that works!', - 'That\'s interesting... Should be able to use that.', - 'That\'s really useful.', - 'Great find!', - 'Wish I found as much stuff as you.', - 'You\'re on a roll here.', - 'You\'re better than me at this!', - 'Nice! Should fetch you a pretty penny.', - 'That\'s awesome.', - 'You\'re good at this.' - ]; - - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - var message = "<@" + userID + "> \t\t"; - message += "<:crystals:460974340247257089> **-" + crystalCost + "**\t\t" - if (scrap > 0) { message += "<:scrap:463436564379336715> **+" + scrap + "**\t\t"; } - if (common > 0) { message += "<:mcloth:462682568483930123> **+" + common + "**\t\t"; } - if (uncommon > 0) { message += "<:mmetal:462682568920137728> **+" + uncommon + "**\t\t"; } - if (rare > 0) { message += "<:melectronics:462682568911749120> **+" + rare + "**\t\t"; } - if (ultrarare > 0) { message += "<:mgem:462450060718768148> **+" + ultrarare + "**\n\n"; } - message += "\n***" + dialogOptions[randomNumber] + "*** \n" - sendMessage(channelID, message); - } else { - sendMessage(channelID, ":x: <@" + userID + "> You don\'t have enough crystals to sustain you while you\'re out. Bad idea."); - } - } else { - sendMessage(channelID, ":x: <@" + userID + "> You don\'t have enough stamina for that right now. You should probably get some rest."); - } - } else { - sendMessage(channelID, ":x: <@" + userID + "> You\'re in really bad shape... You should go see <@461294299515191306> before you go on a scavenge."); - } -} - - -// Send message handler -function sendMessage(userID, channelID, message) { - // Handle optional first argument (so much for default arugments in node) - if (message === undefined) { - message = channelID; - channelID = userID; - userID = null; - } - - // Utility trick (@userID with an optional argument) - if (userID != null) { - message = "<@" + userID + "> " + message; - } - - // Sends message (needs client var, therefore I think external script won't work) - client.channels.get(channelID).send(message); -} - -// Log our bot in -client.login(process.env.REY_TOKEN); \ No newline at end of file diff --git a/SERVER_City/city.js b/SERVER_City/city.js new file mode 100644 index 0000000..ae15243 --- /dev/null +++ b/SERVER_City/city.js @@ -0,0 +1,3 @@ +// .env Variables +require('dotenv').config({path: '../.env'}); + diff --git a/Shared/inventory.js b/Shared/inventory.js deleted file mode 100644 index 4be4426..0000000 --- a/Shared/inventory.js +++ /dev/null @@ -1,211 +0,0 @@ -//initialize the exports -exports = module.exports = {}; - -/* -// Adds item to inventory -exports.AddItem = function(userID, item, amount) { - // If item exists in inventory - console.log("[Add Item] " + amount); - var i = userItems.findIndex(i => i.name === item.name); - console.log("[Item Amount Item Exists] i Equals " + i); - - // If there is an item that exists in inventory - if (i !== -1) { - console.log("[Item Amount Start] " + userItems[i].amount); - userItems[i].amount += amount; // Increments amount value - console.log("[Item Amount Finish] " + userItems[i].amount); - // Disallows adding objects such as crystals - } else { - console.log("[Item Amount Wait] Created item for the first time."); - var clonedItem = JSON.parse(JSON.stringify(item)); // Clones item in order to not actually increment the rooms.js item JSON data - userItems.push(clonedItem); - addItem(userID, item, amount - 1); - } -} - -// Sends inventory into chat -async function sendInventory(message, pageNum, newMessage) { - var items = ""; - var groupedArr = createGroupedArray(userItems, 5); - - // Sets a default page num, or makes it human readable - if (pageNum === undefined) pageNum = 1; else { - if (pageNum < 1) pageNum = 1; - if (groupedArr.length < pageNum) pageNum = groupedArr.length; - } - - // Checks if page number is valid - if (pageNum > groupedArr.length) { - // If it's longer than actual length, but isn't just an empty inventory - if (!groupedArr.length === 0) return; - } - - //console.log(pageNum); - - // Grabs item in loop, parses it, then adds it to "items" variable - if (groupedArr[pageNum - 1]) { - for (let index = 0; index < groupedArr[pageNum - 1].length; index++) { - // Grabs an item, from a page index - const element = groupedArr[pageNum - 1][index]; - - // Makes if there is an emote, it'll add an extra space - var emoteText = ""; - if (element.emote) emoteText = element.emote + " "; - - // Adds it in - items += `> ${emoteText}**${element.name}** [${element.amount}x] ${element.info}\n`; - } - } - - // No items message to fill field - if (items === "") items = "There are no items in the party's inventory."; - - // To make the message of "Page 1/0" with no items in !inventory not happen - var moddedLength = groupedArr.length; - if (moddedLength < 1) moddedLength = 1; - var moddedPageNum = pageNum; - if (moddedPageNum < 1) moddedPageNum = 1; - - const footer = getFooterCommands("!inventory"); - - // Creates embed & sends it - const inv = new Discord.RichEmbed() - .setAuthor(`${message.member.displayName}`, message.author.avatarURL) - .setColor(message.member.displayColor) - .setDescription("I can appraise your items with `!item [ITEM NAME]`, traveler.") - .addField(`Items (Page ${moddedPageNum}/${moddedLength})`, items) - .setFooter(`Commands: ${footer}`) - - var invMessage; - if (!newMessage) - invMessage = await message.channel.send({embed: inv}); - else { - invMessage = newMessage; - await invMessage.edit({embed: inv}); - } - - // Collector for emotes - const emotes = ['β¬…', '❌', '➑']; - const collector = invMessage.createReactionCollector( - (reaction, user) => emotes.includes(reaction.emoji.name) && user.id !== client.user.id & message.author.id === user.id, { time: 15 * 1000 }); - var react = ""; - var endedOnReact; - - // Sends reactions - if (!newMessage) { - for (let i = 0; i < emotes.length; i++) { - const element = emotes[i]; - console.log(element); - await invMessage.react(element); - } - } - - // Collects reactions - collector.on("collect", async reaction => { - var user = reaction.users.last(); - react = reaction.emoji.name; - if (react !== '❌') { reaction.remove(user); } - endedOnReact = true; - collector.stop(); - }); - - // Clears reactions - collector.once("end", async collecter => { - console.log("[Reaction Options] Ended collector, clearing emotes and sending timing out message if needed."); - - if (!endedOnReact) { - invMessage.clearReactions(); - return message.channel.send(":x: **Timed Out**: The emote reaction request timed out after 15 seconds."); - } - if (react === '❌') { - invMessage.clearReactions(); - return invMessage.edit(invMessage.content); - } - - var pageNumModifier = 0; - if (react === emotes[0]) pageNumModifier -= 1; - if (react === emotes[2]) pageNumModifier += 1; - console.log(pageNum + " | " + pageNumModifier); - sendInventory(message, pageNum + pageNumModifier, invMessage); - }); -} - -// Appraise an item -async function appraiseItem(message) { - const itemName = message.content.replace("!item", "").trim().toLowerCase(); - console.log("[Item Appraisal] " + `<< ${itemName} >>`); - - // Show if no parameter is given - if (itemName === "" || !itemName) { - message.channel.send(`:x: ${message.author} Please tell me the item name from your inventory, or I won't know which item you want me to look at.`); - return; - } - - var i = userItems.findIndex(i => i.name.toLowerCase() === itemName); - console.log("[Item Amount Item Exists] i Equals " + i); - - // If there is an item that exists in inventory - if (i !== -1) { - console.log(`[Item Appraisal] Found item in inventory!`); - const embed = new Discord.RichEmbed() - .setAuthor(`${message.member.displayName}`, message.author.avatarURL) - .setColor(message.member.displayColor) - .setTitle(userItems[i].name) - .setDescription(userItems[i].info) - - if (userItems[i].type.subtype) - embed.addField("Type", `${userItems[i].type.type}\n> ${userItems[i].type.subtype}`, true) - else - embed.addField("Type", `${userItems[i].type.type}`, true) - - if (userItems[i].type.stats) { - console.log(JSON.stringify(userItems[i].type.stats, null, 4)) - var itemStats = "There are no stats avaliable."; - var resetItemStats = false; - userItems[i].type.stats.forEach(element => { - if (element) { - if (!resetItemStats) { - resetItemStats = true; - itemStats = ""; - } - const types = [ - "attack", - "defence", - "speed", - "healing" - ]; - - types.forEach(type => { - if (element[type]) { - switch (type) { - case "attack": - itemStats += `ATK: ${element.attack}\n`; - break; - case "defence": - itemStats += `DEF: ${element.defence}\n`; - break; - case "speed": - itemStats += `SPD: ${element.speed}\n`; - break; - case "healing": - itemStats += `Healing: ${element.healing} HP\n`; - break; - } - } - }); - } - }); - } - - embed.addField("Stats", `${itemStats}`, true); - - message.channel.send(embed); - - // Disallows adding objects such as crystals - } else { - console.log("[Item Appraisal] Couldn't find item in inventory."); - message.channel.send(`:x: ${message.author} I'm unable to find "${itemName}" in your inventory.`); - } -} - -*/ \ No newline at end of file diff --git a/Shared/shared.js b/Shared/shared.js index f0ab3e0..24793bb 100644 --- a/Shared/shared.js +++ b/Shared/shared.js @@ -4,7 +4,6 @@ exports = module.exports = {}; exports = Object.assign(exports, require("./calc_random.js")); exports = Object.assign(exports, require("./data_request.js")); exports = Object.assign(exports, require("./factions.js")); -exports = Object.assign(exports, require("./inventory.js")); exports = Object.assign(exports, require("./messaging.js")); exports = Object.assign(exports, require("./progression.js")); exports = Object.assign(exports, require("./utility.js")); diff --git a/TextAdv/dungeonClass.js b/TextAdv/dungeonClass.js deleted file mode 100644 index ad1dac4..0000000 --- a/TextAdv/dungeonClass.js +++ /dev/null @@ -1,11 +0,0 @@ -// Dungeons -module.exports = class DungeonRaidInstance { - constructor(room, players) { - this.room = room; - this.players = players; - this.location; - this.state = DungeonState.WAITING_FOR_USERS; - this.dialogObj; - this.isTyping; - } -} \ No newline at end of file diff --git a/TextAdv/package.json b/TextAdv/package.json deleted file mode 100644 index 076ef32..0000000 --- a/TextAdv/package.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "nodejs-elasticbeanstalk", - "version": "1.0.0", - "description": "", - "main": "server.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "node server.js" - }, - "author": "", - "license": "ISC", - "dependencies": { - "discord.js": "^11.4.2", - "dotenv": "^6.0.0", - "node-cron": "^1.2.1" - }, - "devDependencies": {} -} diff --git a/TextAdv/playerClass.js b/TextAdv/playerClass.js deleted file mode 100644 index 2704532..0000000 --- a/TextAdv/playerClass.js +++ /dev/null @@ -1,57 +0,0 @@ -module.exports = class PlayerClass { - constructor (userID, factionID, combatClass, badge, leader) { - this.userID = userID; - this.factionID = factionID; - this.combatClass = combatClass; - this.badge = badge; - this.leader = leader; - this.commander; - } - - get factionEmote() { - //server.members.get(factionID).roles.has(process.env.GROUP_A_ROLE) - // Obsidian Tech - if (this.factionID === process.env.GROUP_A_ROLE) { - return "<:anarchy:460990297099337750>" - // Genesis Command - } else if (this.factionID === process.env.GROUP_B_ROLE) { - return "<:order:460991638152413194>"; - // The Hand - } else if (this.factionID === process.env.GROUP_C_ROLE) { - return "<:religionhand:461582719051104276>" - // No faction - } else if (this.factionID === "none") { - return ":beginner:"; - // Unknown - } else { - return ":grey_question:"; - } - } - - // Combat Class emote - get combatClassEmote() { - if (this.combatClass.toLowerCase() === "tank") { - return ":shield:"; - } else if (this.combatClass.toLowerCase() === "rogue") { - return ":dagger:"; - } else if (this.combatClass.toLowerCase() === "dps melee") { - return ":crossed_swords:"; - } else if (this.combatClass.toLowerCase() === "support") { - return ":heart:"; - } else if (this.combatClass.toLowerCase() === "dps range") { - return ":bow_and_arrow:"; - } else { - return ":grey_question:"; - } - } - - get isLeaderText() { - if (this.leader) { - return "(Leader)"; - } else if (this.commander) { - return "(Commander)"; - } else { - return ""; - } - } -} \ No newline at end of file diff --git a/TextAdv/rooms.json b/TextAdv/rooms.json deleted file mode 100644 index f3d45fe..0000000 --- a/TextAdv/rooms.json +++ /dev/null @@ -1,746 +0,0 @@ -{ - "rooms": ["hellsgate"], - "items": { - "key": { - "name": "Key", - "emote": ":key:", - "info": "The key unlocks chests and certain doors.", - "amount": 1, - "dungeonOnly": true - }, - "dungeon_key": { - "name": "Dungeon Key", - "emote": ":key2:", - "info": "It's the dungeon key for moving down the floors.", - "amount": 1, - "dungeonOnly": true - }, - "crystals": { - "name": "Crystals", - "emote": "<:crystals:460974340247257089>", - "internal": true - } - }, - "hellsgate": { - "name": "Hell's Gate", - "id": "hellsgate", - "channel": "464238060243124245", - "color": "#e67e22", - "entrance": { - "name": "Dungeon Entrance", - "descriptions": [ - { "text": "The entrance is a bunch of code cobbled together to make a half-working mass of \"Dungeon\". Hopefully it doesn't kill you, or the party." }, - { "text": "\nThere is a tired **!traveler** that seemed to have learned that idea all too well, try talking to him." } - ], - "image_url": "https://dummyimage.com/800x400/241f1a/e82525.png&text=Room", - "northtext": "Move **!north** to enter the dungeon.", - "easttext": "", - "southtext": "", - "westtext": "", - "floor": 1, - "connections": { - "north": "room_1" - }, - "traveler": { - "npc": true, - "command": true, - "name": "Traveler", - "descriptions": [ - { "waitBegin": 2000, "waitEnd": 1000, "text": "Hello ${leader}, be careful in there." }, - { "waitBegin": 2000, "waitEnd": 1000, "text": "There's a few deadly Ravagers that hurt me real bad." }, - { "waitBegin": 2000, "waitEnd": 1000, "text": "Hopefully you're all in top shape, right?" } - ], - "optionsDescription": { "waitBegin": 800, "waitEnd": 0, "text": "**!yes** or **!no**?" }, - "options": [ - {"command": "yes", "emote": "βœ…"}, - {"command": "no", "emote": "❌"} - ], - "yes": { - "command": true, - "name": "Traveler", - "descriptions": [ - { "waitBegin": 3000, "waitEnd": 2000, "text": "Good to know, hopefully you can walk out alive. Wish you luck!" } - ], - "lastCommand": true - }, - "no": { - "command": true, - "name": "Traveler", - "descriptions": [ - { "waitBegin": 3000, "waitEnd": 2000, "text": "Oh... well good luck anyhow. If you just want to bail out, just **!leave**. You won't get your **<:crystals:460974340247257089> Crystals** back, though." } - ], - "lastCommand": true - } - } - }, - "room_1": { - "name": "Dungeon Room", - "descriptions": [ - {"text": "You can feel the hot air hitting your face entering. Hot lava is seeping out of the rocks. You should watch your step." } - ], - "image_url": "https://dummyimage.com/800x400/241f1a/e82525.png&text=Dungeon+Room", - "northtext": "You can hear loud groans **!north** that don't sound human, ", - "easttext": "", - "southtext": "Go back with **!south**, ", - "westtext": "or investigate the chest down **!west**.", - "floor": 1, - "connections": { - "north": "ravager_room_1", - "south": "entrance", - "west": "locked_chest_room_1" - } - }, - "locked_chest_room_1": { - "name": "A Locked Chest", - "descriptions": [ - {"text": "You found a locked **!chest**! Wonder what lies inside it. Hopefully there is something valuable."} - ], - "image_url": "https://dummyimage.com/800x400/593521/f5c91b.png&text=Chest", - "northtext": "", - "easttext": "Leave the chest by typing **!east**.", - "southtext": "", - "westtext": "", - "floor": 1, - "connections": { - "east": "room_1" - }, - "chest": { - "command": true, - "type": "chest", - "removeItem": ["key"], - "embed": { - "formatting": "author_title_image_desc", - "setAuthor": {"title": "${dungeon.room.name}", "image": "${profile_pic}"}, - "setTitle": "A Locked Chest", - "setDescription": "This chest requires a **:key: Key** to open.\n**:closed_lock_with_key: Unlock** chest with the key.\n:lock_with_ink_pen: **Lockpick** chest, and risk breaking the lock.\n:x: **Exit** options for the chest.", - "waitBegin": 0, - "waitEnd": 0 - }, - "options": [ - {"command": "unlock", "emote": "πŸ”"}, - {"command": "lockpick", "emote": "πŸ”"}, - {"command": "exit", "emote": "❌"} - ], - "unlock": { - "command": true, - "internal": true, - "type": "chest", - "moveFrom": "locked_chest_room_1", - "moveTo": "empty_chest_room_1", - "required": ["key"], - "objects": [ - [ - { - "name": "crystals", - "amount": [5, 10] - } - ], - [ - { - "name": "crystals", - "amount": [18, 22] - } - ] - ] - }, - "lockpick": { - "command": true, - "internal": true, - "type": "chest", - "moveFrom": "locked_chest_room_1", - "moveToFail": "broken_chest_room_1", - "moveTo": "empty_chest_room_1" - }, - "exit": { - "command": true, - "internal": true, - "type": "chest", - "moveTo": "locked_chest_room_1" - } - } - }, - "empty_chest_room_1": { - "name": "An Empty Chest", - "descriptions": [ - {"text": "You have already opened this chest."} - ], - "image_url": "https://dummyimage.com/800x400/593521/f5c91b.png&text=Chest+(Opened)", - "northtext": "", - "easttext": "Leave the chest by typing **!east**.", - "southtext": "", - "westtext": "", - "floor": 1, - "connections": { - "east": "room_1" - } - }, - "broken_chest_room_1": { - "name": "A Broken Chest", - "descriptions": [ - {"text": "This chest has failed to be lockpicked, and cannot be opened."} - ], - "image_url": "https://dummyimage.com/800x400/593521/f5c91b.png&text=Chest+(Broken)", - "northtext": "", - "easttext": "Leave the chest by typing **!east**.", - "southtext": "", - "westtext": "", - "floor": 1, - "connections": { - "east": "room_1" - } - }, - "ravager_room_1": { - "name": "Ravager Room", - "descriptions": [ - {"text": "You found a starving <@458036985353732097>, that hasn't feasted on a traveler for days."} - ], - "image_url": "https://dummyimage.com/800x400/e62b4a/422626.png&text=Ravager", - "northtext": "", - "easttext": "To the party's **!east**, you can see something shiny. ", - "southtext": "Move **!south** to go back. ", - "westtext": "Move **!west** to enter another room.", - "floor": 1, - "ravager": { - "level": [4, 5] - }, - "connections": { - "east": "key_room_1", - "south": "room_1", - "west": "room_2" - } - }, - "key_room_1": { - "name": "A Key", - "descriptions": [ - {"text": "You found a **!key**! You should pick it up."} - ], - "objects": ["key"], - "image_url": "https://dummyimage.com/800x400/73778a/faf5f5.png&text=Key", - "northtext": "", - "easttext": "", - "southtext": "", - "westtext": "Go back with **!west**", - "floor": 1, - "connections": { - "west": "ravager_room_1" - }, - "key": { - "command": "true", - "internal": "true", - "moveTo": "empty_key_room_1", - "moveFrom": "key_room_1", - "pickup": [ - {"item": "key"} - ] - } - }, - "empty_key_room_1": { - "name": "A Key", - "descriptions": [ - {"text": "The key here has been picked up."} - ], - "image_url": "https://dummyimage.com/800x400/73778a/faf5f5.png&text=Key", - "northtext": "", - "easttext": "", - "southtext": "", - "westtext": "Go back with **!west**", - "floor": 1, - "connections": { - "west": "ravager_room_1" - } - }, - "room_2": { - "name": "Dungeon Room", - "descriptions": [ - {"text": "Two rooms can be seen ahead, both with chests."} - ], - "image_url": "https://dummyimage.com/800x400/241f1a/e82525.png&text=Dungeon+Room", - "northtext": "Move **!north** to go to another room with another groan. ", - "easttext": "Back **!east** is a room filled with unconscious ones. ", - "southtext": "", - "westtext": "Move **!west** to check out another chest.", - "floor": 1, - - "connections": { - "north": "ravager_room_2", - "east": "ravager_room_1", - "west": "locked_chest_room_2" - } - }, - "locked_chest_room_2": { - "name": "A Locked Chest", - "descriptions": [ - {"text": "You found a locked **!chest**! Wonder what lies inside it. Hopefully there is something valuable."} - ], - "image_url": "https://dummyimage.com/800x400/593521/f5c91b.png&text=Chest", - "northtext": "", - "easttext": "Leave the chest by typing **!east**.", - "southtext": "", - "westtext": "", - "floor": 1, - "connections": { - "east": "room_2" - }, - "chest": { - "command": true, - "type": "chest", - "removeItem": ["key"], - "embed": { - "formatting": "author_title_image_desc", - "setAuthor": {"title": "${dungeon.room.name}", "image": "${profile_pic}"}, - "setTitle": "A Locked Chest", - "setDescription": "This chest requires a **:key: Key** to open.\n**:closed_lock_with_key: Unlock** chest with the key.\n:lock_with_ink_pen: **Lockpick** chest, and risk breaking the lock.\n:x: **Exit** options for the chest.", - "waitBegin": 0, - "waitEnd": 0 - }, - "options": [ - {"command": "unlock", "emote": "πŸ”"}, - {"command": "lockpick", "emote": "πŸ”"}, - {"command": "exit", "emote": "❌"} - ], - "unlock": { - "command": true, - "internal": true, - "type": "chest", - "moveFrom": "locked_chest_room_2", - "moveTo": "empty_chest_room_2", - "required": ["key"], - "objects": [ - [ - { - "name": "crystals", - "amount": [5, 10] - } - ], - [ - { - "name": "crystals", - "amount": [18, 22] - } - ] - ] - }, - "lockpick": { - "command": true, - "internal": true, - "type": "chest", - "moveFrom": "locked_chest_room_2", - "moveToFail": "broken_chest_room_2", - "moveTo": "empty_chest_room_2" - }, - "exit": { - "command": true, - "internal": true, - "type": "chest", - "moveTo": "locked_chest_room_2" - } - } - }, - "empty_chest_room_2": { - "name": "An Empty Chest", - "descriptions": [ - {"text": "You have already opened this chest."} - ], - "image_url": "https://dummyimage.com/800x400/593521/f5c91b.png&text=Chest+(Opened)", - "northtext": "", - "easttext": "Leave the chest by typing **!east**.", - "southtext": "", - "westtext": "", - "floor": 1, - "connections": { - "east": "room_2" - } - }, - "broken_chest_room_2": { - "name": "A Broken Chest", - "descriptions": [ - {"text": "This chest has failed to be lockpicked, and cannot be opened."} - ], - "image_url": "https://dummyimage.com/800x400/593521/f5c91b.png&text=Chest+(Broken)", - "northtext": "", - "easttext": "Leave the chest by typing **!east**.", - "southtext": "", - "westtext": "", - "floor": 1, - "connections": { - "east": "room_2" - } - }, - "ravager_room_2": { - "name": "Ravager Room", - "descriptions": [ - {"text": "You found another <@458036985353732097>!"} - ], - "image_url": "https://dummyimage.com/800x400/e62b4a/422626.png&text=Ravager", - "northtext": "Move **!north** to find a key. ", - "easttext": "", - "southtext": "Move **!south** to go back. ", - "westtext": "", - "floor": 1, - "ravager": { - "level": [6, 7] - }, - "connections": { - "north": "key_room_2", - "south": "room_2" - } - }, - "key_room_2": { - "name": "A Key", - "descriptions": [ - {"text": "You found a **!key**! You should pick it up."} - ], - "objects": ["key"], - "image_url": "https://dummyimage.com/800x400/73778a/faf5f5.png&text=Key", - "northtext": "", - "easttext": "Snarls are coming from the **!east**. ", - "southtext": "Go back with **!south**. ", - "westtext": "There's another key down **!west**, but at a distance it looks oddly different.", - "floor": 1, - "connections": { - "east": "ravager_room_3", - "west": "dungeon_key_room_1", - "south": "ravager_room_2" - }, - "key": { - "command": "true", - "internal": "true", - "moveTo": "empty_key_room_2", - "moveFrom": "key_room_2", - "pickup": [ - {"item": "key"} - ] - } - }, - "empty_key_room_2": { - "name": "A Key", - "descriptions": [ - {"text": "The key here has been picked up."} - ], - "image_url": "https://dummyimage.com/800x400/73778a/faf5f5.png&text=Key", - "northtext": "", - "easttext": "Snarls are coming from the **!east**. ", - "southtext": "Go back with **!south**. ", - "westtext": "There's another key down **!west**, but at a distance it looks oddly different.", - "floor": 1, - "connections": { - "east": "ravager_room_3", - "west": "dungeon_key_room_1", - "south": "ravager_room_2" - } - }, - "dungeon_key_room_1": { - "name": "The Dungeon Key", - "descriptions": [ - {"text": "You found the dungeon **!key**! This item will be important later, likely."} - ], - "objects": ["key"], - "image_url": "https://dummyimage.com/800x400/555b66/a9b4c9.png&text=+Dungeon+Key", - "northtext": "", - "easttext": "Go back with **!east**.", - "southtext": "", - "westtext": "", - "floor": 1, - "connections": { - "east": "key_room_2" - }, - "key": { - "command": "true", - "internal": "true", - "moveTo": "empty_dungeon_key_room_1", - "moveFrom": "dungeon_key_room_1", - "pickup": [ - {"item": "dungeon_key"}, - {"item": "crystals", "amount": [3, 5]} - ] - } - }, - "empty_dungeon_key_room_1": { - "name": "The Dungeon Key", - "descriptions": [ - {"text": "The dungeon key here has been picked up."} - ], - "objects": ["key"], - "image_url": "https://dummyimage.com/800x400/555b66/a9b4c9.png&text=+Dungeon+Key", - "northtext": "", - "easttext": "Go back with **!east**.", - "southtext": "", - "westtext": "", - "floor": 1, - "connections": { - "east": "key_room_2" - } - }, - "ravager_room_3": { - "name": "Ravager Room", - "descriptions": [ - {"text": "You found a high level <@458036985353732097>!"} - ], - "image_url": "https://dummyimage.com/800x400/e62b4a/422626.png&text=Ravager", - "northtext": "", - "easttext": "Move **!east** towards the next room, containing two locked doors. ", - "southtext": "", - "westtext": "Move back **!west** to find the room with a key again.", - "floor": 1, - "ravager": { - "level": [7, 8] - }, - "connections": { - "east": "room_3", - "west": "key_room_2" - } - }, - "room_3": { - "name": "Dungeon Room", - "descriptions": [ - {"text": "Two locked doors lie before you. They may hold some significance."} - ], - "image_url": "https://dummyimage.com/800x400/241f1a/e82525.png&text=Dungeon+Room", - "northtext": "Move **!north** to enter the first door. ", - "easttext": "Move **!east** to enter the second door. ", - "southtext": "", - "westtext": "To move back, go **!west**.", - "floor": 1, - "connections": { - "north": "locked_door_room_1", - "east": "locked_door_room_2", - "west": "ravager_room_3" - } - }, - "locked_door_room_1": { - "name": "A Locked Door", - "descriptions": [ - {"text": "The first locked door locks growling and scratching here. You can check out the door with **!door**."} - ], - "image_url": "https://dummyimage.com/800x400/bfa897/7a4e4e.png&text=Locked+Door", - "northtext": "", - "easttext": "", - "southtext": "To move back, go **!south**.", - "westtext": "", - "floor": 1, - "connections": { - "south": "room_3" - }, - "door": { - "command": true, - "type": "door", - "removeItem": [{"item": "key", "amount": 1}], - "embed": { - "formatting": "author_title_image_desc", - "setAuthor": {"title": "${dungeon.room.name}", "image": "${profile_pic}"}, - "setTitle": "A Locked Door", - "setDescription": "This door requires a **:key: Key** to open.\n**:closed_lock_with_key: Unlock** door with the key.\n:lock_with_ink_pen: **Lockpick** door, and risk breaking the lock.\n:x: **Exit** options for the door.", - "waitBegin": 0, - "waitEnd": 0 - }, - "options": [ - {"command": "unlock", "emote": "πŸ”"}, - {"command": "lockpick", "emote": "πŸ”"}, - {"command": "exit", "emote": "❌"} - ], - "unlock": { - "command": true, - "internal": true, - "type": "door", - "moveFrom": "locked_door_room_1", - "moveTo": "unlocked_door_room_1", - "required": [{"item": "key", "amount": 1}] - }, - "lockpick": { - "command": true, - "internal": true, - "type": "door", - "moveFrom": "locked_door_room_1", - "moveToFail": "broken_door_room_1", - "moveTo": "unlocked_door_room_1" - }, - "exit": { - "command": true, - "internal": true, - "type": "door", - "moveTo": "locked_door_room_1" - } - } - }, - "unlocked_door_room_1": { - "name": "An Unlocked Door", - "descriptions": [ - {"text": "The first locked door has been opened! Beware the <@458036985353732097>."} - ], - "image_url": "https://dummyimage.com/800x400/bfa897/7a4e4e.png&text=Unlocked+Door", - "northtext": "Move **!north** to meet face-to-face with the Ravager. ", - "easttext": "", - "southtext": "To move back, go **!south**.", - "westtext": "", - "floor": 1, - "connections": { - "north": "ravager_room_4", - "south": "room_3" - } - }, - "ravager_room_4": { - "name": "Ravager Room", - "descriptions": [ - {"text": "You found a locked-in <@458036985353732097>!"} - ], - "image_url": "https://dummyimage.com/800x400/e62b4a/422626.png&text=Ravager", - "northtext": "Move **!north** to the chest, it doesn't have a lock on it! ", - "easttext": "", - "southtext": "Move back **!south** to go to the door.", - "westtext": "", - "floor": 1, - "ravager": { - "level": [8, 9] - }, - "connections": { - "north": "free_chest_room_1", - "south": "locked_door_room_1" - } - }, - "free_chest_room_1": { - "name": "A Chest", - "descriptions": [ - {"text": "You found a **!chest**! Wonder what lies inside it. Hopefully there is something valuable."} - ], - "image_url": "https://dummyimage.com/800x400/593521/f5c91b.png&text=Chest", - "northtext": "", - "easttext": "", - "southtext": "Leave the chest by typing **!south**.", - "westtext": "", - "floor": 1, - "connections": { - "south": "ravager_room_4" - }, - "chest": { - "command": true, - "type": "chest", - "embed": { - "formatting": "author_title_image_desc", - "setAuthor": {"title": "${dungeon.room.name}", "image": "${profile_pic}"}, - "setTitle": "A Chest", - "setDescription": "Do you want to open the chest?\n**:unlock: Unlock** chest.\n:x: **Exit** options for the chest.", - "waitBegin": 0, - "waitEnd": 0 - }, - "options": [ - {"command": "unlock", "emote": "πŸ”“"}, - {"command": "exit", "emote": "❌"} - ], - "unlock": { - "command": true, - "internal": true, - "type": "chest", - "moveFrom": "free_chest_room_1", - "moveTo": "empty_free_chest_room_1", - "objects": [ - [ - { - "name": "crystals", - "amount": [18, 22] - } - ] - ] - }, - "exit": { - "command": true, - "internal": true, - "type": "chest", - "moveTo": "free_chest_room_1" - } - } - }, - "empty_free_chest_room_1": { - "name": "An Empty Chest", - "descriptions": [ - {"text": "You have already opened this chest."} - ], - "image_url": "https://dummyimage.com/800x400/593521/f5c91b.png&text=Chest+(Opened)", - "northtext": "", - "easttext": "", - "southtext": "Leave the chest by typing **!south**.", - "westtext": "", - "floor": 1, - "connections": { - "south": "ravager_room_4" - } - }, - "locked_door_room_2": { - "name": "A Locked Door", - "descriptions": [ - {"text": "The second locked door leads to the end of the dungeon. You can check out the door with **!door**."} - ], - "image_url": "https://dummyimage.com/800x400/bfa897/7a4e4e.png&text=Locked+Door", - "northtext": "", - "easttext": "", - "southtext": "", - "westtext": "To move back, go **!west**.", - "floor": 1, - "connections": { - "west": "room_3" - }, - "door": { - "command": true, - "type": "door", - "removeItem": [{"item": "dungeon_key", "amount": 1}], - "embed": { - "formatting": "author_title_image_desc", - "setAuthor": {"title": "${dungeon.room.name}", "image": "${profile_pic}"}, - "setTitle": "A Locked Door", - "setDescription": "This door requires a **:key2: Dungeon Key** to open.\n**:closed_lock_with_key: Unlock** door with the dungeon key.\n:x: **Exit** options for the door.", - "waitBegin": 0, - "waitEnd": 0 - }, - "options": [ - {"command": "unlock", "emote": "πŸ”"}, - {"command": "exit", "emote": "❌"} - ], - "unlock": { - "command": true, - "internal": true, - "type": "door", - "moveFrom": "locked_door_room_2", - "moveTo": "unlocked_door_room_2", - "required": [{"item": "dungeon_key", "amount": 1}] - }, - "exit": { - "command": true, - "internal": true, - "type": "door", - "moveTo": "locked_door_room_2" - } - } - }, - "unlocked_door_room_2": { - "name": "An Unlocked Door", - "descriptions": [ - {"text": "The second locked door has been opened! You may now exit the dungeon in the final room."} - ], - "image_url": "https://dummyimage.com/800x400/bfa897/7a4e4e.png&text=Unlocked+Door", - "northtext": "", - "easttext": "The final room lies down **!east**.", - "southtext": "", - "westtext": "To move back, go **!west**.", - "floor": 1, - "connections": { - "east": "final_room", - "west": "room_3" - } - }, - "final_room": { - "name": "Dungeon Room", - "descriptions": [ - {"text": "You can see the exit from here. There is a gate that opens to the outside."} - ], - "image_url": "https://dummyimage.com/800x400/69584b/ffffff.png&text=Dungeon+Exit", - "northtext": "Move **!north** to leave the dungeon. ", - "easttext": "", - "southtext": "", - "westtext": "Move **!west** to go back inside to get anything that has been missed.", - "floor": 1, - "connections": { - "north": "__END", - "west": "locked_door_room_2" - } - } - } -} \ No newline at end of file diff --git a/TextAdv/textadv.js b/TextAdv/textadv.js deleted file mode 100644 index 3355262..0000000 --- a/TextAdv/textadv.js +++ /dev/null @@ -1,2105 +0,0 @@ -// .env Variables -require('dotenv').config({path: '../.env'}); - -// Node Modules -const Discord = require('discord.js'); -const client = new Discord.Client(); -const cron = require('node-cron'); - -// Bot Modules -const dataRequest = require('../modules/dataRequest'); -const calcRandom = require('../modules/calcRandom'); -const PlayerClass = require('./playerClass'); -const DungeonClass = require('./dungeonClass'); - -// JSON -const rooms = require('./rooms.json'); - -// Playing dialogs -const nothingMessage = "with locks." - -// State Machine -var BotEnumState = { - NOTHING: 0, - WAITING_FOR_PLAYERS: 1, - ACTIVE: 2 -} - -// Directions -var Directions = { - NORTH: 0, - EAST: 1, - SOUTH: 2, - WEST: 3 -} - -// Dungeon State -var DungeonState = { - WAITING_FOR_USERS: 0, - INSIDE_DUNGEON: 1, - FIGHTING: 2, - BOSS_BATTLE: 3 -} - -// Modes (these better not be final, me.) -var DungeonModes = { - HEIRARCHY: 0, // Uses heirarchy to determine movement - ANARCHY: 1, // Anyone can determine movement - DEMOCRACY: 2 // Voting system -} - -// Dungeons -class DungeonRaidInstance { - constructor(room) { - this.room = room; - this.mode = DungeonModes.DEMOCRACY; - this.players = []; - this.location; - this.state = DungeonState.WAITING_FOR_USERS; - this.dialogObj; - this.reroutedRooms = []; - this.items = []; - this.isTyping; - this.timer; - this.startTimer; - this.crystalsGained = 0; - this.directionalCollector; - this.directionalMessageID; - } -} - -// Dungeon collections; -var dungeonCollection = []; - -// The ready event is vital, it means that your bot will only start reacting to information -// from Discord _after_ ready is emitted -client.on('ready', async () => { - // Generates invite link - try { - let link = await client.generateInvite(["ADMINISTRATOR"]); - console.log("Invite Link: " + link); - } catch(e) { - console.log(e.stack); - } - - // You can set status to 'online', 'invisible', 'away', or 'dnd' (do not disturb) - client.user.setStatus('invisible'); - - console.log(`Connected! \ - \nLogged in as: ${client.user.username} - (${client.user.id})`); - - //client.guilds.get(process.env.SANCTUM_ID).members.get(client.user.id).setNickname(""); -}); - -// Create an event listener for messages -client.on('message', async message => { - // Ignores ALL bot messages - if (message.author.bot) return; - // Message has to be in test or hell's gate - if (!(message.channel.id !== process.env.TEST_CHANNEL_ID || message.channel.id !== process.env.HELLS_GATE_CHANNEL_ID)) { - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - if (command !== "party") return; - }; - // Has to be (prefix)command - if (message.content.indexOf(process.env.PREFIX) !== 0) return; - - // "This is the best way to define args. Trust me." - // - Some tutorial dude on the internet - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - - switch (command) { - case "ping": - if (isAdmin(message.author.id)) { - return message.reply("Pong!"); - } - break; - case "summonr": - if (isAdmin(message.author.id)) { - return NewDungeonSequence(process.env.TEST_CHANNEL_ID); - } - break; - case "vanishr": - if (isAdmin(message.author.id) && getDungeonPlayer(message.author.id).playerDungeon !== undefined) { - return BotActive(getDungeonPlayer(message.author.id).playerDungeon); - } - break; - case "help": - if (args[0] && message.mentions.members.first() !== undefined) { - if (message.mentions.members.first().id !== client.user.id) break; - let tempVar = ''; - tempVar += "Here are the commands you can do." - tempVar += "\n\n" - tempVar += "!map (!m)\n```Checks your high-tech map about the dungeon.```" - tempVar += "\n" - tempVar += "!party (!p)\n```Lists all members in your party.```" - tempVar += "\n" - tempVar += "!promote (!pr)\n```If you're the leader, you can promote others to be a party leader with you in order to move around.```" - tempVar += "\n" - tempVar += "!demote (!de)\n```If you're the leader, you can demote others if needed if they are a commander.```" - return sendMessage(message.channel.id, tempVar); - } - break; - case "leave": - leaveMessage(message); - break; - } - - // Scans if player is in the raid collection - const dungeonPlayer = getDungeonPlayer(message.author.id); - var isLeader = dungeonPlayer.isLeader; // Gets if author is leader of raid - var isCommander = dungeonPlayer.isCommander; // Gets if userID is commander - var playerID = dungeonPlayer.playerID; // Grabs message.author if this is part of raid - var playerDungeon = dungeonPlayer.playerDungeon; // Grab's the player's dungeon if joined - - // If user has not joined a party - /* - if (!playerID) { - switch (command) { - case "join": - joinMessage(message, getRoomName(args[0])); - break; - case "j": - joinMessage(message, getRoomName(args[0])); - break; - } - } - */ - - // Party member commands only - if (!playerID) return; - - // Party commands - switch (command) { - case "check": - return sendMessage(message.author.id, message.channel.id, "Please use **!map** for checking the map."); - case "members": - if (args[0] !== undefined) { - var num = Math.floor(parseInt(args[0])); - if (Number.isSafeInteger(num) && Math.sign(num) > 0) { - return partyMembers(playerDungeon, num); - } - } else { - return partyMembers(playerDungeon); - } - break; - case "party": - if (args[0] !== undefined) { - var num = Math.floor(parseInt(args[0])); - if (Number.isSafeInteger(num) && Math.sign(num) > 0) { - return partyMembers(playerDungeon, num); - } - } else { - return partyMembers(playerDungeon); - } - break; - case "p": - if (args[0] !== undefined) { - var num = Math.floor(parseInt(args[0])); - if (Number.isSafeInteger(num) && Math.sign(num) > 0) { - return partyMembers(playerDungeon, num); - } - } else { - return partyMembers(playerDungeon); - } - break; - case "promote": - return promoteCommander(message.author, message.mentions.members.first(), isLeader, message.channel.id); - case "pr": - return promoteCommander(message.author, message.mentions.members.first(), isLeader, message.channel.id); - case "demote": - return demoteCommander(message.author, message.mentions.members.first(), isLeader, message.channel.id); - case "de": - return demoteCommander(message.author, message.mentions.members.first(), isLeader, message.channel.id); - case "transferleadership": - return transferLeader(message, message.mentions.members.first()); - case "giveleadership": - return transferLeader(message, message.mentions.members.first()); - case "map": - return sendEmbedLocation(playerDungeon); - case "m": - return sendEmbedLocation(playerDungeon); - case "location": - return sendEmbedLocation(playerDungeon); - case "l": - return sendEmbedLocation(playerDungeon); - case "locationtext": - return sendLocation(playerDungeon, message.author); - case "lt": - return sendLocation(playerDungeon, message.author); - case "pinventory": - if (args[0] !== undefined) { - var num = Math.floor(parseInt(args[0])); - if (Number.isSafeInteger(num) && Math.sign(num) > 0) { - return sendInventory(playerDungeon, num); - } - } else { - return sendInventory(playerDungeon); - } - case "pinv": - if (args[0] !== undefined) { - var num = Math.floor(parseInt(args[0])); - if (Number.isSafeInteger(num) && Math.sign(num) > 0) { - return sendInventory(playerDungeon, num); - } - } else { - return sendInventory(playerDungeon); - } - case "pi": - if (args[0] !== undefined) { - var num = Math.floor(parseInt(args[0])); - if (Number.isSafeInteger(num) && Math.sign(num) > 0) { - return sendInventory(playerDungeon, num); - } - } else { - return sendInventory(playerDungeon); - } - case "timer": - return sendTimerInChat(playerDungeon); - case "cleardialog": - console.log("Clearing player dungeon by command trigger..."); - playerDungeon.dialogObj = undefined; - return; - case "debug": - console.log(playerDungeon.reroutedRooms); - return; - } - - // The dungeon has to be active now - if (playerDungeon.state === DungeonState.WAITING_FOR_USERS) { - //return sendMessage(message.author.id, message.channel.id, "**Command denied.** Please wait for until the dungeon closes."); - return; - } - - // Custom commands from JSON - if (playerDungeon.dialogObj === undefined) { - var newCommand = playerDungeon.location[command]; - customCommands(newCommand, playerDungeon, message.author, command, args); - // More custom commands that are children from other custom commands - } else { - var newCommand = playerDungeon.dialogObj[command]; - customCommands(newCommand, playerDungeon, message.author, command, args); - return; - } - - // Leader or commander only commands (movement) - return; - switch (command) { - case "north": - move(Directions.NORTH, playerDungeon, (isLeader || isCommander), message.author); - break; - case "n": - move(Directions.NORTH, playerDungeon, (isLeader || isCommander), message.author); - break; - case "east": - move(Directions.EAST, playerDungeon, (isLeader || isCommander), message.author); - break; - case "e": - move(Directions.EAST, playerDungeon, (isLeader || isCommander), message.author); - break; - case "south": - move(Directions.SOUTH, playerDungeon, (isLeader || isCommander), message.author); - break; - case "s": - move(Directions.SOUTH, playerDungeon, (isLeader || isCommander), message.author); - break; - case "west": - move(Directions.WEST, playerDungeon, (isLeader || isCommander), message.author); - break; - case "w": - move(Directions.WEST, playerDungeon, (isLeader || isCommander), message.author); - break; - case "mode": - - break; - case "m": - - break; - } -}); - -client.on('error', console.error); -client.on('warn', console.warn); - -// Gets if user has an Overseers rank -function isAdmin(userID) { - var guild = client.guilds.get(process.env.SANCTUM_ID); - return guild.members.get(userID).roles.find(role => role.name === "Overseers"); -} - -// Creates an array that creates multiple different arrays inside of that array -> [[1, 2, 3], [4, 5, 6], [7, 8, 9]] -// http://www.frontcoded.com/splitting-javascript-array-into-chunks.html -var createGroupedArray = function(arr, chunkSize) { - var groups = [], i; - for (i = 0; i < arr.length; i += chunkSize) { - groups.push(arr.slice(i, i + chunkSize)); - } - return groups; -} - -// Gets the user's role by member -function getFactionID(member) { - var playerRole; - var isGroupA = member.roles.has(process.env.GROUP_A_ROLE); - var isGroupB = member.roles.has(process.env.GROUP_B_ROLE); - var isGroupC = member.roles.has(process.env.GROUP_C_ROLE); - - if (isGroupA) playerRole = process.env.GROUP_A_ROLE; - else if (isGroupB) playerRole = process.env.GROUP_B_ROLE; - else if (isGroupC) playerRole = process.env.GROUP_C_ROLE; - else playerRole = "none"; - - return playerRole; -} - -// Gets the Combat Class name by role -function getCombatClassName(member) { - var combatClass; - var isTank = member.roles.find(role => role.name === "πŸ›‘οΈ Tank"); - var isRogue = member.roles.find(role => role.name === "πŸ—‘οΈ Rogue"); - var isDPSMelee = member.roles.find(role => role.name === "βš”οΈ DPS Melee"); - var isDPSRange = member.roles.find(role => role.name === "🏹 DPS Range"); - var isSupport = member.roles.find(role => role.name === "❀️ Support"); - - if (isTank) combatClass = "Tank"; - else if (isRogue) combatClass = "Rogue"; - else if (isDPSMelee) combatClass = "DPS Melee"; - else if (isDPSRange) combatClass = "DPS Range"; - else if (isSupport) combatClass = "Support"; - else combatClass = "None"; - - return combatClass; -} - -// Returns JSON room data by room name -function getRoomName(name) { - if (name !== undefined) { - if (name.toLowerCase() === "hellsgate") - return rooms.hellsgate; - } else { - name = ""; - } - - return { "undefined": name }; -} - -// Updates Player data in Dungeon Collection -function updatePlayers() { - // Scans if player is in the raid collection - // Totally seemingly not intensive test of for loops (Wish I knew) - if (dungeonCollection !== undefined) { - // Loops through every dungeon active - for (let index = 0; index < dungeonCollection.length; index++) { - const dungeonElement = dungeonCollection[index]; - - // Loops through every player in that dungeon - for (let index = 0; index < dungeonElement.players.length; index++) { - const playerElement = dungeonElement.players[index]; - const thisGuild = client.guilds.get(process.env.SANCTUM_ID); - const newMember = thisGuild.members.get(playerElement.userID); - // If user is in one of the dungeon - if (newMember) { - // Start updating - playerElement.factionID = getFactionID(newMember); - playerElement.combatClass = getCombatClassName(newMember); - //playerElement.badgeEmote; - } - } - } - } -} - -// Collects usable username for !party -function playerName(userID) { - const server = client.guilds.get(process.env.SANCTUM_ID); - const sizeLimit = 19; - var name = server.members.get(userID).displayName; - - if (name.length > sizeLimit) { - name = truncate(name, sizeLimit); - } - return name; -} - -// Truncates super long text that is way too lon... -function truncate(string, amount) { - if (string.length > amount) - return string.substring(0, amount - 3) + '...'; - else - return string; -}; - -// Gets dungeon player by userID -function getDungeonPlayer(userID) { - // Scans if player is in the raid collection - var isLeader = false; // Gets if author is leader of raid - var isCommander = false; // Gets if user is commander - var playerID; // Grabs userID if this is part of raid - var playerDungeon; // Grabs the player's dungeon if joined - var player; // Gets player class - - // Totally seemingly not intensive test of for loops (Wish I knew) - if (dungeonCollection !== undefined) { - // Loops through every dungeon active - for (let index = 0; index < dungeonCollection.length; index++) { - const dungeonElement = dungeonCollection[index]; - //console.log("dungeonElement | " + dungeonElement); - - // Loops through every player in that dungeon - for (let index = 0; index < dungeonElement.players.length; index++) { - const playerElement = dungeonElement.players[index]; - //console.log("playerElement | " + playerElement); - - // If user is in one of the dungeon - if (userID === playerElement.userID) { - playerID = userID; - player = playerElement; - playerDungeon = dungeonElement; // Sets player's dungeon to this - - if (playerElement.leader) { - isLeader = true; - } - - if (playerElement.commander) { - isCommander = true; - } - } - } - } - } else { console.log("UNDEFINED DUNGEON COLLECTION" + dungeonCollection) } - - return { isLeader, isCommander, playerID, playerDungeon, player }; -} - -// Async Waiting -function sleep(time) { - return new Promise((resolve, reject) => { - setTimeout(resolve, time); - }); -} - -// Checks for if custom command is valid -async function customCommands(newCommand, playerDungeon, author, command, args) { - function items() { - var array = []; - newCommand.pickup.forEach(element => { - array.push(element); - }); - } - - // Grabs the object if it exists - console.log(`[Custom Commands] Type I | newCommand exists: ${newCommand !== undefined}`) - if (newCommand !== undefined && newCommand.command) { - if (playerDungeon.state === DungeonState.WAITING_FOR_USERS) return; - console.log(`[Custom Commands] Type II | internal: ${newCommand.internal} | command: ${command}`); - // If command is meant to be an internal, inscript command - if (newCommand.internal) { - if (newCommand.pickup) - pickupItem(playerDungeon, newCommand, author, newCommand.pickup); - } else { - playerDungeon.dialogObj = newCommand; - typingDialog(playerDungeon, newCommand, author); - } - } -} - -// Executes custom commands by emote text -function customCommandEmoteProcessor(playerDungeon, newCommand, author, returnElement, newMessage) { - //console.log("[Emote Processor] Emote reaction custom command: " + JSON.stringify(returnElement, null, 4)); - //console.log("[Emote Processor] newCommand: " + JSON.stringify(newCommand, null, 4)); - console.log("[Emote Processor] newCommand.type = " + newCommand.type); - switch (newCommand.type) { - case "chest": - switch (returnElement.emote) { - // JSON : chest.options.unlock - case "πŸ”“": - openChest(playerDungeon, newCommand[returnElement.command], author, false, newMessage, newCommand.embed) - break; - case "πŸ”": - openChest(playerDungeon, newCommand[returnElement.command], author, true, newMessage, newCommand.embed); - break; - case "πŸ”": - lockpickChest(playerDungeon, newCommand, author, newMessage, newCommand.embed); - break; - case "❌": - leaveObject(playerDungeon, newCommand[returnElement.command], author); - break; - } - break; - - case "door": - switch (returnElement.emote) { - case "πŸ”": - openDoor(playerDungeon, newCommand[returnElement.command], author, returnElement, newMessage, newCommand.embed); - break; - case "πŸ”": - lockpickDoor(playerDungeon, newCommand, author, newMessage, newCommand.embed); - break; - case "❌": - leaveObject(playerDungeon, newCommand[returnElement.command], author); - break; - } - break; - } -} - -// Adds item to inventory -function addItem(playerDungeon, item, amount) { - // If item exists in inventory - console.log("[Add Item] " + amount); - var i = playerDungeon.items.findIndex(i => i.name === item.name); - console.log("[Item Amount Item Exists] i Equals " + i); - - // Item is internally handled - if (item.internal) { - switch (item.name.toLowerCase()) { - case "crystals": - addCrystalsToPartyMember(playerDungeon, amount); - break; - - default: - break; - } - } - - // If there is an item that exists in inventory - if (i !== -1) { - console.log("[Item Amount Start] " + playerDungeon.items[i].amount); - playerDungeon.items[i].amount += item.amount; // Increments amount value - console.log("[Item Amount Finish] " + playerDungeon.items[i].amount); - // Disallows adding objects such as crystals - } else if (!item.internal) { - console.log("[Item Amount Wait] Created item for the first time."); - var clonedItem = JSON.parse(JSON.stringify(item)); // Clones item in order to not actually increment the rooms.js item JSON data - playerDungeon.items.push(clonedItem); - } -} - -// Removes item from party inventory (TODO: multi item stacks & only take one item) -function removeItem(playerDungeon, item, amount) { - let i = playerDungeon.items.findIndex( i => i.name === item.name ); - console.log("[Remove Item] i Equals " + i + ` | For item: ${item.name}`); - if (i !== -1) { - if (playerDungeon.items[i].amount > 2) { - console.log("[Item Amount Start] " + playerDungeon.items[i].amount); - playerDungeon.items[i].amount -= item.amount; // Decrements amount value - console.log("[Item Amount Finish] " + playerDungeon.items[i].amount); - } - else { - console.log("[Item Amount Wait] Destroying item:\n" + playerDungeon.items.length); - playerDungeon.items.splice(i, 1); - console.log("[Item Amount Done] Finished Destroying item:\n" + playerDungeon.items.length); - } - - console.log("[Remove Item] Successfully removed item " + item.name + " from " + playerDungeon.room.name) - return true; - } - console.log("[Remove Item] Couldn't remove item!"); - return false; -} - -// Adds crystals to EACH player dungeon players (GAMBLE IS BEING USED TO ADD) -function addCrystalsToPartyMember(playerDungeon, amount) { - playerDungeon.players.forEach(element => { - dataRequest.sendServerData("gambleWon", amount, element.userID); - playerDungeon.crystalsGained += amount; - }); -} - -// Pickup Item -async function pickupItem(playerDungeon, newCommand, author, items) { - // Loops through all the items in array, and adds them into the item string - var itemString = ""; - console.log("[Pickup Item] JSON Data:\n" + JSON.stringify(items, null, 4)); - for (let i = 0; i < items.length; i++) { - const element = items[i].item; - const item = rooms.items[element]; - console.log("[Pickup Item] " + element + "\nJSON:\n" + JSON.stringify(item, null, 4)); - // Emote processing - var emoteText = ""; - if (item.emote !== undefined && item.emote !== "") emoteText = `${item.emote} `; - - // Adds to item string & inventory - var amount = 1; - // Generates random number if array - if (Array.isArray(items[i].amount)) - amount = calcRandom.random(items[i].amount[0], items[i].amount[1]); - // Treats it as an int instead - else { - // If amount variables exists, set it to so - if (items[i].amount) amount = items[i].amount; - } - - var newAmount; - switch (element) { - // Meant to have each player get a set amount of crystals - case "crystals": - newAmount = amount * playerDungeon.players.length; - break; - // Normal handling - default: - newAmount = amount; - break; - } - - itemString += `> **${emoteText}${item.name}** [${newAmount}x]\n`; - addItem(playerDungeon, item, amount); - } - - // Sends embed - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", client.user.avatarURL) - .setColor(playerDungeon.room.color) - .setTitle("Item Get!") - .setDescription(`You picked up...\n${itemString}You can find it in the party's **!pinventory**.\nAny collected crystals or materials will be distributed evenly.`) - - client.channels.get(playerDungeon.room.channel).send({embed}); - - // Debug - // console.log("DEBUG JSON DATA: " + JSON.stringify(item. null, 4)); - - await sleep(2500); - playerDungeon.dialogObj = newCommand; - playerDungeon.reroutedRooms.push([newCommand.moveFrom, newCommand.moveTo]); - move(newCommand.moveTo, playerDungeon, true, author); - playerDungeon.dialogObj = undefined; -} - -// Lock picks a chest -async function lockpickChest(playerDungeon, newCommand, author, newMessage, embedData) { - var random = calcRandom.gamble(50); - var channel = client.channels.get(playerDungeon.room.channel); - var successMessage = `:lock_with_ink_pen: **You have successfully lockpicked the chest!** The party has saved a key.`; - var failedMessage = `:lock_with_ink_pen: **The unlock has failed.** Better luck next time!`; - if (random) { - if (!embedData) { - if (!newMessage) - channel.send(successMessage); - } else { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle) - .setDescription("...") - - await newMessage.edit({embed}); - embed.description = successMessage; - newMessage.edit({embed}); - } - await sleep(2500); - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle) - .setDescription("...") - - await newMessage.edit({embed}); - lootChest(playerDungeon, newCommand.unlock, author, newMessage, embedData); - } else { - if (!embedData) - channel.send(failedMessage); - else { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle) - .setDescription("...") - - await newMessage.edit({embed}); - embed.description = failedMessage; - newMessage.edit({embed}); - } - await sleep(2500); - - playerDungeon.dialogObj = newCommand.lockpick; - move(newCommand.lockpick.moveToFail, playerDungeon, true, author); - playerDungeon.dialogObj = undefined; - } -} - -// Opens the chest -async function openChest(playerDungeon, newCommand, author, useKey, newMessage, embedData) { - var successMessage = `${author} used the **:key: Key** to open the chest.`; - var failedMessage = "The party does not have a **:key: Key** to :closed_lock_with_key: unlock this chest."; - - console.log("[Open Chest] " + successMessage + " | " + failedMessage); - - if (useKey && playerDungeon.dialogObj.removeItem) { - // Checks for key in inventory - let removeKey = playerDungeon.items.findIndex( i => i.name === "Key" ); - console.log("[Remove Key] " + removeKey); - - // If key exist - if (removeKey !== -1) { - removeItem(playerDungeon, rooms.items["key"]); - if (!embedData) - sendMessage(author.id, playerDungeon.room.channel, successMessage) - else { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle + ": Unlocking") - .setDescription("...") - - await newMessage.edit({embed}); - embed.description = successMessage; - newMessage.edit({embed}); - await sleep(2500); - } - } else { - if (!embedData) - sendMessage(author.id, playerDungeon.room.channel, failedMessage); - else { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle) - .setDescription("...") - - await newMessage.edit({embed}); - embed.description = failedMessage; - newMessage.edit({embed}); - await sleep(2500); - } - - return typingDialog(playerDungeon, playerDungeon.dialogObj, author); - } - } else { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle) - .setDescription("...") - - await newMessage.edit({embed}); - } - - // Open chest - lootChest(playerDungeon, newCommand, author, newMessage, embedData); -} - -// Lockpicks door (lockpickChest IS VERY SIMILAR) -async function lockpickDoor(playerDungeon, newCommand, author, newMessage, embedData) { - var random = calcRandom.gamble(50); - var channel = client.channels.get(playerDungeon.room.channel); - var successMessage = `:lock_with_ink_pen: **You have successfully lockpicked the door!** The party has saved a key.`; - var failedMessage = `:lock_with_ink_pen: **The unlock has failed.** Better luck next time!`; - if (random) { - if (!embedData) { - if (!newMessage) - channel.send(successMessage); - } else { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle) - .setDescription("...") - - - await newMessage.edit({embed}); - embed.description = successMessage; - newMessage.edit({embed}); - } - await sleep(2500); - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle) - .setDescription("...") - - - await newMessage.edit({embed}); - actualOpenDoor(playerDungeon, newCommand.unlock, author, newMessage, embedData); - } else { - if (!embedData) - channel.send(failedMessage); - else { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle) - .setDescription("...") - - - await newMessage.edit({embed}); - embed.description = failedMessage; - newMessage.edit({embed}); - } - await sleep(2500); - - playerDungeon.dialogObj = newCommand.lockpick; - move(newCommand.lockpick.moveToFail, playerDungeon, true, author); - playerDungeon.dialogObj = undefined; - } -} - -// Opens the door (TODO: ADD NO EMOTE COMPATIBILITY, AND REMOVE KEY) -async function openDoor(playerDungeon, newCommand, author, returnElement, newMessage, embedData) { - var hasAllItems = true; - const noneString = "**> [None]**\n"; - var itemsHasString = noneString; - var itemsNotHaveString = noneString; - console.log("[Open Door] JSON Data: " + JSON.stringify(newCommand, null, 4) + "\nreturnElement: " + JSON.stringify(returnElement, null, 4)); - // Loops over all items - for (let i = 0; i < newCommand.required.length; i++) { - // Element = item object - const objData = newCommand.required[i]; // Contains data from rooms.json - const item = rooms.items[objData.item]; - - // Checks for key in inventory - let itemRemove = playerDungeon.items.findIndex( i => i.name === item.name ); - console.log("[Remove Item Door] " + "itemRemove = " + itemRemove); - - // If item exist - var failed; - if (itemRemove !== -1) { - if (removeItem(playerDungeon, item, objData.amount)) { - if (itemsHasString === noneString) itemsHasString = ""; // Erases None string - itemsHasString += `**> ${item.emote} ${item.name} [${objData.amount}x]**\n`; - } - else { - console.log(`[Remove Item Door] Remove fail at removeItem().`) - failed = true; - } - } else { - console.log(`[Remove Item Door] Couldn't find item name.`) - failed = true; - } - - if (failed) { - hasAllItems = false; - if (itemsNotHaveString === noneString) itemsNotHaveString = ""; // Erases None string - itemsNotHaveString += `**> ${item.emote} ${item.name} [${objData.amount}x]**\n`; - } - } - - // Variables - var successMessage = `${author} used:\n${itemsHasString} to open the door.`; - var failedMessage = `The party does have:\n${itemsHasString}However, the party does not have:\n${itemsNotHaveString}\n...in order to :closed_lock_with_key: unlock the door.`; - console.log("[Open Door] " + successMessage + " | " + failedMessage); - - // If no items needed - if (hasAllItems) { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle + ": Unlocking") - .setDescription("...") - - await newMessage.edit({embed}); - embed.description = successMessage; - newMessage.edit({embed}); - await sleep(2500); - } else { - // Send fail message - if (!embedData) - sendMessage(author.id, playerDungeon.room.channel, failedMessage); - else { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle) - .setDescription("...") - - await newMessage.edit({embed}); - embed.description = failedMessage; - newMessage.edit({embed}); - await sleep(2500); - } - - return typingDialog(playerDungeon, playerDungeon.dialogObj, author); - } - - actualOpenDoor(playerDungeon, newCommand, author, newMessage, embedData); -} - -function actualOpenDoor(playerDungeon, newCommand, author, newMessage, embedData) { - if (newMessage) { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle + ": Unlocking") - .setDescription(`:unlock: The door has been opened!`) - - newMessage.edit({embed}); - } - - playerDungeon.dialogObj = newCommand; - playerDungeon.reroutedRooms.push([newCommand.moveFrom, newCommand.moveTo]); - move(newCommand.moveTo, playerDungeon, true, author); - playerDungeon.dialogObj = undefined; -} - -// Loots the chest (TODO: REMOVE GAMBLWON ON SENDSERVERDATA) -async function lootChest(playerDungeon, newCommand, author, newMessage, embedData) { - var channel = client.channels.get(playerDungeon.room.channel); - var content = `:lock: **Opening chest.`; - var openMessage = `:unlock: **You obtained :wind_blowing_face: Air!** This item will be distributed through the party at random.`; - // Generates a random item drop group - //console.log(JSON.stringify(newCommand, null, 4)); - var randomDropGroup = calcRandom.random(0, newCommand.objects.length - 1); - var randomItemGroup = calcRandom.random(0, newCommand.objects[randomDropGroup].length - 1) - - /* - console.log("newCommand.objects: " + JSON.stringify(newCommand.objects, null, 4)); - console.log("newCommand.objects.length: " + newCommand.objects.length); - console.log("newCommand.objects[randomDropGroup]: " + JSON.stringify(newCommand.objects[randomDropGroup], null, 4));= - console.log("newCommand.objects[0][0]: " + JSON.stringify(newCommand.objects[0][0], null, 4)); - console.log("IF THIS DOESNT WORK, AHHH: " + newCommand.objects[0][0].name) - */ - - console.log("[RNG] " + randomDropGroup + " " + randomItemGroup + " | " + newCommand.objects[randomDropGroup].length); - var randomItem = newCommand.objects[randomDropGroup][randomItemGroup]; - - switch (randomItem.name) { - case "crystals": - if (randomItem["amount"]) { - var amount = calcRandom.random(randomItem["amount"][0], randomItem["amount"][1]); - openMessage = `:unlock: **You obtained <:crystals:460974340247257089> ${amount * playerDungeon.players.length} Crystals!** This item will be distributed through the party evenly.`; - addCrystalsToPartyMember(playerDungeon, amount); - } - break; - - case "materials": - openMessage = `:unlock: **You obtained materials that I have implemented!**`; - break; - - default: - console.warn("Message not in switch statement: " + randomItem.name) - break; - } - - if (!embedData || !newMessage) { - var message = await channel.send(content + "**").catch(console.error); - } else { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle + ": Unlocking") - .setDescription(content + "**") - - newMessage.edit({embed}); - } - - for (let index = 1; index < 3; index++) { - var stringOfDots = ""; - - for (let i = 0; i < index; i++) { - console.log("[Loot Chest] | Number of dots: " + index); - stringOfDots += "."; - } - - await sleep(750); - console.log("[Loot Chest] " + content + stringOfDots + " | " + index); - if (!embedData) - await message.edit(content + stringOfDots + "**"); - else { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle + ": Unlocking") - .setDescription(content + stringOfDots + "**") - - await newMessage.edit({embed}) - } - } - - await sleep(750); - if (!embedData) - message.edit(openMessage); - else { - var dungeonName = embedData.setAuthor.title.replace("${dungeon.room.name}", playerDungeon.room.name); - var newImage = embedData.setAuthor.image.replace("${profile_pic}", client.user.avatarURL); - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(embedData.setTitle + ": Unlocked") - .setDescription(openMessage) - - newMessage.edit({embed}); - } - await sleep(2500); - - // Moves user to empty chest room - playerDungeon.dialogObj = newCommand; - //console.log(JSON.stringify(newCommand, null, 4)); - playerDungeon.reroutedRooms.push([newCommand.moveFrom, newCommand.moveTo]); - move(newCommand.moveTo, playerDungeon, true, author); - playerDungeon.dialogObj = undefined; -} - -// Leaves the chest alone -async function leaveObject(playerDungeon, newCommand, author) { - playerDungeon.dialogObj = newCommand; - move(newCommand.moveTo, playerDungeon, true, author); - playerDungeon.dialogObj = undefined; -} - -// Passes all the user IDs -function passDungeonUserIDs(playerDungeon) { - var userIDArray = []; - playerDungeon.players.forEach(element => { - userIDArray.push(element.userID); - }); - console.log(userIDArray); - return userIDArray; -} - -// https://stackoverflow.com/questions/3733227/javascript-seconds-to-minutes-and-seconds -function fmtMSS(s){ // accepts seconds as Number or String. Returns m:ss - return( s - // take value s and subtract (will try to convert String to Number) - ( s %= 60 ) // the new value of s, now holding the remainder of s divided by 60 - // (will also try to convert String to Number) - ) / 60 + ( // and divide the resulting Number by 60 - // (can never result in a fractional value = no need for rounding) - // to which we concatenate a String (converts the Number to String) - // who's reference is chosen by the conditional operator: - 9 < s // if seconds is larger than 9 - ? ':' // then we don't need to prepend a zero - : ':0' // else we do need to prepend a zero - ) + s ; // and we add Number s to the string (converting it to String as well) -} - -// Creates new dungeon, inits BotWaitingPlayers() -async function NewDungeonSequence(channel) { - console.log('Attempting to start a raid!'); - - // If bot summoning for a dungeon is free - var newRoomID = rooms.rooms[calcRandom.random(0, rooms.rooms.length - 1)]; // calcRandom.random is inclusive for low + high - console.log(newRoomID); - var newRoom = rooms[newRoomID] - - var newDungeon; - dungeonCollection.forEach(element => { - if (element.room.name === newRoom.name) { - return console.log("Raid already happening."); - } - }); - - // Decides on new dungeon - newDungeon = new DungeonRaidInstance(newRoom); - newDungeon.location = newDungeon.room.entrance; - dungeonCollection.push(newDungeon); - - // Minutes - var sleepTime = 2 * 60; - BotWaitingPlayers(channel, newDungeon, sleepTime); -} - -// Shows the join message for the specified dungeon -async function BotWaitingPlayers(channel, dungeon, timer) { - dungeon.startTimer = timer; - - var decrementTime = 1; // Seconds - var newMessage; - var textTimer = `⏰ ${fmtMSS(dungeon.startTimer)} min. left before leaving`; - var crystalCost = 50; - const botDialog = `*Psst.* Hey travelers, **${dungeon.room.name}** doesn't have any Ravagers outside guarding it. ` + - `I could lockpick it, but it's gunna cost you **<:crystals:460974340247257089> 50**, for each of you.`; - const description = `In order to join the dungeon, you have to pay **<:crystals:460974340247257089> ${crystalCost}**. \nReact with <:crystals:460974340247257089> to enter, and the crystals will be subtracted from your account.`; - - client.user.setStatus('online'); - client.user.setActivity(`${textTimer} ${dungeon.room.name}.`) - dungeon.state = DungeonState.WAITING_FOR_USERS; - - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", client.user.avatarURL) - .setColor(dungeon.room.color) - .setDescription(description) - .setFooter(textTimer + ".") - newMessage = await client.channels.get(channel).send(botDialog, {embed}); - - await newMessage.react('460974340247257089'); - - // Collector for emotes - const collector = newMessage.createReactionCollector( - (reaction, user) => reaction.emoji.name === 'crystals' && user.id !== client.user.id , { time: timer * 1000 }); - - // Removes crystals - collector.on("collect", async reaction => { - var user = reaction.users.last(); - //console.log(reaction.emoji.name) - //console.log("Added new user: " + user.username) - - var attacker = String(dataRequest.loadServerData("userStats", user.id)); - var attackerWallet = parseFloat(attacker.split(",")[6]); - - if (attackerWallet >= crystalCost) { - dataRequest.sendServerData("buyDrink", crystalCost, user.id); - joinMessage(user, channel, dungeon.room); - } else { - newMessage.channel.send(`:x: ${user} You don't have enough crystals to pay me. Come back later, when you do. I ain't doing this for free.`); - } - }); - - // Clears reactions - collector.once("end", async collecter => { - console.log("[Reaction Options] Ended collector, clearing emotes and sending timing out message if needed."); - newMessage.clearReactions(); - }); - - // Creates description and displays it (join, no-join) - function timerFunction() { - setTimeout(async () => { - if (dungeon.state !== DungeonState.WAITING_FOR_USERS) return; - const timeInveral = 30; - var quarterMinuteRemainder = dungeon.startTimer % timeInveral; - console.log("[Timer Function] timer: " + dungeon.startTimer + " => " + (dungeon.startTimer - decrementTime) + " | " + quarterMinuteRemainder) - - // If it's been 30 seconds (divisible without any remainder, & not exactly starting time) - if (quarterMinuteRemainder == 0 && dungeon.startTimer !== timer) { - var descriptionString = ""; - var finished = `The travelers entered the dungeon. You can no longer join.` - var textTimer = `⏰ ${fmtMSS(dungeon.startTimer)} min. left before leaving`; - var footerText = textTimer + "."; - - if (dungeon.startTimer > 0) { - descriptionString = description; - client.user.setActivity(`${textTimer} ${dungeon.room.name}.`); - } else { - descriptionString = finished; - footerText = "⏰ You can no longer join." - } - - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", client.user.avatarURL) - .setColor(dungeon.room.color) - .setDescription(descriptionString) - .setFooter(`${footerText}`) - - newMessage.edit(botDialog, embed); - } else if (dungeon.startTimer === timer) { - console.log("[Debug] " + dungeon.startTimer + " | " + timer); - } - dungeon.startTimer -= decrementTime; - if (dungeon.startTimer > -1) timerFunction(); else { - if (dungeon.state === DungeonState.WAITING_FOR_USERS && dungeon.players.length > 0) { - console.log(dungeon.players.length); - BotActive(dungeon); - } else { - BotInactive(dungeon); - } - } - }, decrementTime * 1000); - } - - timerFunction(); -} - -// Sends closing dungeon messages -async function BotActive(dungeon) { - //sendMessage(channel, `${dungeon.room.name} has closed, trapping the travelers inside the dungeon. \ - //\n\n***YOU NO LONGER CAN !JOIN***`); - - if (dungeon.players.length > 0) { - await sendEmbedLocation(dungeon); - - client.channels.get(dungeon.room.channel).send(`**<#${dungeon.room.channel}>** got closed behind us. I guess we should start venturing deeper.` + - `\nUse **!help ${client.user}** to get all the commands you are able to use here, if you need anythin'.`); - - client.user.setStatus('away'); - - dungeon.state = DungeonState.INSIDE_DUNGEON; - } else { - BotInactive(dungeon); - } - - // Starts timer - var decrementTime = 1000; // 1 every second - - dungeon.timer = 10 * 60 * 1000; - sendTimerInChat(dungeon); - - // Decrements dungeon timer and displays it in chat. - function displayTimer() { - setTimeout(async () => { - // Makes sure dungeon is still there - if (dungeon) { - if (dungeon.state === DungeonState.INSIDE_DUNGEON) { - dungeon.timer -= decrementTime; - - // Timers - if (dungeon.timer > 0) { - // Events - var oneMinuteRemainder = dungeon.timer % (1 * 60 * 1000); - - if (oneMinuteRemainder == 0) { - sendTimerInChat(dungeon); - client.user.setActivity(`⏰ ${fmtMSS(dungeon.timer / 1000)} min. left | ${dungeon.room.name}`).then(presence => console.log(`Activity set to ${presence.game ? presence.game.name : 'none'}`)) - .catch(console.error); - } - - // Recursion - displayTimer(); - // Leaves dungeon - } else { - await sendTimerInChat(dungeon); - await client.channels.get(dungeon.room.channel).send("An overwhelming amount of Ravagers came back in," + - " and the party escaped, however not completing the dungeon.\n\n***THE DUNGEON HAS FAILED TO BE COMPLETED IN TIME.***"); - await client.channels.get(process.env.TEST_CHANNEL_ID).send("Alright travelers, we didn't make it in time, but we managed to get out alive, I guess. Better luck next time."); - BotInactive(dungeon); - } - } - } - }, decrementTime); - } - - displayTimer(); -} - -// Inactive -async function BotInactive(dungeon) { - // Removes roles - const guild = client.guilds.get(process.env.SANCTUM_ID); - if (dungeon.players.length > 0) { - for (let i = 0; i < dungeon.players.length; i++) { - const element = dungeon.players[i]; - - // Deletes role - let role = client.guilds.get(process.env.SANCTUM_ID).roles.find(role => role.name === `${dungeon.room.name}: Raid Party`); - await guild.members.get(element.userID).removeRole(role); - } - } - - // Removes dungeon by index - let removeDungeon = dungeonCollection.findIndex( d => d.room.name === dungeon.room.name ); - dungeonCollection.splice(removeDungeon); - - if (dungeonCollection.length < 1) - client.user.setStatus('invisible'); -} - -// Sends timer message -function sendTimerInChat(newDungeon) { - console.log("[Timer] " + newDungeon.timer + " | " + newDungeon.startTimer); - const guild = client.guilds.get(process.env.SANCTUM_ID); - var role = guild.roles.find(role => role.name === `${newDungeon.room.name}: Raid Party`); - - if (newDungeon.state !== DungeonState.WAITING_FOR_USERS) - return client.channels.get(newDungeon.room.channel).send(`:alarm_clock: ${role} has ${fmtMSS(newDungeon.timer / 1000)} min. left to complete the dungeon.`); - else - return client.channels.get(newDungeon.room.channel).send(`:alarm_clock: ${role} has ${fmtMSS(newDungeon.startTimer)} min. left before the dungeon starts.`); -} - -// Ends dialog by pausing then sending your location again. -async function endDialog(newCommand, playerDungeon, overrideLastCommand) { - if (newCommand.lastCommand || overrideLastCommand) { - console.log("[End Dialog] Doing End Dialog Sequence.") - playerDungeon.dialogObj = undefined; - await sleep(1000); - - if (newCommand.lastCommand) sendEmbedLocation(playerDungeon); - } -} - -// Does typing dialog for the NPC -async function typingDialog(playerDungeon, newCommand, author, newMessage) { - if (playerDungeon.isTyping) { console.log("isTyping true, cancelling"); return false }; - console.log("[Typing Dialog]\n" + JSON.stringify(newCommand, null, 4)); - playerDungeon.isTyping = true; - var firstTime; - var range = 250; - var channel = client.channels.get(playerDungeon.room.channel); - - // Types out all the dialog - if (newCommand.descriptions) { - for (let index = 0; index < newCommand.descriptions.length; index++) { - var temp = ""; - const element = newCommand.descriptions[index]; - if (element.text !== undefined) { - var title = "" - if (!firstTime) { - title = `**${playerDungeon.dialogObj.name}**\n`; - firstTime = true; - } - temp = element.text.replace("${leader}", author); - var waitTimerRange = calcRandom.random(element.waitBegin - range, element.waitBegin + range); - - // Debug purposes only - //waitTimerRange = 10; - - sendTypingMessage(channel, title + temp, waitTimerRange); - await sleep(waitTimerRange + element.waitEnd); - - endDialog(newCommand, playerDungeon); - } - } - } - - playerDungeon.isTyping = false; - reactionOptions(playerDungeon, newCommand, author, newMessage); -} - -// Does reactions on a message, then uses them as options -async function reactionOptions(playerDungeon, newCommand, author, newMessage) { - var channel = client.channels.get(playerDungeon.room.channel); - var range = 250; - var returnElement = false; - - // Reactions (if they exist via text or have an options JSON field) - if (newCommand.optionsDescription || newCommand.options) { - var waitTimerRange; - var isEmbed = false; - waitTimerRange = 10; - - // Embed and text varients - if (!newCommand.embed) { - waitTimerRange = calcRandom.random(newCommand.optionsDescription.waitBegin - range, newCommand.optionsDescription.waitBegin + range); - newMessage = await sendTypingMessage(channel, newCommand.optionsDescription.text, waitTimerRange) - } - else { - await sleep(newCommand.embed.waitBegin); - - // Specific formattings - if (newCommand.embed.formatting === "author_title_image_desc") { - var newImage = client.user.avatarURL; - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", newImage) - .setColor(playerDungeon.room.color) - .setTitle(newCommand.embed.setTitle) - .setDescription(newCommand.embed.setDescription) - - newMessage = await channel.send({embed}); - channel.stopTyping(true); - } else { - console.error("[Reaction Options] Embed was tried, but no vaid formatting!"); - } - - await sleep(newCommand.embed.waitEnd) - } - - // Reacts - for (let i = 0; i < newCommand.options.length; i++) { - const element = newCommand.options[i]; - console.log("[Reaction Options] Emote: " + element.emote + " | newMessage: " + newMessage); - await newMessage.react(element.emote); - } - - // Collects emotes and reacts upon the reaction (120 seconds) - const collector = newMessage.createReactionCollector( - (reaction, user) => (getDungeonPlayer(user.id).isLeader || getDungeonPlayer(user.id).isCommander) && - (newCommand.options.some(option => option.emote === reaction.emoji.name)), { time: 120 * 1000 }); - var endedOnReact = false; - - // Collect - collector.once("collect", async reaction => { - // Solely for players - if (playerDungeon.dialogObj) { - const chosen = reaction.emoji.name; - newCommand.options.forEach(element => { - if (element.emote === chosen) { - returnElement = element; - - // Grabs the object if it exists - if (playerDungeon.dialogObj[element.command] && playerDungeon.dialogObj[element.command].command) { - typingDialog(playerDungeon, playerDungeon.dialogObj[element.command], author, newMessage); - console.log("Using grab object if exists"); - hasAlreadyTriggered = true; - } - } - }); - } - customCommandEmoteProcessor(playerDungeon, newCommand, author, returnElement, newMessage, reaction); - endedOnReact = true; - collector.stop(); - - /* - console.log(newMessage.reactions); - newMessage.reactions.forEach(element => { - if (element.users.id !== client.user.id) newMessage.reactions.remove(element); - }); - */ - - // Debug - //console.log("[Reaction Options] Return emote from reactionOptions: " + returnElement.emote); - //console.log("[Reaction Options] newCommand @ reactions function: " + JSON.stringify(newCommand)); - //console.log("[Reaction Options] returnElement: " + JSON.stringify(returnElement)); - }); - - // End trigger - collector.once("end", collecter => { - console.log("[Reaction Options] Ended collector, clearing emotes and sending timing out message if needed."); - newMessage.edit(newMessage.content); - newMessage.clearReactions(); - if (!endedOnReact) { - sendMessage(playerDungeon.room.channel, ":x: **Timed Out** The emote reaction request timed out after 2 minutes."); - endDialog(newCommand, playerDungeon, true); - } - }); - - } -} - -// Sends messages in periods of time -async function sendTypingMessage(channel, message, waitTimer) { - channel.startTyping() - await sleep(waitTimer); - channel.stopTyping(true); - - return channel.send(message); -} - -// Just here for placeholder, do not use -async function sendEmbedMessage(channel, embedData, waitTimer) { - channel.startTyping(); - await sleep(waitTimer); - channel.stopTyping(true); - - const embed = new Discord.RichEmbed(); - - return channel.send(embed); -} - -// Send message handler -function sendMessage(userID, channelID, message) { - // Handle optional first argument (so much for default arugments in node) - if (message === undefined) { - message = channelID; - channelID = userID; - userID = null; - } - - // Utility trick (@userID with an optional argument) - if (userID != null) { - message = "<@" + userID + "> " + message; - } - - // Sends message (needs client var, therefore I think external script won't work) - client.channels.get(channelID).send(message); -} - -// You may use cron normally -cron.schedule('30 */3 * * *', function() { - NewDungeonSequence(process.env.TEST_CHANNEL_ID); -}); - -// Join Message -function joinMessage(user, channel, room) { - var newDungeon; - var firstUserGiveLeader = false; - dungeonCollection.forEach(element => { - if (element.room === room) newDungeon = element; - }); - - // If dungeon doesn't exist - if (!newDungeon) { - if (room.undefined != undefined) { - if (room.undefined == "") - return sendMessage(user.id, channel.id, `:x: You need to specify what dungeon you wish to join.`); - return sendMessage(user.id, channel.id, `:x: There is no dungeon named ${room.undefined}.`); - } - return sendMessage(user.id, channel.id, ":x: This dungeon does not exist."); - } else { - if (newDungeon.players.length == 0) { - firstUserGiveLeader = true; - } - } - - if (newDungeon.state !== DungeonState.WAITING_FOR_USERS) { - return sendMessage(user.id, channel.id, ":x: This dungeon's closed currently."); - } - - // Find if user is in the Raid Party - var userExists = newDungeon.players.find( player => player.userID === user.id ); - - // If user doesn't exist in the list, join message - if (!userExists) { - let member = client.guilds.get(process.env.SANCTUM_ID).members.get(user.id); - - // Adds role to use - let role = client.guilds.get(process.env.SANCTUM_ID).roles.find(role => role.name === `${newDungeon.room.name}: Raid Party`); - member.addRole(role); - - // Creates new player for array - var playerRole = getFactionID(member); - var className = getCombatClassName(member); - var newPlayer = new PlayerClass(user.id, playerRole, className, ":new:", firstUserGiveLeader); - - newDungeon.players.push(newPlayer); - - // Sends messages confirming it - client.channels.get(newDungeon.room.channel).send(`<@${user.id}> welcome to the ${newDungeon.room.name} dungeon raid! Use **!party** to check the members.`); - //message.channel.send(`<@${user.id}> you have **!join**ed the ${newDungeon.room.name} dungeon raid! Use **!party** to check the members.`); - // Else send error already joined - } else { - //client.channels.get(newDungeon).send(`<@${user.id}> you already **!join**ed the ${newDungeon.room.name} dungeon raid. Use **!party** to check the members.`); - } -} - -// Leave Message -async function leaveMessage(message) { - var dungeonPlayer = getDungeonPlayer(message.author.id); - - // Sends messages confirming it - if (dungeonPlayer.playerDungeon === undefined) { - var confirmMessage = await message.channel.send(`<@${message.author.id}> you aren't in a dungeon raid in my books, but are you sure you want to force leave all dungeon raids?\n*This will remove all dungeon raid roles.*`); - - // Reacts - await confirmMessage.react('βœ…'); - await confirmMessage.react('❌'); - - const collector = confirmMessage.createReactionCollector( - (reaction, user) => (reaction.emoji.name === 'βœ…' || reaction.emoji.name === '❌') && user.id === message.author.id , { time: 15 * 1000 }); - var react = ""; - - // Collect - collector.once("collect", async reaction => { - endedOnReact = true; - react = reaction.emoji.name; - collector.stop(); - }); - - // End trigger - collector.once("end", async collecter => { - console.log("[Reaction Options] Ended collector, clearing emotes and sending timing out message if needed."); - confirmMessage.edit(confirmMessage.content); - confirmMessage.clearReactions(); - if (!endedOnReact) return message.channel.send(":x: **Timed Out**: The emote reaction request timed out after 15 seconds."); - if (react === '❌') return confirmMessage.edit(`${message.author} Cancelled removing dungeon raid roles.`); - - // Force deletes all dungeons that exist - for (let i = 0; i < rooms.rooms.length; i++) { - const element = rooms.rooms[i]; - const name = rooms[element].name; - let role = client.guilds.get(process.env.SANCTUM_ID).roles.find(role => role.name === `${name}: Raid Party`); - await message.member.removeRole(role); - } - - await confirmMessage.edit(`${message.author} Removed all dungeon raid roles.`) - }); - } else { - var confirmMessage = await message.channel.send(`<@${message.author.id}> are you sure you want to leave the ${dungeonPlayer.playerDungeon.room.name} dungeon raid?`); - - // Reacts - await confirmMessage.react('βœ…'); - await confirmMessage.react('❌'); - - // Collects emotes and reacts upon the reaction (15 seconds) - const collector = confirmMessage.createReactionCollector( - (reaction, user) => (reaction.emoji.name === 'βœ…' || reaction.emoji.name === '❌') && user.id === message.author.id , { time: 15 * 1000 }); - var endedOnReact = false; - var react = ""; - - // Collect - collector.once("collect", async reaction => { - // Solely for players - endedOnReact = true; - react = reaction.emoji.name; - collector.stop(); - }); - - // End trigger - collector.once("end", collecter => { - console.log("[Reaction Options] Ended collector, clearing emotes and sending timing out message if needed."); - confirmMessage.edit(confirmMessage.content); - confirmMessage.clearReactions(); - if (!endedOnReact) return sendMessage(message.channel, ":x: **Timed Out**: The emote reaction request timed out after 15 seconds."); - if (react === '❌') return confirmMessage.edit(`${message.author} Cancelled leaving the ${dungeonPlayer.playerDungeon.room.name}.`); - - // Sends confirmation message - message.channel.send(`${message.author} has left the dungeon.`) - - // Deletes role - let role = client.guilds.get(process.env.SANCTUM_ID).roles.find(role => role.name === `${dungeonPlayer.playerDungeon.room.name}: Raid Party`); - message.member.removeRole(role); - - // Removes user from dungeon - dungeonPlayer.playerDungeon.players = dungeonPlayer.playerDungeon.players.filter(obj => obj.userID !== message.author.id) - - // Chooses random leader if leader left - console.log("Is there a leader: " + dungeonPlayer.playerDungeon.players.find(l => l.leader) === true); - if (dungeonPlayer.playerDungeon.players.find(l => l.leader) === undefined) { - for (let i = 0; i < dungeonPlayer.playerDungeon.players.length; i++) { - const element = dungeonPlayer.playerDungeon.players[i]; - console.log(element); - if (element.commander) { - element.commander = false; - element.leader = true; - message.channel.send(`<@${element.userID}> has been promoted to leader!`); - break; - } - } - - // If there is no commander, promote first person on list - for (let i = 0; i < dungeonPlayer.playerDungeon.players.length; i++) { - const element = dungeonPlayer.playerDungeon.players[i]; - element.commander = false; - element.leader = true; - message.channel.send(`<@${element.userID}> has been promoted to leader!`); - break; - } - } - - // Destroy dungeon if last player - if (dungeonPlayer.playerDungeon.players.length === 0) { - BotInactive(dungeonPlayer.playerDungeon); - } - }); - } -} - -// Checks if direction can be done (skips anything other than Directions.XXXX) -function checkValidMovement(direction, dungeon, silent) { - var directionFailure; - switch (direction) { - case Directions.NORTH: - if (dungeon.location.connections.north === undefined) { - directionFailure = "**north**"; - } - break; - case Directions.EAST: - if (dungeon.location.connections.east === undefined) { - directionFailure = "**east**"; - } - break; - case Directions.SOUTH: - if (dungeon.location.connections.south === undefined) { - directionFailure = "**south**"; - } - break; - case Directions.WEST: - if (dungeon.location.connections.west === undefined) { - directionFailure = "**west**"; - } - break; - } - - if (directionFailure) { - if (!silent) { - var deniedMessage = `:x: ${user} You can't go ${directionFailure}, please choose a valid path.`; - client.channels.get(dungeon.room.channel).send(deniedMessage); - } - return false; - } - return true; -} - -// Moves in the dungeon -// TODO ITEM -async function move(direction, dungeon, isPartyLeader, user, moveToOverride) { - if (dungeon === undefined) return console.log("Dungeon doesn't exist!"); - - var channel = client.channels.get(dungeon.room.channel); - var newRoom; - - if (!isPartyLeader) return channel.send(`:x: ${user} You need to be a Party Leader or be **!promoted** to Commander in order to move.`); - if (!checkValidMovement(direction, dungeon)) return; - - // Says something if command can be done - switch (direction) { - case Directions.NORTH: - if (dungeon.location.connections.north !== undefined) { - newRoom = dungeon.location.connections.north; - //channel.send(":white_check_mark: **Command accepted.** Following the party **north**."); - } - break; - case Directions.EAST: - if (dungeon.location.connections.east !== undefined) { - newRoom = dungeon.location.connections.east; - //channel.send(":white_check_mark: **Command accepted.** Following the party **east**."); - } - break; - case Directions.SOUTH: - if (dungeon.location.connections.south !== undefined) { - newRoom = dungeon.location.connections.south; - //channel.send(":white_check_mark: **Command accepted.** Following the party **south**."); - } - break; - case Directions.WEST: - if (dungeon.location.connections.west !== undefined) { - newRoom = dungeon.location.connections.west; - //channel.send(":white_check_mark: **Command accepted.** Following the party **west**."); - } - break; - default: - // If uses a custom moveTo statement - if (moveToOverride) { - newRoom = moveToOverride; - // Else if no override - } else if (dungeon.dialogObj.moveTo) { - newRoom = dungeon.dialogObj.moveTo; - } - break; - } - - // Reroutes rooms - dungeon.reroutedRooms.forEach(element => { - console.log("[Move Reroute Rooms] " + element[0] + " " + element[1] + " " + newRoom + " " + (element[0] === newRoom)); - if (element[0] === newRoom) newRoom = element[1]; - }); - - console.log("[New Room]: " + newRoom + " | [Old Room]: " + dungeon.location.name); - switch (newRoom) { - case "__END": - await client.channels.get(process.env.TEST_CHANNEL_ID).send(`The **${dungeon.room.name}** dungeon has been completed!`); - await channel.send(`Congratulations! The party completed the **${dungeon.room.name}** dungeon with **${fmtMSS(dungeon.timer / 1000)} min. left**!`); - BotInactive(dungeon); - break; - - default: - dungeon.location = dungeon.room[newRoom]; - sendEmbedLocation(dungeon); - break; - } - console.log("[New Location]: " + dungeon.location.name); -} - -// Movement option text -function movementOptions(dungeon) { - var temp = ""; - - if (dungeon.location.northtext !== "" && dungeon.location.northtext) - temp += `:arrow_up: ${dungeon.location.northtext}\n`; - if (dungeon.location.easttext !== "" && dungeon.location.easttext) - temp += `:arrow_right: ${dungeon.location.easttext}\n`; - if (dungeon.location.southtext !== "" && dungeon.location.southtext) - temp += `:arrow_down: ${dungeon.location.southtext}\n`; - if (dungeon.location.westtext !== "" && dungeon.location.westtext) - temp += `:arrow_left: ${dungeon.location.westtext}\n`; - return temp; -} - -async function sendInventory(playerDungeon, pageNum) { - var items = ""; - - // Creates an array that seperates 10 items into seperate arrays each - var groupedArr = createGroupedArray(playerDungeon.items, 5); - - // Sets a default page num, or makes it human readable - if (pageNum === undefined) pageNum = 0; else { - pageNum--; - if (pageNum < 0) pageNum = 0; - if (groupedArr.length < pageNum) pageNum = groupedArr.length; - } - - // Checks if page number is valid - if (pageNum + 1 > groupedArr.length) { - // If it's longer than actual length, but isn't just an empty inventory - if (!groupedArr.length === 0) return; - } - - // Grabs item in loop, parses it, then adds it to "items" variable - if (groupedArr[pageNum]) { - for (let index = 0; index < groupedArr[pageNum].length; index++) { - // Grabs an item, from a page index - const element = groupedArr[pageNum][index]; - - // Makes if there is an emote, it'll add an extra space - var emoteText = ""; - if (element.emote) emoteText = element.emote + " "; - - // Adds it in - items += `> ${emoteText}**${element.name}** [${element.amount}x] ${element.info}\n`; - } - } - - // No items message to fill field - if (items === "") items = "There are no items in the party's inventory."; - - // To make the message of "Page 1/0" with no items in !pinventory not happen - var moddedLength = groupedArr.length; - if (moddedLength < 1) moddedLength = 1; - - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", client.user.avatarURL) - .setColor(playerDungeon.room.color) - .addField(`Party Inventory (Page ${pageNum + 1}/${moddedLength})`, items, true) - //.setDescription(`${items}`) - - client.channels.get(playerDungeon.room.channel).send({embed}); -} - -// Sends location into chat (non-embed) -function sendLocation(dungeon, author) { - var temp = `Current Room: **${dungeon.location.name}**\n\n`; - temp += location(dungeon); - temp += "\n\n"; - temp += movementOptions(dungeon); - - // Sends message - var channel = client.channels.get(dungeon.room.channel); - channel.send(author + " " + temp); -} - -// Sends location into chat (embed) -async function sendEmbedLocation(dungeon) { - if (dungeon.directionalMessageID) { - dungeon.directionalCollector.stop(); - } - var channel = client.channels.get(dungeon.room.channel); - - // Does image for background (future map) - const imageEmbed = new Discord.RichEmbed() - //.setAuthor("Ghost", client.user.avatarURL) - .setColor(dungeon.room.color) - .setImage(dungeon.location.image_url) - await channel.send({embed: imageEmbed}); - - // Does text dialog - const textEmbed = new Discord.RichEmbed() - .setAuthor("Ghost", client.user.avatarURL) - .setTitle(`${dungeon.location.name}`) - .setColor(dungeon.room.color) - .setDescription(`${location(dungeon)}\n\n${movementOptions(dungeon)}`) - var newMessage = await channel.send({embed: textEmbed}); - - // Collects emotes and reacts upon the reaction (120 seconds) - var options = ['⬆', '⬇', 'β¬…', '➑'] - const collector = newMessage.createReactionCollector( - (reaction, user) => options.includes(reaction.emoji.name) && user.id !== client.user.id); - - // Reacts - for (let i = 0; i < options.length; i++) { - const element = options[i]; - console.log("[Reaction Options] Emote: " + element + " | newMessage: " + newMessage); - await newMessage.react(element); - } - - // Collect - collector.once("collect", async reaction => { - const user = reaction.users.last(); - var moveSuccessful; - switch (reaction.emoji.name) { - case '⬆': - moveSuccessful = move(Directions.NORTH, dungeon, (getDungeonPlayer(user.id).isLeader || getDungeonPlayer(user.id).isCommander), user, false); - break; - - case '⬇': - moveSuccessful = move(Directions.SOUTH, dungeon, (getDungeonPlayer(user.id).isLeader || getDungeonPlayer(user.id).isCommander), user, false); - break; - - case 'β¬…': - moveSuccessful = move(Directions.WEST, dungeon, (getDungeonPlayer(user.id).isLeader || getDungeonPlayer(user.id).isCommander), user, false); - break; - - case '➑': - moveSuccessful = move(Directions.EAST, dungeon, (getDungeonPlayer(user.id).isLeader || getDungeonPlayer(user.id).isCommander), user, false); - break; - } - collector.stop(); - - }); - - // End trigger - collector.once("end", collecter => { - console.log("[Reaction Options] [sendEmbedLocation] Ended collector, clearing emotes and sending timing out message if needed."); - newMessage.edit(newMessage.content); - }); -} - -// Sends location descriptions (Text) -function location(dungeon) { - var temp = ""; - - for (let index = 0; index < dungeon.location.descriptions.length; index++) { - const element = dungeon.location.descriptions[index]; - if (element.text !== undefined) { - temp += element.text + " "; - } - } - - //console.log(temp); - return temp; -} - -// Sends party members (Embed) -function partyMembers(dungeon, pageNum) { - // Updates players - updatePlayers(); - var playerString = ""; - var userInfo = ""; - - //console.log("0: " + pageNum); - if (pageNum === undefined) - pageNum = 0; - else - pageNum--; - - //console.log("1: " + pageNum) - var groupedArr = createGroupedArray(dungeon.players, 9); - //console.log(groupedArr); - //console.log("\n\nGROUPEDARR[PAGENUM]: " + groupedArr[pageNum] + "\n\n") - - if (pageNum + 1 > groupedArr.length) return; // If it's longer than actual length - if (groupedArr[pageNum] !== undefined) { - for (let index = 0; index < groupedArr[pageNum].length; index++) { - //const user = dungeon.players[index]; - const element = groupedArr[pageNum][index]; - - playerString += `${element.factionEmote}${element.badge} ${playerName(element.userID)}\n`; - userInfo += `${element.combatClassEmote} ${element.combatClass} ${element.isLeaderText}\n`; - //console.log("playerString:\n" + playerString); - //console.log("userInfo:\n " + userInfo); - } - } - - if (playerString == "") playerString = "None."; - if (userInfo == "") userInfo = "None."; - - const embed = new Discord.RichEmbed() - .setAuthor("Ghost", client.user.avatarURL) - //.setTitle("Hell's Gate: Dungeon Raid") - /* - * Alternatively, use "#00AE86", [0, 174, 134] or an integer number. - */ - .setColor(dungeon.room.color) - .setTitle(`${dungeon.location.name}`) - .setDescription(`The **!party** is currently on floor ${dungeon.location.floor}. The leader can **!promote** users so they can interact with the dungeon.`) - //.setImage("https://i.imgur.com/WyI8YuR.png") - //.setThumbnail("https://i.imgur.com/BZgLV7w.png") - //.setThumbnail("https://i.imgur.com/BlQTi94.jpg") - - .addField(`Party Members (Page ${pageNum + 1}/${groupedArr.length})`, playerString, true) - .addField("User Info", `${userInfo}`, true) - - client.channels.get(dungeon.room.channel).send({embed}); -} - -// Promote user to become leader -function promoteCommander(author, mentionedMember, leader, channelID) { - if (mentionedMember !== undefined ) { - if (leader) { - var dungeonPlayer = getDungeonPlayer(mentionedMember.id); - if (dungeonPlayer.player) { - if (author.id !== mentionedMember.id) { - if (!dungeonPlayer.isCommander) { - sendMessage(channelID, `:white_check_mark: ${author} has been **!promote**d ${mentionedMember} to commander status!`); - dungeonPlayer.player.commander = true; - } else { - sendMessage(channelID, `:x: ${author} **Command denied.** User already has been **!promote**d.`); - } - } else { - sendMessage(channelID, `:x: ${author} **Command denied.** You cannot promote yourself.`); - } - } - else - sendMessage(channelID, `:x: ${author} **Command denied.** The user being promoted has to be in the party.`); - } - else - sendMessage(channelID, `:x: ${author} **Command denied.** You need to be a leader in order to **!promote** others.`); - } else { - temp = author + " !promote (!pr)\n```If you're the leader, you can promote others to be a commander with you in order to move around.```" - sendMessage(channelID, temp); - } -} - -// Promote user to become leader -function demoteCommander(author, mentionedMember, leader, channelID) { - if (mentionedMember !== undefined ) { - if (leader) { - var dungeonPlayer = getDungeonPlayer(mentionedMember.id); - if (dungeonPlayer.player) { - if (author.id !== mentionedMember.id) { - if (dungeonPlayer.isCommander) { - sendMessage(channelID, `:white_check_mark: ${author} has **!demote**d ${mentionedMember} to normal status.`); - dungeonPlayer.player.commander = false; - } else { - sendMessage(channelID, `:x: ${author} **Command denied.** User already has been **!demote**d.`); - } - } else { - sendMessage(channelID, `:x: ${author} **Command denied.** You cannot promote yourself.`); - } - } - else - sendMessage(channelID, `:x: ${author} **Command denied.** The user being demoted has to be in the party.`); - } - else - sendMessage(channelID, `:x: ${author} **Command denied.** You need to be a leader in order to **!demote** others.`); - } else { - temp = author + " !demote (!de)\n```If you're the leader, you can demote others if needed if they are a commander.```" - sendMessage(channelID, temp); - } -} - -// Transfer party leadership -async function transferLeader(message, toUser) { - // From and to user transfer - if (toUser === undefined) return message.channel.send(`${message.author} I don't know that user, please try again with someone I can recognize, thanks.`); - - fromUser = getDungeonPlayer(message.author.id); - newUser = getDungeonPlayer(toUser.id); - - if (newUser.playerDungeon !== undefined && fromUser.playerDungeon !== undefined - && newUser.playerDungeon === fromUser.playerDungeon && fromUser.player.leader - && message.author.id !== toUser.id) { - - // Sends messages confirming it - var confirmMessage = await message.channel.send(`:warning: <@${message.author.id}> are you sure you want to give leadership to ${toUser}?\n*You'll be given Commander status afterwards.*`); - - // Reacts - await confirmMessage.react('βœ…'); - await confirmMessage.react('❌'); - - const collector = confirmMessage.createReactionCollector( - (reaction, user) => (reaction.emoji.name === 'βœ…' || reaction.emoji.name === '❌') && user.id === message.author.id , { time: 15 * 1000 }); - var react = ""; - var endedOnReact; - - // Collect - collector.once("collect", async reaction => { - endedOnReact = true; - react = reaction.emoji.name; - collector.stop(); - }); - - // End trigger - collector.once("end", async collecter => { - console.log("[Reaction Options] Ended collector, clearing emotes and sending timing out message if needed."); - confirmMessage.edit(confirmMessage.content); - confirmMessage.clearReactions(); - if (!endedOnReact) return sendMessage(message.channel, ":x: **Timed Out**: The emote reaction request timed out after 15 seconds."); - if (react === '❌') return confirmMessage.edit(`:x: ${message.author} Cancelled giving leadership to ${toUser}.`); - - fromUser.player.leader = false; - fromUser.player.commander = true; - newUser.player.leader = true; - newUser.player.commander = false; - - await confirmMessage.edit(`:white_check_mark: ${message.author} has transferred leadership tp ${toUser}!`) - }); - } else { - if (newUser.playerDungeon !== fromUser.playerDungeon) { - return message.channel.send(`:x: ${message.author} The traveler must be in the party, or else I can't do anything about it.`); - } - - if (!fromUser.player.leader) { - return message.channel.send(`:x: ${message.author} You need to be a leader, in order to transfer your leadership.`) - } - - if (message.author.id === toUser.id) { - return message.channel.send(`:x: ${message.author} You cannot give yourself leadership if you are already the leader.`) - } - } -} - -// Log our bot in (change the token by looking into the .env file) -client.login(process.env.GHOST_TOKEN); \ No newline at end of file diff --git a/Troll/package.json b/Troll/package.json deleted file mode 100644 index 69163ab..0000000 --- a/Troll/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "sanctum-deploypackage", - "version": "1.0.1", - "description": "Universal package for all SANCTUM bots, using pm2.", - "main": "", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "echo \"Error: you need to use the bot name as a command.\" && exit 1", - "alexis": "pm2 start alexis.js -i max --watch", - "graze": "pm2 start graze.js -i max --watch", - "librarian": "pm2 start librarian.js -i max --watch", - "mainframe": "pm2 start mainframe.js -i max --watch", - "mori": "pm2 start mori.js -i max --watch", - "mosiah": "pm2 start mosiah.js -i max --watch", - "ravager": "pm2 start ravager.js -i max --watch", - "rey": "pm2 start rey.js -i max --watch", - "troll": "pm2 start troll.js -i max --watch" - }, - "author": "", - "license": "ISC", - "dependencies": { - "discord.js": "^11.4.2", - "dotenv": "^6.0.0", - "express": "^4.16.3", - "node-cron": "^1.2.1", - "socket.io": "^2.1.1", - "socket.io-request": "^0.8.0" - } -} diff --git a/Troll/troll.js b/Troll/troll.js deleted file mode 100644 index 6262c55..0000000 --- a/Troll/troll.js +++ /dev/null @@ -1,367 +0,0 @@ -// .env Variables -require('dotenv').config({path: '../.env'}); - -// Node Modules -const Discord = require('discord.js'); -const client = new Discord.Client(); -const cron = require('node-cron'); - -// Bot Modules (stores http requests & random functions respectively) -const dataRequest = require('../modules/dataRequest'); -const calcRandom = require('../modules/calcRandom'); -var attacked = 0; - -// Playing activities state machine -var ActivityEnumState = { - GetDataActivity: 0, - ListenDataActivity: 1, - WatchingRavagersActivity: 2, - StreamingSanctumActivity: 3 -} -var activityState; - -// The ready event is vital, it means that your bot will only start reacting to information -// from Discord _after_ ready is emitted -client.on('ready', async () => { - // Generates invite link - try { - let link = await client.generateInvite(["ADMINISTRATOR"]); - console.log("Invite Link: " + link); - } catch(e) { - console.log(e.stack); - } - - // You can set status to 'online', 'invisible', 'away', or 'dnd' (do not disturb) - client.user.setStatus('online'); - ListenDataActivity(); - - //client.user.setActivity('sCRIBe of the Codex'); - console.log(`Connected! \ - \nLogged in as: ${client.user.username} - (${client.user.id})`); - - //client.channels.get(process.env.GATE_CHANNEL_ID).send("I'M YOUR NEW BABE EVERYONE! LOVE ME."); -}); - -// Create an event listener for messages -client.on('message', async message => { - // Ignores ALL bot messages - if (message.author.bot) return; - // Message has to be in Outskirts (should be edited later) - if (!(message.channel.id === process.env.STASIS_CHANNEL_ID - || message.channel.id === process.env.TEST_CHANNEL_ID)) return; - - - var wholeMessage = message.content.toLowerCase().replace(/[.,\/#!$%\^&\*;:{}=\-_`~()]/g,""); - var words = wholeMessage.split(" "); - // Asking Alexis on a date - if (words.includes("librarian") && words.includes("date")) { - var dialogOptions = [ - 'IM LOVED.', - 'THANK YOU.', - ':thumbsup:', - 'I AM ALWAYS AVAILABLE UNLESS I\'M OFFLINE', - 'I\'M INTO ANYONE!', - 'YOU INTEREST ME.', - 'YES!!', - 'TELL ME MORE!', - 'YES DATE ME.' - ]; - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - message.channel.send(`${message.author} ${dialogOptions[randomNumber]}`); - return; - } - - // "This is the best way to define args. Trust me." - // - Some tutorial dude on the internet - const args = message.content.slice(process.env.PREFIX.length).trim().split(/ +/g); - const command = args.shift().toLowerCase(); - - // Has to be (prefix)command - if (message.content.indexOf(process.env.PREFIX) !== 0) return; - - switch (command) { - case "ping": - message.reply("PONGPINGPONGPINGPONG!"); - break; - case "attack": - attacked++; - message.channel.send(message.author + " ***OW. SCREW YOU!*** ```Attacked " + attacked + " times.```"); - break; - case "tip": - if (!args[0]) - message.reply("THANKS FOR THE " + args[0] + "!"); - else - message.reply("TIP ME ***SOMETHING!?!**"); - break; - case "orderordertaperecorder": - message.reply("YES."); - break; - case "eaglewritewhen": - message.reply("GOOD QUESTION"); - break; - case "tim": - message.reply("HE'S THE MURDERER!"); - break; - case "scavenge": - message.channel.send("YOU FOUND NOTHING BUT LIES! MWAHAHA."); - break; - case "codex": - message.reply("WHAT'S A CODEX. ***THERE IS NO SUCH THING.***"); - break; - case "secret": - message.reply("I MEAN, YOU TRIED! ***TRY HARDER***."); - break; - case "redacted": - message.reply("This is now ***REDACTED***.") - break; - case "buydrink": - var dialogOptions = [ - 'HOW DID YOU KNOW WE HAVE FREE BEER.', - 'TAKE YOUR DRINKS.', - 'GET DRUNK.', - 'ENJOY OR ELSE!', - 'IT\'S BEEN A MONTH. HOW MUCH LONGER!', - 'IT\'S DANGEROUS TO GO ALONE, TAKE THIS.', - 'IM ACTUALLY MESSING WITH YOUR MINDS BY SPIKING WITH THE DRINKS.', - 'HURRY UP AND COLLAPSE FROM THE BEER!', - 'MOOAAAARRR BEEER!', - 'EAGLE WRITE II WHEN.', - 'HEY, AT LEAST I TRY TO BE NICE.', - 'THE SOMEONE IS ALWAYS RIGHT FOUNDATIONβ„’ NEEDS YOUR CRYSTALS', - '**REDACTED** IS COMING TO SANCTUM.', - 'RELIGION SUX', - 'KAJSLKFDJLAJJ;OIF AEJOIEJGOIEJGOIEJGRA', - '1090190308401840184385825', - 'HERE IS SOME DIALOG. HAPPY?', - 'TICK TOCK KAI BUDDY, BETTER NOT KEEP **REDACTED** WAITIN. I HEARD HE\'S A VERY IMPATIENT MAN.', - 'DOES ANYONE READ THE TEXT.', - 'WHATEVER YOU DO YOU WILL NEVER FIND THE SECRET COMMAND', - 'PRESS ALT+F4 FOR FREE CRYSTALS.', - 'ONE DAY YOU WILL STOP FIGHTING FOR SOME STUPID THING.', - 'WHY DO YOU PLAY THIS GAME SO MUCH ANYWAYS.', - 'YOU CAN\'T FIGHT HERE. THIS IS THE WAR ROOM!', - 'HELL IS THE ULTIMATE TEST OF SURVIVAL WHERE YOU PROBABLY WILL GATE.', - 'WHAT DO YOU WANT ME TO DO, MORE BEER?', - 'FOR YOU SEE!β„’ THE PERSON WHO HAS BEEN KEEPING YOU HERE ALL ALONG IS...', - 'WHY AM I STILL HERE??', - 'WHAT DO YOU GUYS THINK OF ALEXIS COMPARED TO ME!', - 'CHECK THIS OUT.', - 'PEOPLE ACTUALLY TAKING BEER? CHECK.', - 'NO ROGUE BOT CHECK CAN STOP ME!', - `I AM THE LIBRARIAN. I HAND OUT LIVERS!` - ]; - - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - var newMessage = ""; - - if (message.mentions.members.size < 1) { - newMessage = ":beer: " + dialogOptions[randomNumber] + " <@" + message.author.id + ">! <:crystals:460974340247257089> **FREE**"; - } else { - // Huge scope creep, but have a list of players able to be given beer instead of just one later on - // For now, just taking the first player - let member = message.mentions.members.first(); - if (member) { - newMessage = ":beer: " + dialogOptions[randomNumber] + " <@" + member.user.id + ">!\n\n" + "***GIVEN BY *** <@" + message.author.id + "> AT GUNPOINT OR SOMETHING. <:crystals:460974340247257089> **FREE**"; - } else { - newMessage = ":x: <@" + message.author.id + "> YOU WANNA BUY ***WHO*** A ***WHAT*** NOW?"; - } - } - sendMessage(message.channel.id, newMessage); - break; - case "check": - if (message.channel.id == process.env.TEST_CHANNEL_ID) return; - message.reply("WOW, YOU FOUND IT. THIS MAY OR MAY NOT COME INTO SANCTUM, WE'RE ONLY PLANNING. DON'T EXCEPT IT, KEEP EXPECTATIONS LOW. HAVE MERCY ON THE OVERSEERS."); - const server = client.guilds.get(process.env.SANCTUM_ID); - const sizeLimit = 19; - var LVL = 2; - var minutes = 15; - var raidUsers = ["200340393596944384", "433759248800022532", "274301199841361920", - "150649616772235264", "201102155896193024", "454823752925052930"]; - var raidUserNames = []; - var userString = ``; - - // Collects usable usersnames - for (var i in raidUsers) { - // Use this totally not large line of code - var name = server.members.get(raidUsers[i]).displayName; - console.log("NAME: " + name); - - // If displayName (possible nickname) is too large - if (name.length > sizeLimit) { - // Grabs normal username - var username = client.users.get(raidUsers[i]).username; - console.log("EDITED NAME: " + name); - - // If that's too large - if (username.length > sizeLimit) { - // Uses displayName and adds "..." - name = truncate(name, sizeLimit); - } - } - raidUserNames.push(name); - } - - console.log("RAIDUSERNAMES: " + raidUserNames); - for (var r in raidUserNames) { - var emote; - if (server.members.get(raidUsers[i]).roles.has(process.env.GROUP_A_ROLE)) { - factionID = process.env.GROUP_A_ROLE; - } - userString += raidUserNames[r] + "\n"; - } - - const embed = new Discord.RichEmbed() - .setTitle(":triangular_flag_on_post: Hell's Gate: Dungeon Raid") - /* - * Alternatively, use "#00AE86", [0, 174, 134] or an integer number. - */ - .setColor("#e74c3c") - .setDescription(`**OUTDATED, PLEASE USE OTHER COMMANDS LIKE !join INSTEAD.** This dungeon is **Danger LVL ${LVL}**, it is relatively safe. The level will increase in the next **${minutes} minutes**. - The scouted map by TheSomeoneXD can be found [here](https://www.youtube.com/watch?v=dQw4w9WgXcQ).`) - .setFooter("OBBO Find X β€’ OBSIDIAN TECHNOLOGIES") - //.setImage("https://i.imgur.com/BlQTi94.jpg") - //.setThumbnail("https://i.imgur.com/BZgLV7w.png") - .setThumbnail("https://i.imgur.com/BlQTi94.jpg") - .addField("Location", - `The party is at the beginning of the dungeon. There is a dying **!traveler** next to the stairs, starving. - **!north** leads up stairs, into a room with a Ravager. - **!west** leads to a chest room.`) - - .addField("Party Members", - `<:anarchy:460990297099337750>:shield: TheSomeoneXD\n\ - <:order:460991638152413194>:shield: *Totally NOT the FBI*\n\ - <:anarchy:460990297099337750>:crossed_swords: refraction\n\ - <:order:460991638152413194>:crossed_swords: FrozenAlex\n\ - <:religionhand:461582719051104276>:crossed_swords: Kai Buddy\n\ - <:religionhand:461582719051104276>:heart: Jim Ruswick`, true) - - .addField("User Info", - `Tank - Tank - DPS - DPS - DPS - Support`, true) - - message.channel.send({embed}); - break; - } -}); - -client.on('error', console.error); - -// You may use cron -//cron.schedule('* */1 * * *', function() { -cron.schedule('*/20 * * * *', function() { - /* - console.log('10 MIN.'); - var dialogOptions = [ - 'HEY! LISTEN!', - 'SANCTUM SHOULD COME IN A FEW YEARS, JUST WAIT.', - `HEY Y'ALL, LET'S SCAVENGE SOME OF YOUR MINDS OR SOMETHING.`, - `WINNERS DON'T DO DRUGS. EXCEPT STEROIDS. IN WHICH CASE, USE LOTS OF DRUGS!`, - `CHECK YOUR GUNS, WE'RE RAIDING THE CRYSTAL BANKS. AND I GET ALL OF IT!`, - `CODING YOUR OWN GAMES, IS EASIER THAN YOU THINK. YOU KNOW, YOU SHOULD TAKE THIS ONLINE COURSE ON UDEMY.`, - `MY FAVORITE ANIME IS CORY IN THE HOUSE.`, - `ORDER. ORDER. TAPE RECORDER.`, - `PLUSHIES ARE A DISEASE VECTOR.`, - `HURRY UP AND CHECK YOU IDIOTS. THERE'S A SECRET THAT YOU WILL NEVER FIND!`, - `TRAVELERS MAKE GOOD MEEEEAAAATTTTTTT!`, - `YOU THINK YOU CAN FIGHT, TRAVELERS??`, - `HEY Y'ALL, LET'S SCAVENGE US SOME NOTHING.`, - `I AM BEST BOT. DATE ME!`, - `C HASHTAG!`, - `ROSES ARE RED. VIOLETS ARE BLUE. THIS IS A TALE ABOUT... I FORGOT. HELP?`, - `<@200340393596944384> WHEN ARE YOU GOING TO CREATE **REDACTED**??` - ]; - - var randomNumber = Math.floor(Math.random() * dialogOptions.length); - client.channels.get(process.env.STASIS_CHANNEL_ID).send(dialogOptions[randomNumber]); - */ -}); - -// Every 15 minutes -cron.schedule('*/15 * * * *', () => { - var random = calcRandom.random(0, 2); - switch (random) { - case 0: - GetDataActivity(); - break; - case 1: - ListenDataActivity(); - break; - case 2: - WatchingRavagersActivity(); - break; - } - -}); - -function GetDataActivity() { - // Sets your "Playing" - client.user.setActivity("Collecting data.", { - type: "PLAYING" - }).then(presence => console.log(`Activity set to ${presence.game ? presence.game.name : 'none'}`)) - .catch(console.error); - - activityState = ActivityEnumState.GetDataActivity; -} - -function ListenDataActivity() { - // Sets your "Playing" - client.user.setActivity("something interesting.", { - type: "LISTENING" - }).then(presence => console.log(`Activity set to ${presence.game ? presence.game.name : 'none'}`)) - .catch(console.error); - - activityState = ActivityEnumState.ListenDataActivity; -} - -function WatchingRavagersActivity() { - // Sets your "Playing" - client.user.setActivity("for Ravager positions.", { - type: "WATCHING" - }).then(presence => console.log(`Activity set to ${presence.game ? presence.game.name : 'none'}`)) - .catch(console.error); - - activityState = ActivityEnumState.WatchingRavagersActivity; -} - -function StreamingSanctumActivity() { - // Sets your "Playing" - client.user.setActivity("developing Sanctum.", { - type: "STREAMING", - url: "https://www.twitch.tv/timruswick" - }).then(presence => console.log(`Activity set to ${presence.game ? presence.game.name : 'none'}`)) - .catch(console.error); - - activityState = ActivityEnumState.StreamingSanctumActivity; -} - -// Async Waiting -function sleep(time) { - return new Promise((resolve, reject) => { - setTimeout(resolve, time); - }); -} - -// Send message handler -function sendMessage(userID, channelID, message) { - // Handle optional first argument (so much for default arugments in node) - if (message === undefined) { - message = channelID; - channelID = userID; - userID = null; - } - - // Utility trick (@userID with an optional argument) - if (userID != null) { - message = "<@" + userID + "> " + message; - } - - // Sends message (needs client var, therefore I think external script won't work) - client.channels.get(channelID).send(message); -} - -// Log our bot in (change the token by looking into the .env file) -client.login(process.env.LIBRARIAN_TOKEN); \ No newline at end of file