diff --git a/app/Game/Channel/Control/PlayerController.js b/app/Game/Channel/Control/PlayerController.js index c1f657f..dd379db 100755 --- a/app/Game/Channel/Control/PlayerController.js +++ b/app/Game/Channel/Control/PlayerController.js @@ -52,7 +52,7 @@ function(Parent, Nc, Parser, Settings) { y: Math.abs(update.p.y - this.player.doll.body.GetPosition().y) } - if(difference.x < Settings.PUNKBUSTER_DIFFERENCE_METERS + if(true || difference.x < Settings.PUNKBUSTER_DIFFERENCE_METERS && difference.y < Settings.PUNKBUSTER_DIFFERENCE_METERS) { this.player.doll.updatePositionState(update); } else { diff --git a/app/Game/Channel/PipeToServer.js b/app/Game/Channel/PipeToServer.js index 43044f1..4e967ac 100755 --- a/app/Game/Channel/PipeToServer.js +++ b/app/Game/Channel/PipeToServer.js @@ -1,33 +1,63 @@ define([ "Lib/Utilities/NotificationCenter", - "Game/Channel/Channel" + "Game/Channel/Channel", + "Game/Config/Settings", + 'fs' ], -function (Nc, Channel) { +function (Nc, Channel, Settings, fs) { "use strict"; function PipeToServer (process) { - - var self = this; - this.channel = null; this.process = process; + this.recordingFileName = null; Nc.on(Nc.ns.channel.to.server.controlCommand.send, this.send, this); - process.on('message', function (message, handle) { + process.on('message', this.onProcessMessage.bind(this)); + } - if(message.data.hasOwnProperty('CREATE')) { - self.channel = new Channel(self, message.data.options); - } else if (message.data.hasOwnProperty('KILL')) { - self.channel.destroy(); - } else { - self.onMessage(message); + PipeToServer.prototype.onProcessMessage = function (message, handle) { + + if(message.data.hasOwnProperty('CREATE')) { + this.channel = new Channel(this, message.data.options); + + message.data.options.playingFileName = "Quickstart-1425229312283.log"; + + if(message.data.options.playingFileName) { + var self = this; + setTimeout(function() { + console.log(message.data.options.playingFileName) + self.play(message.data.options.playingFileName); + }, 2000); + } + + if(Settings.CHANNEL_RECORD_SESSION) { + this.recordingFileName = Settings.CHANNEL_RECORDING_PATH + "/" + this.channel.name + "-" + Date.now() + ".log"; + if(!fs.existsSync(Settings.CHANNEL_RECORDING_PATH)) { + fs.mkdirSync(Settings.CHANNEL_RECORDING_PATH); + } } - }); - } + } else if (message.data.hasOwnProperty('KILL')) { + this.channel.destroy(); + } else { + this.onMessage(message); + + if(Settings.CHANNEL_RECORD_SESSION && this.channel && this.channel.name) { + var m = JSON.stringify(message); + var timestamp = Date.now(); + var line = timestamp + m + "\n"; + + fs.appendFile(this.recordingFileName, line, function (err) { + if (err) throw err; + }); + } + } + + }; PipeToServer.prototype.send = function (recipient, data) { var message = { @@ -50,6 +80,34 @@ function (Nc, Channel) { } + PipeToServer.prototype.play = function(playingFileName) { + var self = this; + var data = fs.readFileSync(Settings.CHANNEL_RECORDING_PATH + "/" + playingFileName); + var lines = data.toString().split("\n"); + var now = Date.now(); + var start = 0; + for (var i = 0; i < lines.length; i++) { + // bind message variable + (function() { + var line = lines[i]; + if(line.length > 0) { + var time = parseInt(line.substring(0, Date.now().toString().length), 10); + if(i == 0) { + start = time; + } + time -= start; + + var jsonString = line.substring(Date.now().toString().length); + var message = JSON.parse(jsonString); + + setTimeout(function() { + self.onProcessMessage(message, null); + }, time); + } + })(); + }; + }; + PipeToServer.prototype.destroy = function() { this.send('coordinator', {destroy:this.channel.name}); this.process.exit(0); diff --git a/app/Game/Config/Settings.js b/app/Game/Config/Settings.js index b2ad33e..d004c86 100755 --- a/app/Game/Config/Settings.js +++ b/app/Game/Config/Settings.js @@ -25,6 +25,7 @@ function () { GRAPHICS_SUBPATH_TILES: 'Tiles/', MAPS_PATH: 'static/maps/tiled/', AUDIO_PATH: 'static/sounds/', + CHANNEL_RECORDING_PATH: 'recordings/', RATIO: 21, //35 // original tile size is 25 but we want it to resize to 20 @@ -48,7 +49,7 @@ function () { RESPAWN_TIME: 5, HEALTH_DISPLAY_TIME: 2, CRITICAL_HEALTH_THRESHOLD: 0.3, - RAGDOLL_DESTRUCTION_TIME: 20, + RAGDOLL_DESTRUCTION_TIME: 20000, VIEWPORT_SPEED_FACTOR: 640, VIEWPORT_LOOK_AHEAD: 0.1, @@ -80,11 +81,12 @@ function () { // CHANNEL CHANNEL_MAX_USERS: 20, - CHANNEL_DESTRUCTION_TIME: 5 * 60, + CHANNEL_DESTRUCTION_TIME: 0.5 * 60, CHANNEL_END_ROUND_TIME: 4, //10, CHANNEL_DEFAULT_MAX_USERS: 40, CHANNEL_DEFAULT_SCORE_LIMIT: 10, CHANNEL_DEFAULT_LEVELS: ['debug'], + CHANNEL_RECORD_SESSION: false, // ME STATE ME_STATE_MAX_DIFFERENCE_METERS: 1, diff --git a/recordings/Quickstart-1425229312283.rec b/recordings/Quickstart-1425229312283.rec new file mode 100644 index 0000000..b2275eb --- /dev/null +++ b/recordings/Quickstart-1425229312283.rec @@ -0,0 +1,1648 @@ +1425229312285{"recipient":"channel","data":{"addUser":{"id":"17994867731691545136","nickname":"Jeena"}}} +1425229312811{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"clientReady\\\":null}\"}"} +1425229315032{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0,\\\"y\\\":0}}\"}"} +1425229315117{"recipient":"channel","data":{"addUser":{"id":"45008369236485470","nickname":"Logsol"}}} +1425229315417{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229315480{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.66791482279966,\\\"y\\\":4.54890386126354},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.81548906862362}}}\"}"} +1425229315561{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.66791482279966,\\\"y\\\":3.3414337054713084},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-14.27542085168273}}}\"}"} +1425229315626{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229315864{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229315865{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229316114{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229316328{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.47489652442523,\\\"y\\\":4.8523780096856495},\\\"lv\\\":{\\\"x\\\":-2.8268012236949454,\\\"y\\\":11.092762750648383}}}\"}"} +1425229316562{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.85583292227827,\\\"y\\\":7.992285802150378},\\\"lv\\\":{\\\"x\\\":-2.577573550247573,\\\"y\\\":15.808634134443135}}}\"}"} +1425229316634{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.673572101733573,\\\"y\\\":9.193325652319308},\\\"lv\\\":{\\\"x\\\":-2.5041344726641688,\\\"y\\\":17.196700333707312}}}\"}"} +1425229316703{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.506166783130023,\\\"y\\\":10.417100283652466},\\\"lv\\\":{\\\"x\\\":-2.4367132226788955,\\\"y\\\":18.471830469931767}}}\"}"} +1425229316778{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.32917438490183,\\\"y\\\":11.846850326291351},\\\"lv\\\":{\\\"x\\\":-2.3653776018993167,\\\"y\\\":19.819565624074635}}}\"}"} +1425229316829{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.21017694842664,\\\"y\\\":12.888608399267664},\\\"lv\\\":{\\\"x\\\":-2.317449776703554,\\\"y\\\":20.725981085502774}}}\"}"} +1425229316901{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.053390114259127,\\\"y\\\":14.32687749793854},\\\"lv\\\":{\\\"x\\\":-0.9818076830694906,\\\"y\\\":-1.239899830286312}}}\"}"} +1425229317957{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229317957{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229318782{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229318819{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"clientReady\\\":null}\"}"} +1425229318852{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229318923{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229318923{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229319381{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229319480{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.266188981902529,\\\"y\\\":16.464400352379215},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-15.670214946736301}}}\"}"} +1425229319497{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.36475410193757,\\\"y\\\":16.221879898496894},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-15.157528367644996}}}\"}"} +1425229319931{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229320159{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229320195{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229320195{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229320315{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229320316{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229320602{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.05839949594,\\\"y\\\":2.1029950216933777},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":3.2629192672159366}}}\"}"} +1425229320981{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.23961901594,\\\"y\\\":4.792349225018047},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":11.38449789027143}}}\"}"} +1425229321048{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.63387453594,\\\"y\\\":5.57510724779155},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":12.733372080014691}}}\"}"} +1425229321051{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229321084{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.82488165594,\\\"y\\\":5.984768466363935},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":13.374483803710383}}}\"}"} +1425229321107{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.91119557594,\\\"y\\\":6.176030142485669},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":13.661548294409606}}}\"}"} +1425229321117{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.003637575940001,\\\"y\\\":6.385538727555317},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":13.96723900464315}}}\"}"} +1425229321118{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.628461213125178,\\\"y\\\":16.713992671889994},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-16.190857470598612}}}\"}"} +1425229321136{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.727028956527356,\\\"y\\\":16.463194737872616},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-15.674870876086162}}}\"}"} +1425229321153{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.219107415940002,\\\"y\\\":6.892981266282675},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":14.67281885932333}}}\"}"} +1425229321181{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.372557415940001,\\\"y\\\":7.272221033050927},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":15.169590670730097}}}\"}"} +1425229321199{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.471122535940001,\\\"y\\\":7.519994519297926},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":15.485842890437425}}}\"}"} +1425229321401{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229321437{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229321438{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229321774{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229321840{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229321911{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.3127350467196272,\\\"y\\\":0.7594993991762375,\\\"av\\\":0.09886149326922293}}\"}"} +1425229322208{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229322208{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229322425{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229322441{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229322590{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229322594{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229322599{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229322625{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229322632{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.920252726625986,\\\"y\\\":14.281247266003682},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-1.351438420366276e-17}}}\"}"} +1425229322645{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.715660406621375,\\\"y\\\":17.011248161488},\\\"lv\\\":{\\\"x\\\":3.0629111040000003,\\\"y\\\":-16.978673958907798}}}\"}"} +1425229322651{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.83465432805308,\\\"y\\\":14.281323227286467},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":1.3512736270357243e-17}}}\"}"} +1425229322675{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.67928356853558,\\\"y\\\":14.281323227286427},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-4.440932363067906e-18}}}\"}"} +1425229322701{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.501334190305638,\\\"y\\\":14.281323227286386},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":5.2202000249789626e-18}}}\"}"} +1425229322733{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229322733{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229322981{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229323026{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229323133{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229323133{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229323236{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229323319{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229323494{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229323494{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229323540{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.63087884352047,\\\"y\\\":18.08430154289122},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-1.3077595008048999}}}\"}"} +1425229323876{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229324177{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229324191{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229324195{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229324245{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229324297{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.02376669331663,\\\"y\\\":18.091225974250435},\\\"lv\\\":{\\\"x\\\":6.1170261023747425,\\\"y\\\":-1.151189657313825e-17}}}\"}"} +1425229324302{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.058304879550338,\\\"y\\\":18.091225974250452},\\\"lv\\\":{\\\"x\\\":5.756364371941564,\\\"y\\\":-3.671132429502372e-18}}}\"}"} +1425229324303{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.127175689551816,\\\"y\\\":18.091225974250413},\\\"lv\\\":{\\\"x\\\":4.919343571871194,\\\"y\\\":-3.3290010414227896e-18}}}\"}"} +1425229324325{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.189739854242806,\\\"y\\\":18.09121817963449},\\\"lv\\\":{\\\"x\\\":3.6109084863338157,\\\"y\\\":2.4466401356146597e-17}}}\"}"} +1425229324339{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.0424249688921092,\\\"av\\\":0.8761253147070104}}\"}"} +1425229324339{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.212120104312934,\\\"y\\\":18.091218179634513},\\\"lv\\\":{\\\"x\\\":3.197178581109767,\\\"y\\\":-4.5913705249254915e-18}}}\"}"} +1425229324348{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.245359124935021,\\\"y\\\":18.091218179634478},\\\"lv\\\":{\\\"x\\\":2.3742157590153745,\\\"y\\\":1.65349072090892e-17}}}\"}"} +1425229324442{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.2886421729806181,\\\"av\\\":-0.5061032262914261}}\"}"} +1425229324526{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229324548{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229324548{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229324673{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229324673{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229325175{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229325275{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229325276{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229325282{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229325333{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229325456{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229325461{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229325543{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229325606{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229325718{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229325723{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229325789{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229325789{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229325833{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229325833{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229325868{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.2464980450487624,\\\"y\\\":18.093194407482734},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":3.6919297026601755e-17}}}\"}"} +1425229325887{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.379187126512581,\\\"y\\\":18.093194407482734},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":1.879691718908506e-17}}}\"}"} +1425229325930{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.50426481360543,\\\"y\\\":18.093194407482734},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.1948226735228985e-17}}}\"}"} +1425229325935{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.6293443679265196,\\\"y\\\":18.093194407482734},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":1.0570010880814769e-17}}}\"}"} +1425229325935{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.7467752082826076,\\\"y\\\":18.093194407482734},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":3.261953302969388e-17}}}\"}"} +1425229325986{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229326089{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229326156{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":1.6594130200926527,\\\"y\\\":0.17384326877161121,\\\"av\\\":0.053558250428547755}}\"}"} +1425229326232{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.9884076345725537,\\\"y\\\":18.090389199339874},\\\"lv\\\":{\\\"x\\\":-2.9147458725709954e-17,\\\"y\\\":0}}}\"}"} +1425229326251{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.9884076345725537,\\\"y\\\":18.090389199339874},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":0}}}\"}"} +1425229326285{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.9884076345725537,\\\"y\\\":18.090389199339874},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":0}}}\"}"} +1425229326289{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.9884076345725537,\\\"y\\\":18.090389199339874},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":0}}}\"}"} +1425229326327{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229326360{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229326361{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229326429{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":20.72733191547862,\\\"y\\\":18.095238095238102},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.1275702593849246e-17}}}\"}"} +1425229326447{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":20.852431857244245,\\\"y\\\":18.095238095238102},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":0}}}\"}"} +1425229326646{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229326646{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229326819{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229326866{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.08173420511315,\\\"y\\\":16.999733923699832},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-16.94783234392781}}}\"}"} +1425229326888{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.18029932511315,\\\"y\\\":16.736917465829006},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-16.426028616926672}}}\"}"} +1425229326901{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.266613245113151,\\\"y\\\":16.5133083282356},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-15.972081256671881}}}\"}"} +1425229326916{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.365178365113151,\\\"y\\\":16.266003970849532},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-15.456522336629181}}}\"}"} +1425229326965{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229326970{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.6547406851131505,\\\"y\\\":15.586579395558143},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-13.961025578727986}}}\"}"} +1425229327002{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.7533058051131505,\\\"y\\\":15.371245996917757},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-13.458337415024127}}}\"}"} +1425229327006{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.85187092511315,\\\"y\\\":15.16390413362867},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-12.958866455567973}}}\"}"} +1425229327026{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229327049{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.13531012511315,\\\"y\\\":14.611453601625398},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-11.540512555789835}}}\"}"} +1425229327067{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.23387524511315,\\\"y\\\":14.434600550818473},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-11.05331567543278}}}\"}"} +1425229327115{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.54180692511315,\\\"y\\\":13.9321347365955},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-9.550978061967031}}}\"}"} +1425229327134{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.64649020511315,\\\"y\\\":13.778335107406024},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-9.047037011145655}}}\"}"} +1425229327154{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229327155{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229327175{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229327659{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229327682{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.768802765113149,\\\"y\\\":14.761523260386634},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":8.026852177614163}}}\"}"} +1425229327702{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.965928045113149,\\\"y\\\":15.035741594077987},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":8.74845639890955}}}\"}"} +1425229327713{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":20.36692761581876,\\\"y\\\":17.002016696413772},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":1.6158447705268464}}}\"}"} +1425229327730{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":20.262243527350016,\\\"y\\\":17.036766709846592},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":2.0441184372246375}}}\"}"} +1425229327771{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.360173645113148,\\\"y\\\":15.652518477847538},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":10.164146149993163}}}\"}"} +1425229327786{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.452615645113148,\\\"y\\\":15.809880796943936},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":10.490821273093205}}}\"}"} +1425229327819{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":-0.04790419161676647,\\\"av\\\":0}}\"}"} +1425229327854{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.840753005113148,\\\"y\\\":16.524153434022747},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":11.8412998515598}}}\"}"} +1425229327856{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229327867{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.939318125113148,\\\"y\\\":16.719015084142903},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":12.178853132509818}}}\"}"} +1425229327926{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.235008525113148,\\\"y\\\":17.335681404714254},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":13.178592615974003}}}\"}"} +1425229327944{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229327983{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.572086340830088,\\\"y\\\":18.093087377105885},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.4319731356777954}}}\"}"} +1425229328006{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.722931140830088,\\\"y\\\":18.0754013308488},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-0.9308445398466441}}}\"}"} +1425229328038{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229328108{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229328108{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229328147{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.222854164924865,\\\"y\\\":18.071118336954637},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-0.7255880143918991}}}\"}"} +1425229328163{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.342134164924865,\\\"y\\\":18.066114719660053},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-0.3335744863055477}}}\"}"} +1425229328182{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.454998412281054,\\\"y\\\":18.059896786773304},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":0.035631355860703345}}}\"}"} +1425229328354{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229328418{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229328582{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229328796{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229329061{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229329163{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.102376161579173,\\\"y\\\":16.279924920621436},\\\"lv\\\":{\\\"x\\\":-5.824021793963927e-31,\\\"y\\\":-15.288675639421045}}}\"}"} +1425229329178{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.102376161579173,\\\"y\\\":16.057772750738394},\\\"lv\\\":{\\\"x\\\":-5.789414264230887e-31,\\\"y\\\":-14.810144658869332}}}\"}"} +1425229329241{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229329242{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229329523{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229329523{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229329879{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229330091{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229330419{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229330673{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229330729{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.483554581409965,\\\"y\\\":13.239665599405471},\\\"lv\\\":{\\\"x\\\":3.904164704331782e-31,\\\"y\\\":-16.662410843811163}}}\"}"} +1425229330745{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.483554581409965,\\\"y\\\":12.981370633354615},\\\"lv\\\":{\\\"x\\\":3.8794187353790093e-31,\\\"y\\\":-16.143435378178562}}}\"}"} +1425229330964{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229330964{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229331324{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229331331{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229331959{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229332041{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.136443987303618,\\\"y\\\":9.927268946259344},\\\"lv\\\":{\\\"x\\\":5.090759918247359e-31,\\\"y\\\":-15.695739429203933}}}\"}"} +1425229332098{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.135768715966485,\\\"y\\\":9.156142183865452},\\\"lv\\\":{\\\"x\\\":4.973970748662668e-31,\\\"y\\\":-14.017342495382664}}}\"}"} +1425229332341{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229332342{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229332823{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229332844{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229333135{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229333136{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229333350{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229333668{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229333668{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229333809{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.461078694236132,\\\"y\\\":1.899822227085322},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-2.9147458725709954e-17}}}\"}"} +1425229333875{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.930857765038156,\\\"y\\\":1.899822227085322},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-9.541262860856403e-16}}}\"}"} +1425229333913{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229333913{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229333948{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229334043{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.211245154965971,\\\"y\\\":0.12542681076104528,\\\"av\\\":-0.07125016348901766}}\"}"} +1425229334055{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229334081{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229334390{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229334503{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.234207178110186,\\\"y\\\":5.479557783055495},\\\"lv\\\":{\\\"x\\\":2.9495255028401495,\\\"y\\\":12.521155110921272}}}\"}"} +1425229334523{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.281097554744138,\\\"y\\\":5.685227500146877},\\\"lv\\\":{\\\"x\\\":2.9306485396219726,\\\"y\\\":12.854357318211378}}}\"}"} +1425229334575{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.417118496327356,\\\"y\\\":6.319739159808013},\\\"lv\\\":{\\\"x\\\":2.8758967400129207,\\\"y\\\":13.820950632583784}}}\"}"} +1425229334587{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.45999811672095,\\\"y\\\":6.531624433739838},\\\"lv\\\":{\\\"x\\\":2.858641359572843,\\\"y\\\":14.125684928788282}}}\"}"} +1425229334622{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.54779321327703,\\\"y\\\":6.984046120609332},\\\"lv\\\":{\\\"x\\\":2.8233039785423473,\\\"y\\\":14.749586436372573}}}\"}"} +1425229334631{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229334631{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229334637{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.589888675597097,\\\"y\\\":7.209777354375647},\\\"lv\\\":{\\\"x\\\":2.806364154671093,\\\"y\\\":15.048748917754338}}}\"}"} +1425229334662{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.631731565143243,\\\"y\\\":7.439969100739364},\\\"lv\\\":{\\\"x\\\":2.7895259697430665,\\\"y\\\":15.346116424247812}}}\"}"} +1425229334686{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.66342427467529,\\\"y\\\":7.611897488671832},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-1.566123887913263}}}\"}"} +1425229334695{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.66342427467529,\\\"y\\\":7.5936132791513415},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-1.1427630950306182}}}\"}"} +1425229334752{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229334756{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229334766{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229334890{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229334895{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229335424{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229335583{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229335772{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229335841{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229335963{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.659490495202937,\\\"y\\\":11.648489602751743},\\\"lv\\\":{\\\"x\\\":-2.6992301479521412,\\\"y\\\":13.224340876637969}}}\"}"} +1425229336007{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.494717672969465,\\\"y\\\":12.517492781505133},\\\"lv\\\":{\\\"x\\\":-2.632908581525313,\\\"y\\\":14.486563250090501}}}\"}"} +1425229336038{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229336125{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.217299021934211,\\\"y\\\":14.21404223709865},\\\"lv\\\":{\\\"x\\\":-2.52125049090063,\\\"y\\\":16.611719806592077}}}\"}"} +1425229336142{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.174729220145648,\\\"y\\\":14.501984063801073},\\\"lv\\\":{\\\"x\\\":-2.5041059875625056,\\\"y\\\":16.93775451190725}}}\"}"} +1425229336164{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229336165{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229336188{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.0831033818766125,\\\"y\\\":15.148179459603002},\\\"lv\\\":{\\\"x\\\":-2.46718224362622,\\\"y\\\":17.639347388017917}}}\"}"} +1425229336204{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.026880246035961,\\\"y\\\":15.563779426820108},\\\"lv\\\":{\\\"x\\\":-2.4444841669848585,\\\"y\\\":18.06956379204815}}}\"}"} +1425229336240{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.947009317424065,\\\"y\\\":16.17523853086997},\\\"lv\\\":{\\\"x\\\":-2.4123233599316056,\\\"y\\\":18.681353241729347}}}\"}"} +1425229336259{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.9110415761274844,\\\"y\\\":16.459592407704154},\\\"lv\\\":{\\\"x\\\":-2.397849419772016,\\\"y\\\":18.95692512227897}}}\"}"} +1425229336275{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229336280{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229336280{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.8124764561274844,\\\"y\\\":16.767575422128097},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":19.248938401496385}}}\"}"} +1425229336293{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.7200344561274843,\\\"y\\\":17.06039199369441},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":19.52110477108741}}}\"}"} +1425229336309{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.6398535761274844,\\\"y\\\":17.31721788023602},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":19.755837426277754}}}\"}"} +1425229336324{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.5474115761274843,\\\"y\\\":17.61759231626182},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":20.02496240172009}}}\"}"} +1425229336341{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.4610976561274844,\\\"y\\\":17.901439295233608},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":20.274784212270458}}}\"}"} +1425229336357{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.4029527199072267,\\\"y\\\":18.08380678197805},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-2.054079550699683}}}\"}"} +1425229336375{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229336520{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229336537{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229336537{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229336563{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229336579{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.74499037530289,\\\"y\\\":18.095238095238102},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":1.4573729362854977e-17}}}\"}"} +1425229336778{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229336789{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229336881{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229336896{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.6212343511496794,\\\"y\\\":18.091808958720343},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":1.6362319081457965e-17}}}\"}"} +1425229336906{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.6844999080365506,\\\"y\\\":18.091808958720343},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.485838461822278e-17}}}\"}"} +1425229336923{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.794271842779999,\\\"y\\\":18.091808958720343},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.1533428507766835e-18}}}\"}"} +1425229336978{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.108223249736924,\\\"y\\\":18.09182138986828},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.032958967090339e-17}}}\"}"} +1425229336990{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.217986058316791,\\\"y\\\":18.09182138986828},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-7.603330697334378e-18}}}\"}"} +1425229337105{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229337248{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":1.4904536101718724,\\\"y\\\":0.01866399869624885,\\\"av\\\":-0.05194428907734874}}\"}"} +1425229337431{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229337498{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229337534{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.07237745127411,\\\"y\\\":17.227362549959157},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-2.6290174527637618}}}\"}"} +1425229337573{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.293399549580523,\\\"y\\\":16.83328122950113},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.62043866228694}}}\"}"} +1425229337601{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229337606{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.293399549580523,\\\"y\\\":16.32631997772408},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.584347981217276}}}\"}"} +1425229337627{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.293399549580523,\\\"y\\\":16.09977224932413},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.103181893329971}}}\"}"} +1425229337631{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229337647{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.293399549580523,\\\"y\\\":15.88039870729458},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-14.624902801969991}}}\"}"} +1425229337664{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.33662744156536556,\\\"av\\\":0.8983552054329274}}\"}"} +1425229337675{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.293399549580523,\\\"y\\\":15.449827283673585},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.64559802909316}}}\"}"} +1425229337688{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.293399549580523,\\\"y\\\":15.226892453111164},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.113813562495325}}}\"}"} +1425229337706{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.293399549580523,\\\"y\\\":15.02502769222004},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-12.616547555695355}}}\"}"} +1425229337727{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.293399549580523,\\\"y\\\":14.831068267398617},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-12.122464051338905}}}\"}"} +1425229337755{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.293399549580523,\\\"y\\\":14.477352183116224},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-11.174093425321873}}}\"}"} +1425229337773{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.293399549580523,\\\"y\\\":14.316561350144674},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-10.719388864769941}}}\"}"} +1425229337796{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.293399549580523,\\\"y\\\":14.162550162170954},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-10.267412531581321}}}\"}"} +1425229337884{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.293399549580523,\\\"y\\\":13.605501914577019},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-8.457225501930331}}}\"}"} +1425229337884{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229337899{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229337899{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229338269{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229338281{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229338281{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229338379{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.695979908614715,\\\"y\\\":17.335085365898973},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":11.373480946115237}}}\"}"} +1425229338465{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229338486{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229338529{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229338557{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.097398669505981,\\\"y\\\":16.239494664958016},\\\"lv\\\":{\\\"x\\\":0.3015374312010667,\\\"y\\\":11.376574313786376}}}\"}"} +1425229338557{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229338557{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229338573{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.101894592605189,\\\"y\\\":16.41493428797657},\\\"lv\\\":{\\\"x\\\":0.2997282066138603,\\\"y\\\":11.695974867903658}}}\"}"} +1425229338624{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.1152211551130486,\\\"y\\\":16.969712607750726},\\\"lv\\\":{\\\"x\\\":0.2943654047998324,\\\"y\\\":12.642724034996556}}}\"}"} +1425229338637{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.119610143298614,\\\"y\\\":17.164030523112523},\\\"lv\\\":{\\\"x\\\":0.2925992123710334,\\\"y\\\":12.954527690786577}}}\"}"} +1425229338648{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229338661{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.124261768537204,\\\"y\\\":17.37658982412957},\\\"lv\\\":{\\\"x\\\":0.2907265774118588,\\\"y\\\":13.284956313565544}}}\"}"} +1425229338688{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.133475898340372,\\\"y\\\":17.817433873042873},\\\"lv\\\":{\\\"x\\\":0.2870171853815978,\\\"y\\\":13.939482863922512}}}\"}"} +1425229338707{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.1380387827466945,\\\"y\\\":18.045651597420367},\\\"lv\\\":{\\\"x\\\":0.2851802753951556,\\\"y\\\":14.263607773593408}}}\"}"} +1425229338779{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229338784{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229338932{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229338988{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229339086{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229339164{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.972753703176931,\\\"y\\\":16.893941891154217},\\\"lv\\\":{\\\"x\\\":2.57884446805285e-17,\\\"y\\\":-16.749466695226076}}}\"}"} +1425229339174{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.972753703176931,\\\"y\\\":16.650022242728397},\\\"lv\\\":{\\\"x\\\":2.5633714012445327e-17,\\\"y\\\":-16.26130989505472}}}\"}"} +1425229339203{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.972753703176931,\\\"y\\\":16.33771465441051},\\\"lv\\\":{\\\"x\\\":2.5428644300345765e-17,\\\"y\\\":-15.615379415894282}}}\"}"} +1425229339208{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229339208{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229339238{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.763392103176931,\\\"y\\\":15.834565158143409},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-14.528735447081603}}}\"}"} +1425229339243{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":null,\\\"y\\\":null,\\\"av\\\":0}}\"}"} +1425229339257{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.664826983176931,\\\"y\\\":15.610206535099884},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-14.02241394022028}}}\"}"} +1425229339277{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.5723849831769305,\\\"y\\\":15.4069472432512},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-13.550619456578959}}}\"}"} +1425229339289{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.47994298317693,\\\"y\\\":15.210722407153607},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-13.081655739839485}}}\"}"} +1425229339313{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.3813778631769305,\\\"y\\\":15.009368878463935},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-12.584595543104513}}}\"}"} +1425229339325{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.28893586317693,\\\"y\\\":14.827547458916246},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-12.121427969845884}}}\"}"} +1425229339343{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.20875498317693,\\\"y\\\":14.675159455039012},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-11.722154144402687}}}\"}"} +1425229339344{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229339360{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.12244106317693,\\\"y\\\":14.517035776302295},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-11.294548481194031}}}\"}"} +1425229339428{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.7588011431769295,\\\"y\\\":13.91634132598495},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-9.51884393807987}}}\"}"} +1425229339429{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.926817687907546,\\\"y\\\":16.493052639030942},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-15.938014803209214}}}\"}"} +1425229339443{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229339446{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.834375687907546,\\\"y\\\":16.261231738315093},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-15.454726714389958}}}\"}"} +1425229339466{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229339522{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229339550{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229339572{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229339835{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229339862{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229339862{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229340159{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229340172{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229340261{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229340261{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229340579{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229340647{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229340650{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229340722{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229340731{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229340765{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.2709702772659988,\\\"y\\\":14.316512044820373},\\\"lv\\\":{\\\"x\\\":7.905440622571762,\\\"y\\\":1.1308802136915206}}}\"}"} +1425229340778{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.388853973092768,\\\"y\\\":14.339190980639314},\\\"lv\\\":{\\\"x\\\":7.858913055117925,\\\"y\\\":1.5119290545961381}}}\"}"} +1425229340850{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.6534228235976808,\\\"y\\\":-0.7222041734500683,\\\"av\\\":0.31534791905188797}}\"}"} +1425229341085{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229341217{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229341222{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229341425{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229341425{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229341458{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229341754{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":-0.3088574155216758,\\\"av\\\":0.35055236475756063}}\"}"} +1425229341828{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229341940{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229342009{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.767900178736696,\\\"y\\\":16.89656150360298},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-14.134836975210252}}}\"}"} +1425229342030{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.860342178736696,\\\"y\\\":16.691625984302597},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-13.66236795335899}}}\"}"} +1425229342042{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.971714978736696,\\\"y\\\":16.506491425003116},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-13.223897092820177}}}\"}"} +1425229342059{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.090994978736695,\\\"y\\\":16.315138019349167},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-12.756893710263256}}}\"}"} +1425229342111{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.374434178736696,\\\"y\\\":15.771865195658897},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-11.342232201132026}}}\"}"} +1425229342126{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.460748098736696,\\\"y\\\":15.619030638247617},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-10.916754100805685}}}\"}"} +1425229342143{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.547062018736696,\\\"y\\\":15.47211941675784},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-10.493658677841172}}}\"}"} +1425229342153{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229342153{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229342193{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.799746738736697,\\\"y\\\":15.076186739550195},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-9.268335439201529}}}\"}"} +1425229342214{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.886060658736698,\\\"y\\\":14.952224143299807},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-8.854471160742}}}\"}"} +1425229342242{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229342588{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229342744{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229342853{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229342853{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229343005{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229343191{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229343298{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":-0.36388352936093243,\\\"av\\\":0.1482573844561793}}\"}"} +1425229343366{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.577795033165232,\\\"y\\\":16.461596434727834},\\\"lv\\\":{\\\"x\\\":5.707938748875747,\\\"y\\\":-15.872854176424182}}}\"}"} +1425229343483{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.948044291452753,\\\"y\\\":15.08232470649599},\\\"lv\\\":{\\\"x\\\":-0.5664473992703357,\\\"y\\\":-12.093384306498116}}}\"}"} +1425229343504{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.937921649848832,\\\"y\\\":14.874574438785146},\\\"lv\\\":{\\\"x\\\":-0.5623689779955893,\\\"y\\\":-11.54168153949133}}}\"}"} +1425229343506{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229343580{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.900870910217044,\\\"y\\\":14.186252842812365},\\\"lv\\\":{\\\"x\\\":-0.5474478939519972,\\\"y\\\":-9.522476708007117}}}\"}"} +1425229343595{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.89270846211822,\\\"y\\\":14.050087615095979},\\\"lv\\\":{\\\"x\\\":-0.5441632065882852,\\\"y\\\":-9.077681847759074}}}\"}"} +1425229343755{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229343756{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229343756{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229344036{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229344053{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229344087{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229344087{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229344154{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.21141546833617,\\\"y\\\":18.08471980377036},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":0.2516976079817255}}}\"}"} +1425229344172{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.176369771544282,\\\"y\\\":18.076436996355262},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":0.3780607295328389}}}\"}"} +1425229344291{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229344291{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229344292{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229344525{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229344651{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229344654{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229344656{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229344656{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229344743{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229344743{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229344878{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229345003{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229345003{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229345055{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229345296{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229345450{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229345457{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.4762114922835438,\\\"y\\\":-2,\\\"av\\\":0.8476648569909702}}\"}"} +1425229345674{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229345674{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229345801{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229345801{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229345802{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229346062{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.418627662314314,\\\"y\\\":18.087944152896288},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-0.3556439275258399}}}\"}"} +1425229346089{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229346124{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":-0.16808816516892042,\\\"av\\\":0.43421165622823255}}\"}"} +1425229346147{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.812370079824488,\\\"y\\\":18.095238095238095},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":7.101524229780054e-18}}}\"}"} +1425229346265{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229346316{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229346318{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229346335{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229346405{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229346407{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229346514{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229346544{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.060371586003708,\\\"y\\\":18.095238100069885},\\\"lv\\\":{\\\"x\\\":4.146807302801711,\\\"y\\\":0.000004619618710732966}}}\"}"} +1425229346557{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0,\\\"av\\\":0}}\"}"} +1425229346561{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.10929464851459,\\\"y\\\":18.095238164814766},\\\"lv\\\":{\\\"x\\\":3.2614424922269825,\\\"y\\\":-2.564138137928218e-17}}}\"}"} +1425229346605{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229346610{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229346778{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":6.753776565701941,\\\"y\\\":18.095238095238102},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":0}}}\"}"} +1425229346848{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229346851{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":6.280775833112603,\\\"y\\\":18.09308470056808},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":0.4446815829072326}}}\"}"} +1425229346939{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229347256{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229347257{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229347392{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229347423{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229347490{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229347490{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229347598{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.21377530929087057,\\\"av\\\":0.7465857277828708}}\"}"} +1425229347628{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.2534890336828752,\\\"y\\\":18.048648270257523},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-0.20958262180149415}}}\"}"} +1425229347645{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.3648610102240872,\\\"y\\\":18.050798238234165},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":0.15356914118870726}}}\"}"} +1425229347704{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229347705{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.685682578353116,\\\"y\\\":18.088156969287027},\\\"lv\\\":{\\\"x\\\":7.955257552859261,\\\"y\\\":1.228190345269101}}}\"}"} +1425229347714{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.7625846578557933,\\\"y\\\":18.093533208181334},\\\"lv\\\":{\\\"x\\\":3.9714746709003967,\\\"y\\\":-0.16086664214435736}}}\"}"} +1425229347809{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.48258319805734184,\\\"av\\\":-0.7427864610402248}}\"}"} +1425229347981{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229347981{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229348043{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229348079{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.7663297011680563,\\\"y\\\":18.09227321265802},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-6.451002926288751e-18}}}\"}"} +1425229348134{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.508502707578619,\\\"y\\\":18.09227321265802},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":1.1357017756785659e-17}}}\"}"} +1425229348138{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.391052323149986,\\\"y\\\":18.09227321265802},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":3.865180744910823e-17}}}\"}"} +1425229348172{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.2736019387213533,\\\"y\\\":18.09227321265802},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":2.6363692505547873e-17}}}\"}"} +1425229348234{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229348241{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229348242{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229348283{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229348323{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229348364{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":1.315236350900737,\\\"y\\\":17.00970197909565},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":1.6783039417663046}}}\"}"} +1425229348379{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":1.315236350900737,\\\"y\\\":17.035777628192147},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":2.00581916126912}}}\"}"} +1425229348396{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":1.315236350900737,\\\"y\\\":17.068769302627672},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":2.356548173966013}}}\"}"} +1425229348472{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229348472{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229348583{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229348677{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.6480473464501673,\\\"y\\\":18.092930722289015},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":0.4539819428583127}}}\"}"} +1425229348694{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.77087644190797,\\\"y\\\":18.092930722289015},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":5.829491745141991e-17}}}\"}"} +1425229348725{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229348767{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.1389415137714343,\\\"y\\\":18.092313412639225},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-2.7755575615628914e-17}}}\"}"} +1425229348813{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.608720584573458,\\\"y\\\":18.092313412639225},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-8.51098705401121e-18}}}\"}"} +1425229348827{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229348827{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229348831{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229348953{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229349028{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.845784944743272,\\\"y\\\":17.091506309310997},\\\"lv\\\":{\\\"x\\\":-2.7219447357337896,\\\"y\\\":-12.259582057438836}}}\"}"} +1425229349044{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.805200748733481,\\\"y\\\":16.914530840834583},\\\"lv\\\":{\\\"x\\\":-2.705613067319387,\\\"y\\\":-11.798364565094202}}}\"}"} +1425229349062{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.7621879944344645,\\\"y\\\":16.733578561924542},\\\"lv\\\":{\\\"x\\\":-2.6882971436885432,\\\"y\\\":-11.3095174318776}}}\"}"} +1425229349150{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229349175{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229349175{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229349222{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229349615{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229349626{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.1638428245805494,\\\"av\\\":0.5734350180774223}}\"}"} +1425229349853{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229349854{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229349862{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.469936981977203,\\\"y\\\":17.94331240811687},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":10.8862723287119}}}\"}"} +1425229349870{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229349880{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.498020454240596,\\\"y\\\":18.013322070776454},\\\"lv\\\":{\\\"x\\\":2.691793425390825,\\\"y\\\":11.225609568432793}}}\"}"} +1425229350345{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229350350{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229350560{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229350771{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229350805{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229350806{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229351241{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229351336{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229351526{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229351580{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.521403706241543,\\\"y\\\":17.08386793792383},\\\"lv\\\":{\\\"x\\\":-4.316913562490156e-50,\\\"y\\\":-16.726196278712475}}}\"}"} +1425229351598{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.521403706241543,\\\"y\\\":16.840281089080115},\\\"lv\\\":{\\\"x\\\":-4.291261578388092e-50,\\\"y\\\":-16.239123256247783}}}\"}"} +1425229351917{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229351918{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229352339{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229352629{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229352900{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229353504{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229353614{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.334453686297199,\\\"y\\\":12.247001452595773},\\\"lv\\\":{\\\"x\\\":-3.000725033384416,\\\"y\\\":11.192866766470978}}}\"}"} +1425229353662{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229353662{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229354063{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229354329{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229354329{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229354365{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.83133047287333,\\\"y\\\":14.284078557334352},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-3.102962513610464e-18}}}\"}"} +1425229354384{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.698615704387713,\\\"y\\\":14.28407855733435},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":2.8006454524254636e-17}}}\"}"} +1425229354398{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229354400{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.697487720772763,\\\"y\\\":14.009332600071945},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-18.316397150827004}}}\"}"} +1425229354756{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229354756{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229355467{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229355505{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229355510{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229355677{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.001625494037526,\\\"y\\\":5.709853212774939},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.1275702593849246e-17}}}\"}"} +1425229355731{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.486726146426044,\\\"y\\\":5.709853212774939},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-9.944242215162381e-16}}}\"}"} +1425229355755{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.606006146426044,\\\"y\\\":5.715668112774939},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":0.387659999999999}}}\"}"} +1425229355773{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229355773{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229355858{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229355972{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229356012{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229356023{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229356088{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229356113{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.4001249804748511,\\\"y\\\":-0.010003124511871277,\\\"av\\\":0}}\"}"} +1425229356172{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.03595183993005,\\\"y\\\":7.84069941383875},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":9.776243732036567}}}\"}"} +1425229356239{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.653937599930053,\\\"y\\\":8.499194572048623},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":11.123199812034267}}}\"}"} +1425229356280{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229356285{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.422832599930057,\\\"y\\\":9.028506077500493},\\\"lv\\\":{\\\"x\\\":-3.0814,\\\"y\\\":12.08019719414619}}}\"}"} +1425229356309{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.376888925930057,\\\"y\\\":9.214436717665214},\\\"lv\\\":{\\\"x\\\":-3.0629116,\\\"y\\\":12.395376010981314}}}\"}"} +1425229356344{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.25584016947344,\\\"y\\\":9.735205084840237},\\\"lv\\\":{\\\"x\\\":-3.014100550676544,\\\"y\\\":13.225385772250155}}}\"}"} +1425229356364{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.19307574524637,\\\"y\\\":10.021974913607265},\\\"lv\\\":{\\\"x\\\":-2.988782106050861,\\\"y\\\":13.655706131763253}}}\"}"} +1425229356384{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.145561282837217,\\\"y\\\":10.245681269007584},\\\"lv\\\":{\\\"x\\\":-2.9696539005721356,\\\"y\\\":13.981647212519968}}}\"}"} +1425229356400{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.101283743179685,\\\"y\\\":10.459962528946257},\\\"lv\\\":{\\\"x\\\":-2.951835977168703,\\\"y\\\":14.285417329244849}}}\"}"} +1425229356406{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229356406{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229356415{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.187597663179684,\\\"y\\\":10.663905857237072},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":14.567380592201078}}}\"}"} +1425229356439{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229356439{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229356450{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.286162783179684,\\\"y\\\":10.902105648539647},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":14.887486956410992}}}\"}"} +1425229356455{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.378604783179682,\\\"y\\\":11.129892979059735},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":15.185822034672526}}}\"}"} +1425229356468{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.47104678317968,\\\"y\\\":11.362128485596703},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":15.482367102464492}}}\"}"} +1425229356522{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.80151670317968,\\\"y\\\":12.243423936932318},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":16.529191226612053}}}\"}"} +1425229356537{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229356562{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.91191431585168,\\\"y\\\":12.857093520760523},\\\"lv\\\":{\\\"x\\\":3.055520704,\\\"y\\\":17.217943207342024}}}\"}"} +1425229356567{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229356567{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229356583{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.78890631585168,\\\"y\\\":13.209014313994189},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":17.59603966168329}}}\"}"} +1425229356599{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.69646431585168,\\\"y\\\":13.477186165349886},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":17.87812342371319}}}\"}"} +1425229356634{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.49933407585168,\\\"y\\\":14.063603551029672},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":18.474045571185098}}}\"}"} +1425229356649{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.426433957646292,\\\"y\\\":14.2778947203355},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-1.876914927952953}}}\"}"} +1425229356670{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.291358757646293,\\\"y\\\":14.25366704272597},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-1.4251575064428725}}}\"}"} +1425229356704{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229356805{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229357259{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229357264{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229357338{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229357339{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229357343{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":-0.4708421181677689,\\\"av\\\":0.8517387793920895}}\"}"} +1425229357653{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229357653{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229357691{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229357821{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229357821{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229358185{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229358324{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229358518{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229358568{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229358572{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229358719{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.45927807482215,\\\"y\\\":16.032146242761552},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":8.869584742676263}}}\"}"} +1425229358738{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.37296350522209,\\\"y\\\":16.160706329313747},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":9.182863325156914}}}\"}"} +1425229358886{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.59257125274035,\\\"y\\\":17.552567733735156},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":11.996361450645905}}}\"}"} +1425229358936{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.326846038434866,\\\"y\\\":18.095040655037028},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-1.2903833036186334}}}\"}"} +1425229358956{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.21714511150918,\\\"y\\\":18.08214253139245},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-0.9212945460412403}}}\"}"} +1425229359107{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229359160{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.4478361036400881,\\\"av\\\":0.5309567026284364}}\"}"} +1425229359795{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229359800{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229359998{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229360030{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229360054{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.35701570177997,\\\"y\\\":17.05999126056083},\\\"lv\\\":{\\\"x\\\":3.062911104,\\\"y\\\":-17.076771801863035}}}\"}"} +1425229360075{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.399656325005417,\\\"y\\\":16.827322736644017},\\\"lv\\\":{\\\"x\\\":3.0457588018175996,\\\"y\\\":-16.6191802797726}}}\"}"} +1425229360086{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.4420581607408,\\\"y\\\":16.601024618861135},\\\"lv\\\":{\\\"x\\\":3.0287025525274207,\\\"y\\\":-16.16415127020587}}}\"}"} +1425229360105{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.564476713840264,\\\"y\\\":16.443092621463645},\\\"lv\\\":{\\\"x\\\":9.978467151167063,\\\"y\\\":-8.711569548629832}}}\"}"} +1425229360140{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.841527537134752,\\\"y\\\":16.21641646825712},\\\"lv\\\":{\\\"x\\\":9.867019647249109,\\\"y\\\":-7.8923868250550955}}}\"}"} +1425229360156{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.99838946867886,\\\"y\\\":16.097559861067122},\\\"lv\\\":{\\\"x\\\":9.803870721506714,\\\"y\\\":-7.428537949374743}}}\"}"} +1425229360182{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.16392194348907,\\\"y\\\":15.979596359714701},\\\"lv\\\":{\\\"x\\\":9.737204400600469,\\\"y\\\":-6.939029491318994}}}\"}"} +1425229360235{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.64421705827042,\\\"y\\\":15.680813394209443},\\\"lv\\\":{\\\"x\\\":9.54371650605648,\\\"y\\\":-5.518657525187966}}}\"}"} +1425229360293{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229360292{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229360426{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229360664{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229360800{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229360805{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229360942{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229361047{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229361104{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.058640678962085,\\\"y\\\":17.034657657643628},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-17.076765161846975}}}\"}"} +1425229361119{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.058640678962085,\\\"y\\\":16.76979147740665},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.554136264811156}}}\"}"} +1425229361140{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.058640678962085,\\\"y\\\":16.482325787899967},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.970316083704516}}}\"}"} +1425229361156{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.058640678962085,\\\"y\\\":16.31055743187767},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.615305092936216}}}\"}"} +1425229361177{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.058640678962085,\\\"y\\\":16.112985211493783},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.19786310645295}}}\"}"} +1425229361211{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.058640678962085,\\\"y\\\":15.720144312464868},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-14.337864497760723}}}\"}"} +1425229361221{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.058640678962085,\\\"y\\\":15.498820079425267},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.832764564975054}}}\"}"} +1425229361234{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229361236{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.058640678962085,\\\"y\\\":15.31131332665751},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.393339483411193}}}\"}"} +1425229361280{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229361281{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229361291{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.966198678962087,\\\"y\\\":14.774224520592595},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-12.059196003388264}}}\"}"} +1425229361307{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.87988475896209,\\\"y\\\":14.611408679911825},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-11.629702905769289}}}\"}"} +1425229361325{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.799703878962088,\\\"y\\\":14.465379861253254},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-11.23298605065929}}}\"}"} +1425229361452{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.11000595896209,\\\"y\\\":13.423402035533782},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-7.901391181752809}}}\"}"} +1425229361518{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229362131{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229362235{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229362305{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":18.518928394511846,\\\"y\\\":13.16593487680553},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-15.179895156466532}}}\"}"} +1425229362320{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":18.438746238431634,\\\"y\\\":12.973951181766592},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-14.767976541456669}}}\"}"} +1425229362353{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":18.258309103928806,\\\"y\\\":12.607353656790872},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-13.986353162249932}}}\"}"} +1425229362374{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":18.16586581942396,\\\"y\\\":12.404580355181093},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-13.518220107318655}}}\"}"} +1425229362387{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":18.07955331502948,\\\"y\\\":12.221409012868358},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-13.08366730805247}}}\"}"} +1425229362392{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229362406{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.993239454810848,\\\"y\\\":12.131515544547948},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-6.420962022886465}}}\"}"} +1425229362844{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":1.830459750320865,\\\"y\\\":13.44204012511916},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":0.6689695999999999}}}\"}"} +1425229362910{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229363477{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229363477{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229363521{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229363521{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229363681{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.176324871342626,\\\"y\\\":12.625982091577796},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":3.842697312920555}}}\"}"} +1425229363699{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229363726{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.253132992631848,\\\"y\\\":12.732197160316064},\\\"lv\\\":{\\\"x\\\":3.200338387050898,\\\"y\\\":4.425627864094434}}}\"}"} +1425229363731{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.30402453164419,\\\"y\\\":12.80918836047345},\\\"lv\\\":{\\\"x\\\":3.180721188271379,\\\"y\\\":4.811950009836679}}}\"}"} +1425229363749{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.348315790633695,\\\"y\\\":12.88126300293119},\\\"lv\\\":{\\\"x\\\":3.1636613563933227,\\\"y\\\":5.148188746981374}}}\"}"} +1425229363753{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229363753{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229363910{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229364138{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229364265{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-1.8188012115341916,\\\"y\\\":-0.14800886228447255,\\\"av\\\":1.1072922261408673}}\"}"} +1425229364353{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229364448{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229364453{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229364586{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.861067204052073,\\\"y\\\":18.062543282827892},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":0.3593700588396672}}}\"}"} +1425229364605{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.011912004052073,\\\"y\\\":18.07863408730935},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":0.8468844463924857}}}\"}"} +1425229364676{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.439806285626014,\\\"y\\\":18.083173883831346},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-0.20966788969963418}}}\"}"} +1425229364929{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229364995{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229365002{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229365105{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.585725508273555,\\\"y\\\":18.093308108973265},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":1.3181846252773937e-17}}}\"}"} +1425229365139{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.358496763665787,\\\"y\\\":18.093308108973265},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-3.390842294448415e-17}}}\"}"} +1425229365163{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.241046379237154,\\\"y\\\":18.093308108973265},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-2.6363692505547873e-17}}}\"}"} +1425229365184{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.070519799124927,\\\"y\\\":18.093308108973265},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-4.185020385794047e-17}}}\"}"} +1425229365206{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229365206{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229365277{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229365654{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229365666{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229365702{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229365796{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229365864{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":-0.3452768729641693,\\\"av\\\":0}}\"}"} +1425229365877{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.115645118442497,\\\"y\\\":16.948003836248965},\\\"lv\\\":{\\\"x\\\":-0.01813787272466982,\\\"y\\\":-16.468617367916107}}}\"}"} +1425229365895{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.11541054040661,\\\"y\\\":16.739385736582943},\\\"lv\\\":{\\\"x\\\":-0.01804446429897302,\\\"y\\\":-16.047546128155716}}}\"}"} +1425229365900{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229365924{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.10623105615949,\\\"y\\\":16.345234113029115},\\\"lv\\\":{\\\"x\\\":-0.017686097369387765,\\\"y\\\":-15.227633195670482}}}\"}"} +1425229365948{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.10586273789042,\\\"y\\\":16.039484709255692},\\\"lv\\\":{\\\"x\\\":-0.017538965193871246,\\\"y\\\":-14.559495417782102}}}\"}"} +1425229365964{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.105653270821259,\\\"y\\\":15.869327514972277},\\\"lv\\\":{\\\"x\\\":-0.017455589096609696,\\\"y\\\":-14.179766190284601}}}\"}"} +1425229365994{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229366137{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-1.5814866625924606,\\\"y\\\":-0.17706829197737672,\\\"av\\\":0.32949215116590636}}\"}"} +1425229366206{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229366206{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229366322{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229366621{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229366621{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229366656{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229366876{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229366876{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229367274{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229367308{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":-0.3790393420790466,\\\"av\\\":0.7575410059601068}}\"}"} +1425229367447{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229367447{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229367482{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229367505{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.536471324576212,\\\"y\\\":18.092049929831447},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":1.5504091066542713e-17}}}\"}"} +1425229367573{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229367655{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229367726{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.435827891330725,\\\"y\\\":17.00233863768334},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":1.6912614625760805}}}\"}"} +1425229367745{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.435827891330725,\\\"y\\\":17.02858185862196},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":2.018709302970685}}}\"}"} +1425229367768{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229367768{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229367889{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229368017{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229368118{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229368118{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229368307{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229368348{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229368407{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.00970994531876,\\\"y\\\":16.321102301253926},\\\"lv\\\":{\\\"x\\\":5.471592049133989e-17,\\\"y\\\":-17.174865165887958}}}\"}"} +1425229368422{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.00970994531876,\\\"y\\\":16.0870681607605},\\\"lv\\\":{\\\"x\\\":5.440951133658838e-17,\\\"y\\\":-16.716724320958985}}}\"}"} +1425229368441{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.00970994531876,\\\"y\\\":15.859412073853838},\\\"lv\\\":{\\\"x\\\":5.4104818073103487e-17,\\\"y\\\":-16.261149064761614}}}\"}"} +1425229368458{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.00970994531876,\\\"y\\\":15.622773241298242},\\\"lv\\\":{\\\"x\\\":5.378018916466486e-17,\\\"y\\\":-15.775922170373043}}}\"}"} +1425229368468{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229368489{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.00970994531876,\\\"y\\\":15.185524599904452},\\\"lv\\\":{\\\"x\\\":5.315814598471068e-17,\\\"y\\\":-14.846001713781638}}}\"}"} +1425229368516{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.00970994531876,\\\"y\\\":14.807760944532086},\\\"lv\\\":{\\\"x\\\":5.2584038008075803e-17,\\\"y\\\":-13.991246495272796}}}\"}"} +1425229368526{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.00970994531876,\\\"y\\\":14.752300836928566},\\\"lv\\\":{\\\"x\\\":5.249990354726288e-17,\\\"y\\\":-13.865026900880359}}}\"}"} +1425229368574{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.00970994531876,\\\"y\\\":14.213259193458581},\\\"lv\\\":{\\\"x\\\":5.162107196185083e-17,\\\"y\\\":-12.555335199208232}}}\"}"} +1425229368580{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229368585{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229368614{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.120506425318759,\\\"y\\\":13.997253678514651},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-12.000306385773932}}}\"}"} +1425229368615{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.200687305318759,\\\"y\\\":13.846432067411268},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-11.601662392567908}}}\"}"} +1425229368664{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229368784{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229368808{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229368809{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229368826{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229368932{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229369258{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229369324{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229369324{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229369324{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229369388{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":-0.5862654152551318,\\\"av\\\":0.9075535071541772}}\"}"} +1425229369391{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229369394{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229369681{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-1.7946464094676409,\\\"y\\\":-2,\\\"av\\\":0.334696523004318}}\"}"} +1425229369787{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229369792{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229369864{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229369864{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229369978{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.79706751346756,\\\"y\\\":14.284825079287481},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-0.10684224751336213}}}\"}"} +1425229370050{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229370326{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229370394{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229370486{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229370486{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229370536{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229370540{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229370579{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":20.34093001221968,\\\"y\\\":14.282262310046518},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-3.382710778154774e-17}}}\"}"} +1425229370608{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":20.118421380777033,\\\"y\\\":14.282262310046518},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":1.6479873021779667e-17}}}\"}"} +1425229370625{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":20.008643020597898,\\\"y\\\":14.282262310046518},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-2.0816681711721685e-17}}}\"}"} +1425229370640{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.89309528402092,\\\"y\\\":14.277675683507546},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-0.30577510259813123}}}\"}"} +1425229370660{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.781722484020918,\\\"y\\\":14.278486267239217},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":0.05789883797641829}}}\"}"} +1425229370673{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.670349684020916,\\\"y\\\":14.28435977410199},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":0.4195362044837503}}}\"}"} +1425229370691{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.539851440281726,\\\"y\\\":14.28435977410199},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":0}}}\"}"} +1425229370707{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.4377675908983,\\\"y\\\":14.28435977410199},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":0}}}\"}"} +1425229370730{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.327989230719165,\\\"y\\\":14.28435977410199},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":1.4934884925987824e-17}}}\"}"} +1425229370828{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229370833{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229370838{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229371390{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229371478{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229371552{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229371553{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229371691{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229371715{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.9064295517159855,\\\"y\\\":18.08259419814918},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-0.7095174253643165}}}\"}"} +1425229371820{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229371820{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229371980{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.613150651189226,\\\"y\\\":16.805614160231805},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":10.607245599991954}}}\"}"} +1425229372044{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.24338761118923,\\\"y\\\":17.490382236624487},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":11.89167963625149}}}\"}"} +1425229372056{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229372057{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.157073691189233,\\\"y\\\":17.661000906248525},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":12.187047830288483}}}\"}"} +1425229372328{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229372414{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229372459{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229372500{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229372610{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229372610{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229372796{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.14396334634242897,\\\"av\\\":-0.8330911412422592}}\"}"} +1425229372802{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":-0.8070869377815577,\\\"av\\\":0.7009774751074549}}\"}"} +1425229372985{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229373354{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229373354{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229373492{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.5076011133024,\\\"y\\\":18.088748981870072},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":0.6821246740237398}}}\"}"} +1425229373544{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.85753946883582,\\\"y\\\":18.093988989510294},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":6.938893903907228e-18}}}\"}"} +1425229373561{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.957038651176177,\\\"y\\\":18.08832438353883},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-0.6147354570264809}}}\"}"} +1425229373637{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229373637{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229373704{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229373738{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229373741{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229373856{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229373856{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229373946{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.839273554544707,\\\"y\\\":18.091998446109294},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":2.9147458725709954e-17}}}\"}"} +1425229373960{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.721823170116075,\\\"y\\\":18.091998446109294},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-4.163336342344337e-17}}}\"}"} +1425229373979{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.61204480993694,\\\"y\\\":18.091998446109294},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":1.6994869053710282e-17}}}\"}"} +1425229374028{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.26736568090054,\\\"y\\\":18.091998446109294},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-3.390842294448415e-17}}}\"}"} +1425229374042{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.149915296471907,\\\"y\\\":18.091998446109294},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-2.6363692505547873e-17}}}\"}"} +1425229374062{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.032464912043274,\\\"y\\\":18.091998446109294},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-2.9147458725709954e-17}}}\"}"} +1425229374221{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229374295{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229374362{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":-0.3962018296045498,\\\"av\\\":0.616027540961325}}\"}"} +1425229374396{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229374446{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.1316316638567,\\\"y\\\":18.09220244683249},\\\"lv\\\":{\\\"x\\\":0.9705718710635525,\\\"y\\\":-0.28008651405122054}}}\"}"} +1425229374585{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.5265224410359648,\\\"av\\\":0.40276122204058223}}\"}"} +1425229374725{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229374725{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229374798{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229374798{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229374937{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229375331{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229375431{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229375528{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.536519174293886,\\\"y\\\":16.63530786367703},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.228900781435108}}}\"}"} +1425229375546{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":-0.19927161538567617,\\\"av\\\":-0.5497248001917634}}\"}"} +1425229375552{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.536519174293886,\\\"y\\\":16.32364327217336},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.583229575183628}}}\"}"} +1425229375561{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.536519174293886,\\\"y\\\":16.24653165659319},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.42232311603326}}}\"}"} +1425229375594{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229375611{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229375611{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229375611{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.363896294293887,\\\"y\\\":15.636344094447272},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-14.084869988800744}}}\"}"} +1425229375630{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.27145429429389,\\\"y\\\":15.432153582914253},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-13.612700768867938}}}\"}"} +1425229375659{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.17901229429389,\\\"y\\\":15.235003114450432},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-13.14336456425473}}}\"}"} +1425229375676{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":24.00026629429389,\\\"y\\\":14.87349775562771},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-12.243908302002074}}}\"}"} +1425229375693{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.907824294293892,\\\"y\\\":14.69675598284486},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-11.782784852190062}}}\"}"} +1425229375758{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.5503124542939,\\\"y\\\":14.077254242970035},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-10.025538877953611}}}\"}"} +1425229375781{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.4517473342939,\\\"y\\\":13.92448563770388},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-9.548037829134708}}}\"}"} +1425229375915{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229376026{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229376026{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229376491{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229376492{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229376503{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229376697{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":18.110937839696437,\\\"y\\\":14.281248876168736},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-3.390842294448415e-17}}}\"}"} +1425229376709{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":18.0011594795173,\\\"y\\\":14.281248876168736},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":1.0299920638612292e-18}}}\"}"} +1425229376731{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.876059537751676,\\\"y\\\":14.281248876168736},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":0}}}\"}"} +1425229376746{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.77397568836825,\\\"y\\\":14.281248876168736},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":7.101524229780054e-18}}}\"}"} +1425229377105{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229377207{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229377208{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229377321{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":20.67111820076464,\\\"y\\\":18.091776218993786},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-0.11038081659136201}}}\"}"} +1425229377542{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229377641{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229377875{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229377875{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229378403{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229378631{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229378898{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229379103{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229379136{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229379151{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229379188{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.326785812571627,\\\"y\\\":15.38024124081776},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-2.0373808059860963}}}\"}"} +1425229379197{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229379201{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229379300{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.892252339649806,\\\"y\\\":18.090504835230398},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.4368644551854157e-17}}}\"}"} +1425229379367{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229379367{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.3248456983916395,\\\"y\\\":18.090543479682466},\\\"lv\\\":{\\\"x\\\":7.209022160062508,\\\"y\\\":2.8586580546686683e-18}}}\"}"} +1425229379383{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.413937261803065,\\\"y\\\":18.090543479682466},\\\"lv\\\":{\\\"x\\\":6.36368310081887,\\\"y\\\":5.419399922126123e-19}}}\"}"} +1425229379418{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.036917496875726465,\\\"av\\\":0.8763062894109009}}\"}"} +1425229379541{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229379540{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229379580{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229379645{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.05566189590884826,\\\"av\\\":0.7612707863771875}}\"}"} +1425229379776{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229379776{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229379892{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229380026{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229380102{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229380103{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229380294{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":-0.0012750526449311714,\\\"av\\\":0.3330655560178408}}\"}"} +1425229380309{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229380343{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229380676{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229380736{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229380736{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229380780{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229380780{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229380946{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.447087839584558,\\\"y\\\":18.077136573547534},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":0.2596474684442474}}}\"}"} +1425229380992{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229381322{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229381572{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229381585{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229381636{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229381705{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229381737{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.20830076541397585,\\\"av\\\":0.6468477171701386}}\"}"} +1425229381859{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229381859{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229381960{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229382030{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229382061{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229382128{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229382129{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229382288{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":-0.19981978041484943,\\\"av\\\":-0.7179927069670247}}\"}"} +1425229382374{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229382499{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229382602{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229382602{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229382725{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229382729{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229382839{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.018692461719322966,\\\"av\\\":-0.028624052261118037}}\"}"} +1425229382850{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229383037{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229383042{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229383133{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.5367778598018424,\\\"y\\\":18.092598498243884},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":3.390842294448415e-17}}}\"}"} +1425229383170{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.4501505701832653,\\\"y\\\":18.092598498243884},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":2.097931203759451e-17}}}\"}"} +1425229383199{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229383345{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229383468{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229383468{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229383563{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229383565{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229383712{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.023658980366582,\\\"y\\\":18.09082702735507},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":2.9147458725709954e-17}}}\"}"} +1425229383733{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.1411093647952146,\\\"y\\\":18.09082702735507},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":2.6363692505547873e-17}}}\"}"} +1425229383794{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229383797{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.5781923909406173,\\\"y\\\":18.09082702735507},\\\"lv\\\":{\\\"x\\\":7.1498862789079825,\\\"y\\\":1.7618285302889447e-18}}}\"}"} +1425229383813{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229383817{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.6664558556657743,\\\"y\\\":18.09082702735507},\\\"lv\\\":{\\\"x\\\":6.304533194654081,\\\"y\\\":0}}}\"}"} +1425229383986{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229384047{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.96015825659496,\\\"y\\\":17.042751674662124},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-17.04406094845755}}}\"}"} +1425229384064{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.96015825659496,\\\"y\\\":16.810538538162078},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.586652607146185}}}\"}"} +1425229384084{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.96015825659496,\\\"y\\\":16.584693257626434},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.131805752546164}}}\"}"} +1425229384103{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.96015825659496,\\\"y\\\":16.34998293385597},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.647354918030887}}}\"}"} +1425229384130{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.96015825659496,\\\"y\\\":15.87389433797456},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-14.623686753560746}}}\"}"} +1425229384153{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.96015825659496,\\\"y\\\":15.60747061642412},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-14.022301134233683}}}\"}"} +1425229384166{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.96015825659496,\\\"y\\\":15.457036140922446},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.675861409243055}}}\"}"} +1425229384181{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.96015825659496,\\\"y\\\":15.297439562428702},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.299714874478688}}}\"}"} +1425229384197{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.96015825659496,\\\"y\\\":15.11735371423216},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-12.863274871181606}}}\"}"} +1425229384215{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.96015825659496,\\\"y\\\":14.931377185902841},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-12.398435221954516}}}\"}"} +1425229384236{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.96015825659496,\\\"y\\\":14.775406813438437},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-11.997720958800354}}}\"}"} +1425229384282{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229384286{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229384317{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.71370081659496,\\\"y\\\":14.026390864187302},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-9.876266542670752}}}\"}"} +1425229384376{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229384453{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229384793{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229384793{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229384826{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229384826{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229384863{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229384952{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.957380204794284,\\\"y\\\":14.285714285714286},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-4.63882311324554e-16}}}\"}"} +1425229385025{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229385026{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229385035{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.4776052447942836,\\\"y\\\":14.374584168702789},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":1.9402292795008373}}}\"}"} +1425229385053{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229385188{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229385188{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229385241{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229385367{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229385367{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229385454{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229385532{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":6.213838844794287,\\\"y\\\":17.65036184593635},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":12.166045574410402}}}\"}"} +1425229385637{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229385779{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229385779{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229385914{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229385915{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229385915{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229385964{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.589382735685087,\\\"y\\\":17.043724278462374},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-17.044076121801215}}}\"}"} +1425229385979{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.681824735685087,\\\"y\\\":16.79541200348632},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-16.554151665070407}}}\"}"} +1425229385997{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.780389855685087,\\\"y\\\":16.538854123575696},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-16.034867494413955}}}\"}"} +1425229386016{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.878954975685087,\\\"y\\\":16.2905516156965},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-15.518906742449706}}}\"}"} +1425229386058{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229386063{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.150152895685087,\\\"y\\\":15.757724053940239},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-6.864543203285406}}}\"}"} +1425229386078{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.242594895685087,\\\"y\\\":15.661188614779253},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-6.435695944065693}}}\"}"} +1425229386101{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.341160015685087,\\\"y\\\":15.565489896538875},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-5.981169890023673}}}\"}"} +1425229386114{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229386161{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229386173{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229386310{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229387057{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229387057{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229387267{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":9.973926630799264,\\\"y\\\":18.09080932247446},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-2.9147458725709954e-17}}}\"}"} +1425229387399{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229387399{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229387600{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229387600{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229387931{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229388089{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.66791482279966,\\\"y\\\":4.8993912962820945},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":0.6180095999999999}}}\"}"} +1425229388090{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.37169973467359313,\\\"av\\\":0.7702139236695125}}\"}"} +1425229388103{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.66791482279966,\\\"y\\\":4.911754794833135},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":0.9510383500799999}}}\"}"} +1425229388119{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.66791482279966,\\\"y\\\":4.930062232727608},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":1.307674135319552}}}\"}"} +1425229388820{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229388825{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229388910{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229388910{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229388922{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229388959{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229389179{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229389184{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229389281{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229389428{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229389483{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.28259842219162495,\\\"av\\\":-0.49522169700457425}}\"}"} +1425229389535{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229389535{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229389658{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229389658{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229389834{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229389893{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229389914{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.24338607570747,\\\"y\\\":11.92438321300623},\\\"lv\\\":{\\\"x\\\":-3.0629111040000003,\\\"y\\\":16.15660186946433}}}\"}"} +1425229389982{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.062353567599395,\\\"y\\\":12.937165942517906},\\\"lv\\\":{\\\"x\\\":-2.990059215511622,\\\"y\\\":17.30902955569543}}}\"}"} +1425229390040{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229390040{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229390044{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.20214802217263,\\\"y\\\":13.969919386763276},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":18.372967409363582}}}\"}"} +1425229390048{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.22072570217263,\\\"y\\\":14.025205865508694},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":18.428826248472344}}}\"}"} +1425229390065{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":22.30655210728149,\\\"y\\\":14.283706257798373},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.8705913290981515}}}\"}"} +1425229390465{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229390523{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229390523{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229390670{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229390671{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229390844{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229390913{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229391079{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229391079{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229391665{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229391669{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229391768{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229391768{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229391851{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.738072798596022,\\\"y\\\":18.090495317165228},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-1.0186154766655118e-17}}}\"}"} +1425229391872{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.628376006773845,\\\"y\\\":18.090495317165228},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":8.922291615721425e-18}}}\"}"} +1425229391885{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.518668804024115,\\\"y\\\":18.090495317165228},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":1.6545793199423318e-17}}}\"}"} +1425229391902{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.40896116161835,\\\"y\\\":18.090495317165228},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-3.1180216390457966e-18}}}\"}"} +1425229391957{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229392034{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229392313{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229392333{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229392337{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229392398{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229392435{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.466212060749283,\\\"y\\\":18.094749871192317},\\\"lv\\\":{\\\"x\\\":5.220432633742199,\\\"y\\\":-3.747863052461165e-17}}}\"}"} +1425229392453{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.534509093617027,\\\"y\\\":18.094749871192317},\\\"lv\\\":{\\\"x\\\":4.268564554233912,\\\"y\\\":2.2472365349991124e-17}}}\"}"} +1425229392468{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.554804877751236,\\\"y\\\":18.089732780773367},\\\"lv\\\":{\\\"x\\\":1.4496940336249728,\\\"y\\\":-0.3583628646875759}}}\"}"} +1425229392483{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.576425398173372,\\\"y\\\":18.09020459965485},\\\"lv\\\":{\\\"x\\\":1.4413680281424024,\\\"y\\\":0.0314545920988348}}}\"}"} +1425229392727{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229392759{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.1497946588791599,\\\"av\\\":0.7254427162047351}}\"}"} +1425229392943{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229392944{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229392983{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.205467101687496,\\\"y\\\":17.336835950445742},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":2.3886173525184984}}}\"}"} +1425229393000{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.291781021687497,\\\"y\\\":17.375156788180565},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":2.7372026953443944}}}\"}"} +1425229393323{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229393725{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229393901{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229393903{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229394537{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229394941{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229395370{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229395856{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229396138{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229396351{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229396580{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229396580{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229396947{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229396980{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229397191{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229397192{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229397427{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229397502{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.15524174696260024,\\\"y\\\":0.04139779919002673,\\\"av\\\":0}}\"}"} +1425229397990{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.365844828797295,\\\"y\\\":1.1737204350408574},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":0.4133376}}}\"}"} +1425229398016{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.365844828797295,\\\"y\\\":1.1856981986568573},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":0.7985175744}}}\"}"} +1425229398048{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229398048{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229398082{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229398118{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229398135{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.722929418730357,\\\"y\\\":17.05955966129579},\\\"lv\\\":{\\\"x\\\":3.064141184,\\\"y\\\":-17.076820139850657}}}\"}"} +1425229398155{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.774665604137486,\\\"y\\\":16.778690704126497},\\\"lv\\\":{\\\"x\\\":3.0433050239488,\\\"y\\\":-16.52170336289967}}}\"}"} +1425229398171{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.817033279358892,\\\"y\\\":16.553749620989553},\\\"lv\\\":{\\\"x\\\":3.0262625158146865,\\\"y\\\":-16.06722022406743}}}\"}"} +1425229398260{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229398261{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229398563{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229398563{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229398805{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229398876{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229399084{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229399108{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229399113{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229399363{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229399363{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229399403{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229399524{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229399888{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229399889{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229399923{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.9405271977306775,\\\"y\\\":13.64112073419133},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":21.481679992963326}}}\"}"} +1425229399945{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229399992{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.161565576857078,\\\"y\\\":14.945898522276591},\\\"lv\\\":{\\\"x\\\":3.04330896576,\\\"y\\\":22.49065218889428}}}\"}"} +1425229400025{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.249052287691178,\\\"y\\\":15.6087725329543},\\\"lv\\\":{\\\"x\\\":3.0081078630795646,\\\"y\\\":22.977939756887956}}}\"}"} +1425229400039{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.287954341819669,\\\"y\\\":15.910303592266278},\\\"lv\\\":{\\\"x\\\":2.992465702191551,\\\"y\\\":23.19469687015214}}}\"}"} +1425229400055{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.326654105266691,\\\"y\\\":16.214637841269834},\\\"lv\\\":{\\\"x\\\":2.976904880540155,\\\"y\\\":23.41032684642735}}}\"}"} +1425229400076{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.368097384251619,\\\"y\\\":16.545614509895056},\\\"lv\\\":{\\\"x\\\":2.9602342132091297,\\\"y\\\":23.641190616087357}}}\"}"} +1425229400091{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.409308580874231,\\\"y\\\":16.879805171575978},\\\"lv\\\":{\\\"x\\\":2.9436569016151584,\\\"y\\\":23.87076154863727}}}\"}"} +1425229400105{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.453198505277313,\\\"y\\\":17.24153312626616},\\\"lv\\\":{\\\"x\\\":2.9259949602054673,\\\"y\\\":24.115196979345445}}}\"}"} +1425229400121{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.496825090133976,\\\"y\\\":17.6069056132282},\\\"lv\\\":{\\\"x\\\":2.9084389904442345,\\\"y\\\":24.358165797469372}}}\"}"} +1425229400140{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.540189915481499,\\\"y\\\":17.97590076526847},\\\"lv\\\":{\\\"x\\\":2.8909883565015693,\\\"y\\\":24.599676802684556}}}\"}"} +1425229400164{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.456656090457194,\\\"y\\\":17.9819249273247},\\\"lv\\\":{\\\"x\\\":2.554514753497126,\\\"y\\\":14.480703520666049}}}\"}"} +1425229400172{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.436133555276071,\\\"y\\\":18.08704643334591},\\\"lv\\\":{\\\"x\\\":2.1143949621730145,\\\"y\\\":13.497381466501995}}}\"}"} +1425229400191{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.413209467527034,\\\"y\\\":18.062030246020747},\\\"lv\\\":{\\\"x\\\":-3.9898639947466563e-17,\\\"y\\\":-1.3191834523671673}}}\"}"} +1425229400205{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.404285779963401,\\\"y\\\":18.047549262054307},\\\"lv\\\":{\\\"x\\\":-0.49585237497797546,\\\"y\\\":-0.9582816198722975}}}\"}"} +1425229400289{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229400388{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229400597{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229400597{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229400955{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.265621470688473,\\\"y\\\":17.719546493872492},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":20.38169983198137}}}\"}"} +1425229401018{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229401028{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229401068{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229401068{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229401166{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.300683950941917,\\\"y\\\":15.925935781521178},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-14.846267533372583}}}\"}"} +1425229401314{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229401385{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.9698859051590296,\\\"av\\\":-0.6770669463989595}}\"}"} +1425229401545{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229401970{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229401975{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229402253{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229402475{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229402507{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229402515{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229402637{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229402638{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229402670{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229402674{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229402823{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229403045{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.42324576611321335,\\\"av\\\":0.8328207882607349}}\"}"} +1425229403507{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229404025{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229404028{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229404083{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.6516820140544475,\\\"y\\\":17.027657677286435},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-17.01135701161712}}}\"}"} +1425229404086{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229404100{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.6516820140544475,\\\"y\\\":16.747894025759486},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.456685383938126}}}\"}"} +1425229404114{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.6516820140544475,\\\"y\\\":16.492885625799794},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.938024997480921}}}\"}"} +1425229404126{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.6516820140544475,\\\"y\\\":16.24612268119984},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.422684037497044}}}\"}"} +1425229404143{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.6516820140544475,\\\"y\\\":16.00755242104533},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-14.910641259657064}}}\"}"} +1425229404165{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.6516820140544475,\\\"y\\\":15.708428877310734},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-14.243978273075946}}}\"}"} +1425229404184{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.6516820140544475,\\\"y\\\":15.462246635179557},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.6767912295098}}}\"}"} +1425229404187{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229404187{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229404205{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.6516820140544475,\\\"y\\\":15.176478315712375},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-12.989469066690113}}}\"}"} +1425229404242{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":-0.04207963582242293,\\\"av\\\":0.8823329926599657}}\"}"} +1425229404249{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229404383{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229404384{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229404545{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229404662{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229404933{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229405053{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229405053{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229405207{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229405207{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229405209{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229405482{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229405708{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229405725{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229405798{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229405799{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229405834{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":-0.14509758249773594,\\\"av\\\":0.8495712937788751}}\"}"} +1425229406002{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229406256{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229406335{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.045313391485882,\\\"y\\\":16.982291396953624},\\\"lv\\\":{\\\"x\\\":6.903300056079088e-72,\\\"y\\\":-16.12522331975664}}}\"}"} +1425229406345{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.045313391485882,\\\"y\\\":16.778104346223913},\\\"lv\\\":{\\\"x\\\":6.868087860103144e-72,\\\"y\\\":-15.706696209977927}}}\"}"} +1425229406389{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.045313391485882,\\\"y\\\":16.609208808062792},\\\"lv\\\":{\\\"x\\\":6.83844490237391e-72,\\\"y\\\":-15.354139832829182}}}\"}"} +1425229406393{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.045313391485882,\\\"y\\\":16.414994712036588},\\\"lv\\\":{\\\"x\\\":6.80356351809147e-72,\\\"y\\\":-14.939545848169606}}}\"}"} +1425229406400{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.048336385617617,\\\"y\\\":16.175343237927834},\\\"lv\\\":{\\\"x\\\":3.9215168752665e-72,\\\"y\\\":-14.417169470010197}}}\"}"} +1425229406411{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.048336385617617,\\\"y\\\":16.020571271734823},\\\"lv\\\":{\\\"x\\\":3.9045914425498803e-72,\\\"y\\\":-14.070178744819055}}}\"}"} +1425229406426{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.048336385617617,\\\"y\\\":15.85625047651771},\\\"lv\\\":{\\\"x\\\":3.8862070261245827e-72,\\\"y\\\":-13.693399601426208}}}\"}"} +1425229406508{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.048336385617617,\\\"y\\\":15.037150394215859},\\\"lv\\\":{\\\"x\\\":3.788236765788045e-72,\\\"y\\\":-11.661727698354477}}}\"}"} +1425229406540{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229406574{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229406594{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229406594{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229406643{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.718959460552131,\\\"y\\\":13.959693760434432},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-8.387967474494994}}}\"}"} +1425229406646{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229406646{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229406941{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229406977{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229407255{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229407306{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229407307{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229407307{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229407364{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229407364{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229407396{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229407459{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":-1.5188386017315818,\\\"av\\\":-0.644879980096103}}\"}"} +1425229407509{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.4808114328303326,\\\"y\\\":14.342523714720832},\\\"lv\\\":{\\\"x\\\":7.651152463494761,\\\"y\\\":1.6589289775335798}}}\"}"} +1425229407568{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.828463755876354,\\\"y\\\":14.454213915957153},\\\"lv\\\":{\\\"x\\\":7.511232545338813,\\\"y\\\":2.809976905862391}}}\"}"} +1425229407578{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.9478743263891323,\\\"y\\\":14.505499206415791},\\\"lv\\\":{\\\"x\\\":7.463160657048645,\\\"y\\\":3.205330653664872}}}\"}"} +1425229407889{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.8957755924102515,\\\"av\\\":-0.37391140733493755}}\"}"} +1425229407960{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229407990{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229408061{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229408066{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229408124{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229408124{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229408326{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229408340{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229408515{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.334670938051535,\\\"y\\\":18.108911717583098},\\\"lv\\\":{\\\"x\\\":5.757694125284665e-21,\\\"y\\\":2.9147458725709954e-17}}}\"}"} +1425229408556{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.316224000382088,\\\"y\\\":18.09971866780811},\\\"lv\\\":{\\\"x\\\":-6.938893903907228e-18,\\\"y\\\":6.938893903907228e-18}}}\"}"} +1425229408560{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229408560{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229408786{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229408890{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229408920{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229408939{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.760503266698294,\\\"y\\\":17.069077329990563},\\\"lv\\\":{\\\"x\\\":3.1835724166620407,\\\"y\\\":-16.23870790731325}}}\"}"} +1425229408954{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229408955{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229409072{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229409072{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229409081{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.25271465270974,\\\"y\\\":18.09458893097803},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-4.7704895589362195e-18}}}\"}"} +1425229409090{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229409096{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.158980650184632,\\\"y\\\":18.09458893097803},\\\"lv\\\":{\\\"x\\\":-7.210307886546776,\\\"y\\\":-1.3769367590565906e-17}}}\"}"} +1425229409115{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.0698760200065704,\\\"y\\\":18.09458893097803},\\\"lv\\\":{\\\"x\\\":-6.364616441290097,\\\"y\\\":1.7618285302889447e-18}}}\"}"} +1425229409128{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.987916924641719,\\\"y\\\":18.09458893097803},\\\"lv\\\":{\\\"x\\\":-5.463939690990105,\\\"y\\\":-3.390842294448415e-17}}}\"}"} +1425229409226{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229409227{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229409263{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.015625,\\\"av\\\":0}}\"}"} +1425229409302{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229409307{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229409356{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229409435{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229409436{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229409467{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229409558{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229409559{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229409702{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229409761{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.666326536158577,\\\"y\\\":17.074986095620115},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-17.10950062768945}}}\"}"} +1425229409779{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.666326536158577,\\\"y\\\":16.825698341261266},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.619183623923313}}}\"}"} +1425229409791{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.666326536158577,\\\"y\\\":16.58372121342857},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.13180852217977}}}\"}"} +1425229409811{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.666326536158577,\\\"y\\\":16.333877575866364},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.61522734763782}}}\"}"} +1425229409825{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.666326536158577,\\\"y\\\":16.106869436113083},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.133875983551992}}}\"}"} +1425229409844{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.666326536158577,\\\"y\\\":15.872890530876969},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-14.623681577257258}}}\"}"} +1425229409880{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229409880{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229409880{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.561643256158577,\\\"y\\\":15.416132502555788},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-13.581764098739704}}}\"}"} +1425229409892{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.469201256158577,\\\"y\\\":15.21944329984358},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-13.112613514147265}}}\"}"} +1425229409909{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.370636136158577,\\\"y\\\":15.017597616841071},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-12.615355187656723}}}\"}"} +1425229409942{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.179629016158577,\\\"y\\\":14.648743288801604},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-11.660892636968985}}}\"}"} +1425229409967{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.074945736158577,\\\"y\\\":14.459319017961965},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-11.142604167037595}}}\"}"} +1425229409977{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.976380616158577,\\\"y\\\":14.288791755556069},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-10.657953900368554}}}\"}"} +1425229410060{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.520308616158577,\\\"y\\\":13.598321458704145},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-8.456118031635883}}}\"}"} +1425229410191{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229410219{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229410233{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229410388{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229410388{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229410455{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229410500{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229410788{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229410845{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229410885{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229410920{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229410920{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229411068{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229411068{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229411133{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229411215{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.743174567290946,\\\"y\\\":14.985978583853269},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":10.608035037178361}}}\"}"} +1425229411225{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":-0.5008192581504313,\\\"av\\\":0.27898862294673066}}\"}"} +1425229411324{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.365629767290947,\\\"y\\\":16.22048019274012},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":12.75803581917828}}}\"}"} +1425229411328{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229411697{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.200742306591601,\\\"y\\\":15.324154076672219},\\\"lv\\\":{\\\"x\\\":0.7385784013264872,\\\"y\\\":6.525221929420693}}}\"}"} +1425229411706{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229411716{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.21248712447613,\\\"y\\\":15.434532862879248},\\\"lv\\\":{\\\"x\\\":0.7340511177830641,\\\"y\\\":6.898674137939281}}}\"}"} +1425229411742{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.2062289127430845,\\\"y\\\":15.490307869739565},\\\"lv\\\":{\\\"x\\\":0.6988336466642437,\\\"y\\\":6.955456201469691}}}\"}"} +1425229411747{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.21596010897277,\\\"y\\\":15.592230644824994},\\\"lv\\\":{\\\"x\\\":0.6950854449775374,\\\"y\\\":7.280198220387818}}}\"}"} +1425229411814{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229411814{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229411859{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229411860{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.816071806753238,\\\"y\\\":13.23043663957258},\\\"lv\\\":{\\\"x\\\":-2.767378010180605e-26,\\\"y\\\":-16.16603864099028}}}\"}"} +1425229411903{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229412216{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.816071806753238,\\\"y\\\":9.845162715385252},\\\"lv\\\":{\\\"x\\\":-9.76713378579136e-31,\\\"y\\\":-5.785463914497857}}}\"}"} +1425229412230{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.816071806753238,\\\"y\\\":9.809885321692247},\\\"lv\\\":{\\\"x\\\":-9.707300610201094e-31,\\\"y\\\":-5.135720681395476}}}\"}"} +1425229412249{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.816071806753238,\\\"y\\\":9.739108589166927},\\\"lv\\\":{\\\"x\\\":-9.651516456703441e-31,\\\"y\\\":-4.7184488350214435}}}\"}"} +1425229412255{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229412259{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229412264{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.910474497476832,\\\"y\\\":9.670691373155632},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-4.276076000705913}}}\"}"} +1425229412401{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229412434{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229412684{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229412715{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.176094026437744,\\\"y\\\":13.282691771145286},\\\"lv\\\":{\\\"x\\\":3.0497822708156415,\\\"y\\\":10.470855945554343}}}\"}"} +1425229412728{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229412728{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229412733{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.221577871470637,\\\"y\\\":13.44466841238927},\\\"lv\\\":{\\\"x\\\":3.032256335526194,\\\"y\\\":10.798442749598918}}}\"}"} +1425229412744{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.266800338197154,\\\"y\\\":13.611530617947981},\\\"lv\\\":{\\\"x\\\":3.014831115101118,\\\"y\\\":11.124147037247388}}}\"}"} +1425229412864{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.849752069321834,\\\"y\\\":15.33060337307093},\\\"lv\\\":{\\\"x\\\":2.8364645211841797,\\\"y\\\":13.966545290546636}}}\"}"} +1425229412881{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.892054535946226,\\\"y\\\":15.544714028592676},\\\"lv\\\":{\\\"x\\\":2.820164441626109,\\\"y\\\":14.274043701449637}}}\"}"} +1425229412897{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.9285340814768315,\\\"y\\\":15.733724536502946},\\\"lv\\\":{\\\"x\\\":2.806118886969685,\\\"y\\\":14.539269839251574}}}\"}"} +1425229412915{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.967609036816022,\\\"y\\\":15.941251240407329},\\\"lv\\\":{\\\"x\\\":2.791068238513585,\\\"y\\\":14.823335993170236}}}\"}"} +1425229412932{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.990626762056675,\\\"y\\\":16.110094570543946},\\\"lv\\\":{\\\"x\\\":2.7803533816540567,\\\"y\\\":15.04574496984905}}}\"}"} +1425229412943{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.029342935031306,\\\"y\\\":16.3246738954903},\\\"lv\\\":{\\\"x\\\":2.765440926759391,\\\"y\\\":15.327094639025109}}}\"}"} +1425229412961{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.070586169921876,\\\"y\\\":16.559075512867903},\\\"lv\\\":{\\\"x\\\":2.7495489927046317,\\\"y\\\":15.626774491840305}}}\"}"} +1425229412980{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.1115923956748635,\\\"y\\\":16.797946495850837},\\\"lv\\\":{\\\"x\\\":2.733748383532482,\\\"y\\\":15.924732198862257}}}\"}"} +1425229412993{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.06914556452424175,\\\"av\\\":-0.11309932474020001}}\"}"} +1425229412998{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.146571135171784,\\\"y\\\":17.005802109976994},\\\"lv\\\":{\\\"x\\\":2.7203606593115124,\\\"y\\\":16.176312281725036}}}\"}"} +1425229413014{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.187142051937134,\\\"y\\\":17.25286879004756},\\\"lv\\\":{\\\"x\\\":2.704727784356704,\\\"y\\\":16.47111200470439}}}\"}"} +1425229413033{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.2221283948967825,\\\"y\\\":17.470298936195743},\\\"lv\\\":{\\\"x\\\":2.6912571507421528,\\\"y\\\":16.725395857552382}}}\"}"} +1425229413049{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.256940491778785,\\\"y\\\":17.691018308763045},\\\"lv\\\":{\\\"x\\\":2.677853606307898,\\\"y\\\":16.978413274407952}}}\"}"} +1425229413078{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.31880046614617,\\\"y\\\":18.085222433843235},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-1.7529483985510836}}}\"}"} +1425229413095{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.31880046614617,\\\"y\\\":18.066923755173814},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-1.407590666878618}}}\"}"} +1425229413111{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.31880046614617,\\\"y\\\":18.051751478330655},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-1.0114851228773463}}}\"}"} +1425229413493{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229413510{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.013130787199176111,\\\"av\\\":-0.271912777413865}}\"}"} +1425229413631{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229413637{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229413828{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.9010112447592977,\\\"y\\\":18.090642625521497},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":2.6363692505547873e-17}}}\"}"} +1425229413992{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229414090{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229414236{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229414240{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229414353{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229414353{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229414397{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.476462090991241,\\\"y\\\":18.09524441224066},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-3.331894307240468e-17}}}\"}"} +1425229414402{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229414481{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.271544046517302,\\\"y\\\":0.01234291120533191,\\\"av\\\":0.06340191745909919}}\"}"} +1425229414539{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229414655{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229415038{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229415057{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229415057{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229415175{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":null,\\\"y\\\":null,\\\"av\\\":0}}\"}"} +1425229415311{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":18.063171959567672,\\\"y\\\":18.082479681200688},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-0.14482103999999996}}}\"}"} +1425229415579{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229416020{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.5437585904981151,\\\"av\\\":-0.5111990181603673}}\"}"} +1425229416039{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.10618080876639185,\\\"av\\\":0.7673662001743707}}\"}"} +1425229416136{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229416292{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229416386{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229416386{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229416636{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229416960{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229417404{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229417441{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229417965{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229417965{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229418098{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229418375{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229418535{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229418536{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229418870{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229419082{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229419263{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229419263{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229419579{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229419680{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":21.302852598639422,\\\"y\\\":12.468861524078},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-15.486786723093383}}}\"}"} +1425229420240{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229420278{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229420622{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229420657{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229420657{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229420676{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":25.125613350817048,\\\"y\\\":8.374766028101766},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-16.84808789425607}}}\"}"} +1425229421791{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229422027{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229422103{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.36604406467178,\\\"y\\\":4.5304254544827955},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-16.489801798294796}}}\"}"} +1425229422118{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.27360206467178,\\\"y\\\":4.29037740967022},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-16.003202987505027}}}\"}"} +1425229422630{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.785408576870172,\\\"y\\\":11.02536312751972},\\\"lv\\\":{\\\"x\\\":-6.481332636617655,\\\"y\\\":15.017064706659525}}}\"}"} +1425229422640{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229422756{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.911213263774597,\\\"y\\\":13.316980631534816},\\\"lv\\\":{\\\"x\\\":-6.130044377375337,\\\"y\\\":17.710721088528302}}}\"}"} +1425229422782{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229422782{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229422818{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.448106800875937,\\\"y\\\":14.748683216134854},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":19.135896007408263}}}\"}"} +1425229422874{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.176918800875937,\\\"y\\\":15.614094269910037},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":19.931672597951568}}}\"}"} +1425229422890{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.102875920875936,\\\"y\\\":15.855852305543815},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":20.1465029694814}}}\"}"} +1425229422941{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.893112560875936,\\\"y\\\":16.554809352845957},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":20.74953899424817}}}\"}"} +1425229422953{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.831360560875936,\\\"y\\\":16.76406436122867},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":20.925500838271176}}}\"}"} +1425229422984{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.664925280875936,\\\"y\\\":17.338804522634778},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":21.39627302524065}}}\"}"} +1425229422999{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.584744400875936,\\\"y\\\":17.6198808351064},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":21.6212548055094}}}\"}"} +1425229423033{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229423037{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229423037{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.538523400875937,\\\"y\\\":17.948068644256544},\\\"lv\\\":{\\\"x\\\":-3.0814,\\\"y\\\":21.879187276676344}}}\"}"} +1425229423042{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.496448296160926,\\\"y\\\":17.732202773014087},\\\"lv\\\":{\\\"x\\\":-3.0641441599999997,\\\"y\\\":4.417996496223209}}}\"}"} +1425229423373{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229423683{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229423682{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229423705{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229424046{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229424221{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229424221{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229424264{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.964311798500823,\\\"y\\\":11.424501264355873},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":12.933683834456502}}}\"}"} +1425229424332{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.880653367980661,\\\"y\\\":13.671717472543756},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":16.004929776320964}}}\"}"} +1425229424473{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229424538{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229424548{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.866749944548925,\\\"y\\\":17.261282158021896},\\\"lv\\\":{\\\"x\\\":3.0056887976488613,\\\"y\\\":19.73423498142325}}}\"}"} +1425229424583{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229424587{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229424698{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229424702{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.762480960732123,\\\"y\\\":18.091913311544186},\\\"lv\\\":{\\\"x\\\":-7.013340986812856,\\\"y\\\":3.8813263178511233e-17}}}\"}"} +1425229424721{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.67079272663991,\\\"y\\\":18.09191331156787},\\\"lv\\\":{\\\"x\\\":-6.112548905187118,\\\"y\\\":3.111885889904502e-17}}}\"}"} +1425229424728{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229424735{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.592543606303972,\\\"y\\\":18.09191331156787},\\\"lv\\\":{\\\"x\\\":-5.216608022394682,\\\"y\\\":9.211261746334297e-18}}}\"}"} +1425229424823{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.510623901460973,\\\"av\\\":-0.6379991662895855}}\"}"} +1425229424832{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229424832{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229425030{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229425034{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229425260{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.46082762530298216,\\\"y\\\":-0.004151600227954794,\\\"av\\\":-0.09462322208025568}}\"}"} +1425229425311{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229425389{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":17.513338246783693,\\\"y\\\":17.01092760536711},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":1.6848885649542353}}}\"}"} +1425229425534{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229425545{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229425937{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229426009{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229426010{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229426158{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":20.19515987189314,\\\"y\\\":18.091951400191405},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-1.7618285302889447e-18}}}\"}"} +1425229426169{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":20.116294670511106,\\\"y\\\":18.091951400191405},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-1.5504091066542713e-17}}}\"}"} +1425229426238{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":19.669554159003784,\\\"y\\\":18.091951400191405},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":0}}}\"}"} +1425229426302{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229426321{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229426599{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229426599{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229427283{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229427529{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229427609{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.750586644046583,\\\"y\\\":17.062863271410965},\\\"lv\\\":{\\\"x\\\":-4.257255344171934e-18,\\\"y\\\":-16.28821985168169}}}\"}"} +1425229427623{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.750586644046583,\\\"y\\\":16.825793511145907},\\\"lv\\\":{\\\"x\\\":-4.232199215785035e-18,\\\"y\\\":-15.804650684337235}}}\"}"} +1425229427664{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.750586644046583,\\\"y\\\":16.493567965737537},\\\"lv\\\":{\\\"x\\\":-4.19566651410427e-18,\\\"y\\\":-15.101161154925993}}}\"}"} +1425229427668{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.739812505845501,\\\"y\\\":16.3933845810933},\\\"lv\\\":{\\\"x\\\":-4.102437817367945e-18,\\\"y\\\":-14.892418647406474}}}\"}"} +1425229427668{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.739812505845501,\\\"y\\\":16.191104013921535},\\\"lv\\\":{\\\"x\\\":-4.0799025326241806e-18,\\\"y\\\":-14.448611940840479}}}\"}"} +1425229427673{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.739812505845501,\\\"y\\\":15.967991743664625},\\\"lv\\\":{\\\"x\\\":-4.054289395295305e-18,\\\"y\\\":-13.944516891056928}}}\"}"} +1425229427687{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.739812505845501,\\\"y\\\":15.765870619422426},\\\"lv\\\":{\\\"x\\\":-4.030427825482437e-18,\\\"y\\\":-13.474741616146614}}}\"}"} +1425229427698{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229427702{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229427724{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.886404852387296,\\\"y\\\":15.443075955282977},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-12.680692683329587}}}\"}"} +1425229427739{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.003259952230724,\\\"y\\\":15.213254974253067},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-12.095841106837376}}}\"}"} +1425229427764{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.09569836544699,\\\"y\\\":15.03870078071515},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-11.636946235861155}}}\"}"} +1425229427844{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.354601013906096,\\\"y\\\":14.554882434903398},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-10.271775400590862}}}\"}"} +1425229427849{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.447043001397939,\\\"y\\\":14.40752819354389},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-9.82361609063388}}}\"}"} +1425229428069{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229428116{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229428524{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229428529{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229428529{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229428601{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.546516120347032,\\\"y\\\":12.991538792687495},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-16.006747523549567}}}\"}"} +1425229428626{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.429146725490313,\\\"y\\\":12.69727021875725},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-15.395176641650302}}}\"}"} +1425229428635{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.373552265173284,\\\"y\\\":12.5613014779512},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-15.107637867338862}}}\"}"} +1425229428652{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.281106154416154,\\\"y\\\":12.341836222505705},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-14.63101702969971}}}\"}"} +1425229428670{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":16.18254019360255,\\\"y\\\":12.115823792702349},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-14.125776862709785}}}\"}"} +1425229428738{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":15.815639802768429,\\\"y\\\":11.34426562847404},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-12.27339137837787}}}\"}"} +1425229428762{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229428845{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229429334{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229429339{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229429339{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229429388{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.778656381640864,\\\"y\\\":10.366752516519977},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-16.27082042078232}}}\"}"} +1425229429404{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.680126406091567,\\\"y\\\":10.114667944274299},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-15.755285765354913}}}\"}"} +1425229429435{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.593814397873148,\\\"y\\\":9.900373595406915},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-15.30673920481315}}}\"}"} +1425229429440{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.495247805272147,\\\"y\\\":9.663617484442268},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-14.797256935290395}}}\"}"} +1425229429454{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.402806488753393,\\\"y\\\":9.448780541715935},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-14.322462848422228}}}\"}"} +1425229429484{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.216990774848702,\\\"y\\\":9.03906093270655},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-13.376932071383825}}}\"}"} +1425229429505{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.118425640962641,\\\"y\\\":8.832987894324013},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-12.879564898908491}}}\"}"} +1425229429518{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229429521{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.019860520697677,\\\"y\\\":8.634822772120593},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-12.385320137713725}}}\"}"} +1425229429569{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.741833861188253,\\\"y\\\":8.118299239550756},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-11.00846146760207}}}\"}"} +1425229429585{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.643267998219462,\\\"y\\\":7.949883827251967},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-10.52596326867426}}}\"}"} +1425229429610{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229429653{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.260648959208542,\\\"y\\\":7.370779416614239},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-8.680595918406153}}}\"}"} +1425229429681{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229429817{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229430202{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":26.757009396292265,\\\"y\\\":2.12739780116304},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":0.49024559999999995}}}\"}"} +1425229430215{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":26.757009396292265,\\\"y\\\":2.13697853901648},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":0.7983948211199999}}}\"}"} +1425229430231{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":26.757009396292265,\\\"y\\\":2.1531609347581844},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":1.155885410121728}}}\"}"} +1425229430248{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":26.757009396292265,\\\"y\\\":2.1781501402541354},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":1.5618253434969491}}}\"}"} +1425229430440{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229430440{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229430454{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229430781{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229430851{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229430852{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229430904{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.258903658933206,\\\"y\\\":9.544619456111906},\\\"lv\\\":{\\\"x\\\":-4.428211600631011,\\\"y\\\":9.295920989651083}}}\"}"} +1425229431369{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229431671{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229431671{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229431730{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229431998{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229431998{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229432167{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.57857808448515,\\\"y\\\":15.590032736023675},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":22.248215587763816}}}\"}"} +1425229432319{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229432321{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.5752414872918825,\\\"y\\\":17.152036349912333},\\\"lv\\\":{\\\"x\\\":3.215521242379886,\\\"y\\\":11.261693302570043}}}\"}"} +1425229432395{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.779331145682412,\\\"y\\\":17.894294794991257},\\\"lv\\\":{\\\"x\\\":3.1561033693774716,\\\"y\\\":12.565870201002543}}}\"}"} +1425229432444{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229432444{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229432877{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229433202{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229433202{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229433305{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":6.137424072853059,\\\"y\\\":18.078503875219372},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":0.3860247705499487}}}\"}"} +1425229433324{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":6.264606789650116,\\\"y\\\":18.091255711307625},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":0.7969897555158905}}}\"}"} +1425229433341{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":6.36298297170327,\\\"y\\\":18.08978789719705},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-0.11290878087872082}}}\"}"} +1425229433388{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":6.693421086221765,\\\"y\\\":18.090867909667093},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":9.213448682525942e-18}}}\"}"} +1425229433404{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":6.810835204048549,\\\"y\\\":18.090867909681805},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-2.426366243823836e-17}}}\"}"} +1425229433502{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229433646{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.008190723210678838,\\\"av\\\":0.6615878885496537}}\"}"} +1425229433893{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229433928{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.0948343862512107,\\\"av\\\":0.8546066417877921}}\"}"} +1425229433958{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.812354226044984,\\\"y\\\":17.042298543804577},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-17.044047642046653}}}\"}"} +1425229433961{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229433971{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.812354226044984,\\\"y\\\":16.79398669346166},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.554123356194374}}}\"}"} +1425229433987{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.812354226044984,\\\"y\\\":16.552979614220803},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.067138616057207}}}\"}"} +1425229434004{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.812354226044984,\\\"y\\\":16.304164072958173},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.550971328914441}}}\"}"} +1425229434020{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.812354226044984,\\\"y\\\":16.07811399044406},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.070005500940955}}}\"}"} +1425229434039{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.812354226044984,\\\"y\\\":15.8451504725923},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-14.560219865734933}}}\"}"} +1425229434082{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.812354226044984,\\\"y\\\":15.403516460968925},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.550422674824047}}}\"}"} +1425229434087{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.812354226044984,\\\"y\\\":15.207294558887298},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.081460138775101}}}\"}"} +1425229434106{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.812354226044984,\\\"y\\\":15.005944139785107},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-12.584401193886942}}}\"}"} +1425229434172{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.812354226044984,\\\"y\\\":14.309765367843946},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-10.718206714112332}}}\"}"} +1425229434192{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.812354226044984,\\\"y\\\":14.145985006385674},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-10.236272591142013}}}\"}"} +1425229434331{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229434516{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229434516{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229434560{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229434560{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229434621{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.696499013837308,\\\"y\\\":18.092731685202114},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-3.924811864397526e-17}}}\"}"} +1425229434637{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.80627737401644,\\\"y\\\":18.092731685202114},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.566672139241554e-17}}}\"}"} +1425229434728{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229434924{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229434928{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229434972{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":6.3600560357354965,\\\"y\\\":15.49116420526926},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":10.564392828619301}}}\"}"} +1425229435090{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229435105{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.062550755735497,\\\"y\\\":16.958476426007664},\\\"lv\\\":{\\\"x\\\":3.0801600000000002,\\\"y\\\":13.14585493775746}}}\"}"} +1425229435171{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.238366810120428,\\\"y\\\":17.768160219148623},\\\"lv\\\":{\\\"x\\\":3.009217047182438,\\\"y\\\":14.327109598806757}}}\"}"} +1425229435203{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.339876173991106,\\\"y\\\":17.976067878277057},\\\"lv\\\":{\\\"x\\\":3.063888672081362,\\\"y\\\":14.487005750914799}}}\"}"} +1425229435273{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229435273{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229435345{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229435355{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229435579{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229435595{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229435703{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229435703{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229435758{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229435759{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229435774{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.264770333560151,\\\"y\\\":18.095127634595592},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.4686848139234368e-17}}}\"}"} +1425229435794{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.382138951026092,\\\"y\\\":18.0951276345956},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-3.597549432338322e-17}}}\"}"} +1425229435809{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.491882244818713,\\\"y\\\":18.095127634595602},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":6.503546537397371e-18}}}\"}"} +1425229435848{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.60798062979977,\\\"y\\\":18.09259735191006},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.0649973283679905}}}\"}"} +1425229435849{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229435849{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.719171059805514,\\\"y\\\":18.08283729882999},\\\"lv\\\":{\\\"x\\\":7.942173571838805,\\\"y\\\":-0.69714664857645}}}\"}"} +1425229435940{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.16426142769720278,\\\"av\\\":-0.7047196573115596}}\"}"} +1425229436420{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229436482{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.398964165304816,\\\"y\\\":16.963843403784463},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.880703699894298}}}\"}"} +1425229436493{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.398964165304816,\\\"y\\\":16.733904461556016},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.424210159174887}}}\"}"} +1425229436504{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.398964165304816,\\\"y\\\":16.494834388082715},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.938004898219837}}}\"}"} +1425229436528{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.398964165304816,\\\"y\\\":16.248071763012778},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.422664066871231}}}\"}"} +1425229436538{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.398964165304816,\\\"y\\\":16.009501820343285},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-14.910621416843256}}}\"}"} +1425229436576{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.398964165304816,\\\"y\\\":15.570155356335825},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.927784704736807}}}\"}"} +1425229436589{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.398964165304816,\\\"y\\\":15.3553504078138},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.425309282626491}}}\"}"} +1425229436609{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.398964165304816,\\\"y\\\":15.160993946409839},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-12.957097426930732}}}\"}"} +1425229436656{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.398964165304816,\\\"y\\\":14.61967348590358},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-11.569259430452826}}}\"}"} +1425229436677{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.398964165304816,\\\"y\\\":14.452990727795529},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-11.112183873870109}}}\"}"} +1425229436689{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":8.398964165304816,\\\"y\\\":14.293122966236124},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-10.657850770626887}}}\"}"} +1425229436703{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229436746{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229436792{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229436792{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229437455{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.25625696530482,\\\"y\\\":17.003962363426666},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":11.858079372927374}}}\"}"} +1425229437459{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229437476{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.30553952530482,\\\"y\\\":17.199090767665716},\\\"lv\\\":{\\\"x\\\":3.0801600000000002,\\\"y\\\":12.19552526494064}}}\"}"} +1425229437535{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.48140055319048,\\\"y\\\":17.953784528925492},\\\"lv\\\":{\\\"x\\\":3.009235170153923,\\\"y\\\":13.399136409764163}}}\"}"} +1425229437758{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229437758{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229437874{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229437940{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.745101104717428,\\\"y\\\":17.020536622696962},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-17.011354042225495}}}\"}"} +1425229437955{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.843666224717428,\\\"y\\\":16.75671032227528},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-16.489143776355252}}}\"}"} +1425229437975{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":13.942231344717428,\\\"y\\\":16.501185911776293},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-15.97027565618658}}}\"}"} +1425229437994{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.040796464717427,\\\"y\\\":16.2539102591045},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-15.454728291986985}}}\"}"} +1425229438007{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.145479744717427,\\\"y\\\":16.000429349531277},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-14.910641739601473}}}\"}"} +1425229438027{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.237921744717427,\\\"y\\\":15.78392658119382},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-14.433517889163864}}}\"}"} +1425229438046{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.330363744717427,\\\"y\\\":15.574537729466385},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-13.95925678182888}}}\"}"} +1425229438092{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.607689744717428,\\\"y\\\":14.988629117916016},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-12.553478668528932}}}\"}"} +1425229438106{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.706254864717428,\\\"y\\\":14.79567233703521},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-12.059798805050347}}}\"}"} +1425229438126{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":14.804819984717428,\\\"y\\\":14.610563881152041},\\\"lv\\\":{\\\"x\\\":6.2,\\\"y\\\":-11.569278492698025}}}\"}"} +1425229438126{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229438443{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229438598{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229438598{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229438742{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229439114{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229439114{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229439802{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229440685{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229440691{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229440804{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229440862{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.531322028334214,\\\"y\\\":17.046215205175656},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-17.076765161846975}}}\"}"} +1425229440878{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.438880028334214,\\\"y\\\":16.79741553661252},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-16.586644570875894}}}\"}"} +1425229440890{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.340314908334214,\\\"y\\\":16.54034109748256},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-16.067152445622288}}}\"}"} +1425229440907{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":12.241749788334214,\\\"y\\\":16.291525336363037},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-15.550985069970306}}}\"}"} +1425229440963{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.964428748334214,\\\"y\\\":15.634877030563354},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-14.116734529682555}}}\"}"} +1425229440974{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":11.871986748334214,\\\"y\\\":15.430211418725786},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":-13.644374122504459}}}\"}"} +1425229440987{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229441226{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":4.365844828797295,\\\"y\\\":1.1745699382408574},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":0.43899440000000006}}}\"}"} +1425229441710{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.684943228334211,\\\"y\\\":16.997047268639626},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":10.226019508131024}}}\"}"} +1425229441761{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.4014941083342105,\\\"y\\\":17.49800772012469},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":11.220398357060636}}}\"}"} +1425229441779{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":7.30905210833421,\\\"y\\\":17.671118759628463},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":11.540735966918273}}}\"}"} +1425229441944{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229441944{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229441997{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.848391979453947,\\\"y\\\":18.091475210627948},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":2.9147458725709954e-17}}}\"}"} +1425229442050{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229442054{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229442642{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229442647{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229442711{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229442939{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":10.370824970172766,\\\"y\\\":7.60349484964062},\\\"lv\\\":{\\\"x\\\":8,\\\"y\\\":-1.574652331655754}}}\"}"} +1425229445063{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229445154{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229445154{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229445205{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.720077568398757,\\\"y\\\":15.409130359523372},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":7.1114866328978685}}}\"}"} +1425229445214{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.664478448398757,\\\"y\\\":15.475001745452547},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":7.319042881019436}}}\"}"} +1425229445231{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":23.57203644839876,\\\"y\\\":15.589943574808546},\\\"lv\\\":{\\\"x\\\":-6.2,\\\"y\\\":7.662788623733318}}}\"}"} +1425229445518{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229445522{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229445569{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229445605{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.44218472456219415,\\\"av\\\":1.012010859090522}}\"}"} +1425229445612{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.754401848898295,\\\"y\\\":17.023763767236336},\\\"lv\\\":{\\\"x\\\":-2.6928635972482856e-64,\\\"y\\\":-7.349100968096175}}}\"}"} +1425229445612{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229445612{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229445626{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.754401848898295,\\\"y\\\":16.926496858968296},\\\"lv\\\":{\\\"x\\\":-2.6781471815502294e-64,\\\"y\\\":-6.947636304859932}}}\"}"} +1425229445648{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":5.754401848898295,\\\"y\\\":16.798929124173775},\\\"lv\\\":{\\\"x\\\":-2.6554107625932015e-64,\\\"y\\\":-6.378386739726023}}}\"}"} +1425229445893{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229445928{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229446242{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229446242{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229446605{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229446609{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229446862{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.8706087758422285,\\\"y\\\":18.09449042503736},\\\"lv\\\":{\\\"x\\\":-8,\\\"y\\\":-1.6534083130403943e-17}}}\"}"} +1425229447078{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229447086{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229447204{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229447209{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229447334{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229447479{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0.15848125202120691,\\\"av\\\":-0.6838343565883805}}\"}"} +1425229447762{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229447779{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.2667530857798632,\\\"y\\\":16.992428541730845},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.946013559766353}}}\"}"} +1425229447799{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.2667530857798632,\\\"y\\\":16.74557837955473},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.456677478407755}}}\"}"} +1425229447810{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.2667530857798632,\\\"y\\\":16.52154256077133},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-16.00255848452867}}}\"}"} +1425229447832{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.2667530857798632,\\\"y\\\":16.273753688607687},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.486804510227687}}}\"}"} +1425229447846{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.2667530857798632,\\\"y\\\":16.048660333360193},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-15.00622368316632}}}\"}"} +1425229447894{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.2667530857798632,\\\"y\\\":15.403121536577821},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.550411943039983}}}\"}"} +1425229447914{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.2667530857798632,\\\"y\\\":15.206899794507095},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-13.081449471381742}}}\"}"} +1425229447928{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":3.2667530857798632,\\\"y\\\":15.005549544990856},\\\"lv\\\":{\\\"x\\\":0,\\\"y\\\":-12.5843905947649}}}\"}"} +1425229447955{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229448088{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.09340571571923134,\\\"av\\\":-0.8102110809365348}}\"}"} +1425229448127{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229448220{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229448225{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229448542{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229448709{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229448713{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229448728{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229448728{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229449054{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229449360{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229449364{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229449460{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229449557{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229449594{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229449660{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229449660{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229449709{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229450121{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229450157{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229450157{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveLeft\\\":null}\"}"} +1425229450239{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229450244{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-0.1,\\\"y\\\":0}}\"}"} +1425229450264{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.7453244352648194,\\\"y\\\":18.091327337279566},\\\"lv\\\":{\\\"x\\\":-5.655940751423525,\\\"y\\\":-0.03995309051386141}}}\"}"} +1425229450279{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"mePositionStateUpdate\\\":{\\\"p\\\":{\\\"x\\\":2.6766215913646727,\\\"y\\\":18.091327337279566},\\\"lv\\\":{\\\"x\\\":-4.907345992867612,\\\"y\\\":0}}}\"}"} +1425229450413{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"lookAt\\\":{\\\"x\\\":0.1,\\\"y\\\":0}}\"}"} +1425229450418{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"moveRight\\\":null}\"}"} +1425229450515{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"stop\\\":null}\"}"} +1425229450580{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":2,\\\"y\\\":0,\\\"av\\\":0}}\"}"} +1425229450828{"recipient":"17994867731691545136","data":"{\"gameCommand\":\"{\\\"handActionRequest\\\":{\\\"x\\\":-2,\\\"y\\\":0.2871797803888367,\\\"av\\\":0.6817243853442612}}\"}"} +1425229451225{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jump\\\":null}\"}"} +1425229451432{"recipient":"45008369236485470","data":"{\"gameCommand\":\"{\\\"jumpStop\\\":null}\"}"} +1425229466164{"recipient":"channel","data":{"releaseUser":"17994867731691545136"}} +1425229522029{"recipient":"channel","data":{"releaseUser":"45008369236485470"}}